<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	>

<channel>
	<title>Semiologic &#187; wordpress plugins</title>
	<atom:link href="http://www.semiologic.com/tag/wordpress-plugins/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.semiologic.com</link>
	<description>Meaningful Technology</description>
	<lastBuildDate>Wed, 10 Aug 2011 09:56:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	

		<copyright>Copyright Mesoconcepts, All Rights Reserved.</copyright>
		<itunes:author>Denis de Bernardy</itunes:author>
		<itunes:summary>Meaningful Technology</itunes:summary>
		<itunes:explicit>No</itunes:explicit>
		<itunes:block>No</itunes:block>
		
		<item>
		<title>New Plugin: Mediacaster</title>
		<link>http://www.semiologic.com/2007/05/31/new-plugin-mediacaster/</link>
		<comments>http://www.semiologic.com/2007/05/31/new-plugin-mediacaster/#comments</comments>
		<pubDate>Thu, 31 May 2007 02:33:29 +0000</pubDate>
		<dc:creator>Denis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Highlights]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[podcasting]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://www.semiologic.com/2007/05/31/new-plugin-mediacaster/</guid>
		<description><![CDATA[<p><strong>Notice</strong> &#8212; I&#039;ve just released <a  href="http://www.semiologic.com/software/mediacaster/" title="Mediacaster Plugin For WordPress">Mediacaster</a>.</p>
<p>Mediacaster tackles podcasting and videocasting in a radically different manner form existing WordPress plugins. The underlying idea was to make it simple simple simple. And simple it became.</p>
<p><a  href="http://www.semiologic.com/2007/05/31/new-plugin-mediacaster/" class="more-link">Read more&#8230;</a></p>
]]></description>
			<content:encoded><![CDATA[<p><strong>Notice</strong> &#8212; I&#039;ve just released <a  href="http://www.semiologic.com/software/mediacaster/" title="Mediacaster Plugin For WordPress">Mediacaster</a>.</p>
<p>Mediacaster tackles podcasting and videocasting in a radically different manner form existing WordPress plugins. The underlying idea was to make it simple simple simple. And simple it became.</p>
<p>With <a  href="http://www.semiologic.com/software/mediacaster/" title="Mediacaster Plugin For WordPress">Mediacaster</a>, you upload media files from the WordPress admin interface. And you&#039;re done!</p>
<p>Special thanks go to <a  href="http://paulcolligan.com">Paul Colligan</a>, <a  href="http://selfseminar.com">Colin Collard</a> and <a  href="http://shermanlive.com">Sherman Hu</a> for their invaluable input.</p>
<p>Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.semiologic.com/2007/05/31/new-plugin-mediacaster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php 5.2 compatible scripts and WP plugins</title>
		<link>http://www.semiologic.com/2007/01/13/php-52-compatible-scripts-and-wp-plugins/</link>
		<comments>http://www.semiologic.com/2007/01/13/php-52-compatible-scripts-and-wp-plugins/#comments</comments>
		<pubDate>Sat, 13 Jan 2007 01:02:52 +0000</pubDate>
		<dc:creator>Denis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Highlights]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[frame buster]]></category>
		<category><![CDATA[geekery]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://www.semiologic.com/2007/01/13/php-52-compatible-scripts-and-wp-plugins/</guid>
		<description><![CDATA[<p><strong>Highlight</strong> &#8212; Once again, the php devs have done a great job at destroying their language&#8230;</p>
<p>Shortly after php 5.1 broke a throng of object oriented php scripts around the world, php 5.2 is about to bring carnage to scripts that rely on output buffers.</p>
<p><a  href="http://www.semiologic.com/2007/01/13/php-52-compatible-scripts-and-wp-plugins/" class="more-link">Read more&#8230;</a></p>
]]></description>
			<content:encoded><![CDATA[<p><strong>Highlight</strong> &#8212; Once again, the php devs have done a great job at destroying their language&#8230;</p>
<p>Shortly after php 5.1 broke a throng of object oriented php scripts around the world, php 5.2 is about to bring carnage to scripts that rely on output buffers.</p>
<p>The symptom is simple and obvious to anyone who takes a few minutes to look into it: A blatant workflow error destroys variables before the output buffer is flushed. Adding to the insult, the php bug gardeners report that this is not a bug, but a feature.</p>
<p>Anyway, if you&#039;ve the same problem I had, the fix involves moving the output buffer flush to the shutdown hook where it belongs:</p>
<pre><code># Fix php 5.2 output buffer problems
# Public domain, use and redistribute at will

if ( !function_exists('ob_end_flush_all') ) :
function ob_end_flush_all()
{
  while ( @ob_end_flush() );
}

register_shutdown_function('ob_end_flush_all');
endif;
</code></pre>
<p>&#039;nuff grunting. The following WordPress plugins got an update as a result:</p>
<ul>
<li><a  href="http://www.semiologic.com/software/admin-menu/" title="Admin Menu Plugin For WordPress">Admin Menu</a></li>
<li>Ad Spaces (obsolete)</li>
<li><a  href="http://www.semiologic.com/software/external-links/" title="External Links Plugin For WordPress">External Links</a></li>
<li><a  href="http://www.semiologic.com/software/google-analytics/" title="Google Analytics Plugin For WordPress">Google Analytics</a></li>
</ul>
<p>The following plugins were also updated recently:</p>
<ul>
<li><a  href="http://www.semiologic.com/software/bookmark-me/" title="Bookmark Me Plugin For WordPress">Bookmark Me</a></li>
<li><a  href="http://www.semiologic.com/software/frame-buster/" title="Frame Buster Plugin For WordPress">Frame Buster</a></li>
<li><a  href="http://www.semiologic.com/software/newsletter-manager/" title="Newsletter Manager Plugin For WordPress">Newsletter Manager</a></li>
<li>Wysiwyg Editor (obsolete)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.semiologic.com/2007/01/13/php-52-compatible-scripts-and-wp-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Your front page: Static, opt-in, or opt-out?</title>
		<link>http://www.semiologic.com/2005/04/19/your-front-page-static-opt-in-or-opt-out/</link>
		<comments>http://www.semiologic.com/2005/04/19/your-front-page-static-opt-in-or-opt-out/#comments</comments>
		<pubDate>Tue, 19 Apr 2005 14:02:38 +0000</pubDate>
		<dc:creator>Denis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://www.semiologic.com/2005/04/19//</guid>
		<description><![CDATA[<p><strong>In resources</strong> &#8212; My collection of <a  href="http://www.semiologic.com/software/" title="Software">CMS driven WordPress plugins</a> is expanding yet again, with a few new additions that change the default behavior of WordPress&#039; front page:</p>
<ul>
<li>The static front page plugin (obsolete) will let you pin a post to the front page</li>
</ul>
<p><a  href="http://www.semiologic.com/2005/04/19/your-front-page-static-opt-in-or-opt-out/" class="more-link">Read more&#8230;</a></p>
]]></description>
			<content:encoded><![CDATA[<p><strong>In resources</strong> &#8212; My collection of <a  href="http://www.semiologic.com/software/" title="Software">CMS driven WordPress plugins</a> is expanding yet again, with a few new additions that change the default behavior of WordPress&#039; front page:</p>
<ul>
<li>The static front page plugin (obsolete) will let you pin a post to the front page</li>
<li>The <a  href="http://www.semiologic.com/software/opt-in-front/" title="Opt-In Front Page Plugin For WordPress">opt-in front page plugin</a> will let you add posts to your front page on an opt-in basis rather than remove them on an opt-out basis</li>
</ul>
<p>Note that the opt-in front page plugin de-facto enables you to use WordPress as a multi-blog platform:</p>
<ul>
<li>Set the default category&#039;s slug to &#034;blog&#034;</li>
<li>Create one category per user, or topic, whatever (your &#034;blogs&#034;)</li>
<li>At your option, use the front page to opt-in all posts from all blogs, or as a separate blog with the more important stuff only</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.semiologic.com/2005/04/19/your-front-page-static-opt-in-or-opt-out/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

