<?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/"
	>

<channel>
	<title>CoffeeBear.net &#187; Plugins</title>
	<atom:link href="http://coffeebear.net/category/computers/wordpress/plugins/feed/" rel="self" type="application/rss+xml" />
	<link>http://coffeebear.net</link>
	<description></description>
	<lastBuildDate>Mon, 14 May 2012 02:58:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>WordPress 3.1 is Out</title>
		<link>http://coffeebear.net/2011/02/24/wordpress-3-1-is-out/</link>
		<comments>http://coffeebear.net/2011/02/24/wordpress-3-1-is-out/#comments</comments>
		<pubDate>Fri, 25 Feb 2011 02:28:57 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://coffeebear.net/?p=1477</guid>
		<description><![CDATA[The latest, greatest version of WordPress was released yesterday. It comes with a whole lot fixes and new features. One of those new features is an admin bar similar to the one used on WordPress.com; however the admin bar only includes specific links rather than being automatically populated with all the various links that my [...]]]></description>
			<content:encoded><![CDATA[<p>The latest, greatest version of WordPress was released yesterday. It comes with a <a title="Version 3.1 | WordPress Codex" href="https://codex.wordpress.org/Version_3.1">whole lot fixes and new features</a>. One of those new features is an admin bar similar to the one used on WordPress.com; however the admin bar only includes specific links rather than being automatically populated with all the various links that my install of WordPress has (from various plugins). I found the lack of those links for one particular plugin particularly annoying. A quick bit of research and a little bit later, I developed the <a title="Now-Reading Admin Bar Menu | Code | CoffeeBear.net" href="http://coffeebear.net/code/#mlm-nrAdminBar">Now-Reading Admin Bar Menu</a> plugin.</p>
<p>I also noticed after the update that one of my client sites wasn’t working correctly. It turns out there’s a bug in WordPress 3.1 which <a title="#16622 ([17246] Breaks category exclusion) – WordPress Trac" href="https://core.trac.wordpress.org/ticket/16622">breaks category exclusion</a>. On my client’s site, I was using this code:</p>
<pre class="brush: php; title: ; notranslate">function exclude_category($query) {
$cat_id = '-'.get_cat_id('meetings');
if ( $query-&gt;is_home ) {
$query-&gt;set('cat', $cat_id);
}
return $query;
}
add_filter('pre_get_posts', 'exclude_category');</pre>
<p>Fortunately that bug I linked to also includes a workaround. By changing the above bit of code to read as follows, I was able to fix my client’s site. ^_^</p>
<pre class="brush: php; title: ; notranslate">function exclude_category($query) {
$cat_id = '-'.get_cat_id('meetings');
if ( $query-&gt;is_home ) {
$query-&gt;set('category__not_in', array($cat_id));
}
return $query;
}
add_filter('pre_get_posts', 'exclude_category');</pre>
<p><small><a href="http://coffeebear.net/2011/02/24/wordpress-3-1-is-out/">WordPress 3.1 is Out</a> © <a href="http://coffeebear.net" rel="cc:attributionURL">Mark McKibben</a>, <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States</a>.</small></p>]]></content:encoded>
			<wfw:commentRss>http://coffeebear.net/2011/02/24/wordpress-3-1-is-out/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Fixing Now-Reading’s Admin Menu</title>
		<link>http://coffeebear.net/2009/08/08/fixing-now-readings-admin-menu/</link>
		<comments>http://coffeebear.net/2009/08/08/fixing-now-readings-admin-menu/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 14:49:29 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Now-Reading]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://coffeebear.net/?p=939</guid>
		<description><![CDATA[I like using Now-Reading to track what books I’m currently reading, have read and want to read on my website. Unfortunately the plugin’s author has been too busy of late to update the plugin and one of the recent updates to WordPress caused Now-Reading’s admin menu to break (when using the single menu option). PHP [...]]]></description>
			<content:encoded><![CDATA[<p>I like using <a href="http://robm.me.uk/projects/plugins/wordpress/now-reading/" title="Now-Reading plugin for WordPress">Now-Reading</a> to track what books I’m currently reading, have read and want to read on my website. Unfortunately the plugin’s author has been too busy of late to update the plugin and one of the recent updates to WordPress caused Now-Reading’s admin menu to break (when using the single menu option). PHP is not a programming language that I’m really familiar with but I did some poking around in Now-Reading’s code and found if I changed this snip of code:</p>
<pre name="code" class="php">
	if ( $options['menuLayout'] == NR_MENU_SINGLE ) {

		add_menu_page('Now Reading', 'Now Reading', 9, 'admin.php?page=add_book', 'now_reading_add');

		add_submenu_page('admin.php?page=add_book', 'Add a Book', 'Add a Book',$nr_level , 'add_book', 'now_reading_add');

		add_submenu_page('admin.php?page=add_book', 'Manage Books', 'Manage Books', $nr_level, 'manage_books', 'nr_manage');

		add_submenu_page('admin.php?page=add_book', 'Options', 'Options', 9, 'nr_options', 'nr_options');
</pre>
<p>To read like this:</p>
<pre name="code" class="php">
	if ( $options['menuLayout'] == NR_MENU_SINGLE ) {

		add_menu_page('Now Reading', 'Now Reading', 9, 'add_book', 'now_reading_add');

		add_submenu_page('add_book', 'Add a Book', 'Add a Book',$nr_level , 'add_book', 'now_reading_add');
		add_submenu_page('add_book', 'Manage Books', 'Manage Books', $nr_level, 'manage_books', 'nr_manage');
		add_submenu_page('add_book', 'Options', 'Options', 9, 'nr_options', 'nr_options');
</pre>
<p>Then Now-Reading’s single admin menu worked properly again.</p>
<p><small><a href="http://coffeebear.net/2009/08/08/fixing-now-readings-admin-menu/">Fixing Now-Reading’s Admin Menu</a> © <a href="http://coffeebear.net" rel="cc:attributionURL">Mark McKibben</a>, <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States</a>.</small></p>]]></content:encoded>
			<wfw:commentRss>http://coffeebear.net/2009/08/08/fixing-now-readings-admin-menu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Testing… 1…</title>
		<link>http://coffeebear.net/2009/01/11/testing-1/</link>
		<comments>http://coffeebear.net/2009/01/11/testing-1/#comments</comments>
		<pubDate>Sun, 11 Jan 2009 17:55:26 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://coffeebear.net/?p=713</guid>
		<description><![CDATA[I recently added a couple of plugins to this site (and a friend’s that I maintain) to try making administrating them easier.  Both sites also happen to use a plugin to crosspost to LiveJournal and now things are acting flaky. I’ve disabled the most likely culprit and now am writing this post to see if [...]]]></description>
			<content:encoded><![CDATA[<p>I recently added a couple of plugins to this site (and a friend’s that I maintain) to try making administrating them easier.  Both sites also happen to use a plugin to crosspost to LiveJournal and now things are acting flaky.</p>
<p>I’ve disabled the most likely culprit and now am writing this post to see if I’m right about which plugin is causing the problem.  Wish me luck.</p>
<p>Side note: Our snowblower stopped working during the last snow-storm.  The engine runs, but the auger stopped turning.  This weekend we got a bunch more snow, so I opened up the snowblower, figured out what the problem was and fixed it.  I fought the snowblower and I won!  :)  Unfortunately while troubleshooting it, I also fought my vice-grips and the vice-grips won (I’ve got the blood blister and cuts to prove it).</p>
<p><strong>UPDATE:</strong> My first guess was wrong but I’ve figured out which plugin is causing the problem and deactivated it.  For the record, <a href="http://www.phoenixheart.net/2008/11/referrer-detector">Referrer Detector</a> &amp; <a href="http://code.google.com/p/ljxp/">LiveJournal Crossposter</a> do not play nice together.</p>
<p><small><a href="http://coffeebear.net/2009/01/11/testing-1/">Testing… 1…</a> © <a href="http://coffeebear.net" rel="cc:attributionURL">Mark McKibben</a>, <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States</a>.</small></p>]]></content:encoded>
			<wfw:commentRss>http://coffeebear.net/2009/01/11/testing-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now-Reading Tweaks v2</title>
		<link>http://coffeebear.net/2008/09/12/now-reading-tweaks-v2/</link>
		<comments>http://coffeebear.net/2008/09/12/now-reading-tweaks-v2/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 22:48:58 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Now-Reading]]></category>

		<guid isPermaLink="false">http://coffeebear.net/?p=636</guid>
		<description><![CDATA[Some time back, I tried to make Rob Miller’s Now-Reading plugin display who’s reading each book on the individual pages. But the PHP code I posted at that time didn’t work like I thought it did, my interests changed and I moved onto other things. Today I had a visitor stop by asking about my [...]]]></description>
			<content:encoded><![CDATA[<p>Some <a href="http://coffeebear.net/archives/2008/04/25/now-reading-tweaks/" title="Now-Reading Tweaks | CoffeeBear.net">time back</a>, I tried to make Rob Miller’s <a title="Now-Reading plugin for WordPress" href="http://robm.me.uk/projects/plugins/wordpress/now-reading/">Now-Reading plugin</a> display who’s reading each book on the individual pages.  But the PHP code I posted at that time didn’t work like I thought it did, my interests changed and I moved onto other things.  Today I had a <a href="http://coffeebear.net/archives/2008/04/25/now-reading-tweaks/#comment-24422" title="Comment by elle | Now-Reading Tweaks| CoffeeBear.net">visitor</a> stop by asking about my broken tweak.  So I took another look at the code and I believe I’ve got something that works this time.</p>
<pre name="code" class="php">// Now-Reading Plugin: Get the display name of the book's reader
function mlm_book_reader( $echo=true ) {
	global $book;

	$user_info = get_userdata($book->reader);

	if ( $echo )
		echo $user_info->display_name;
	return $user_info->display_name;

}</pre>
<p>This grabs “Display name publicly as” from the user’s profile and displays it on the page.  I put the function in the functions.php file of the theme I’m using (so any automatic upgrades of the plugin won’t erase it).  Then I put &lt; ?php mlm_book_reader() ?&gt; into my custom single.php template and viola!</p>
<p>Note: this has only been tested on WordPress 2.6.2 with Now-Reading 4.4.3.</p>
<p><small><a href="http://coffeebear.net/2008/09/12/now-reading-tweaks-v2/">Now-Reading Tweaks v2</a> © <a href="http://coffeebear.net" rel="cc:attributionURL">Mark McKibben</a>, <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States</a>.</small></p>]]></content:encoded>
			<wfw:commentRss>http://coffeebear.net/2008/09/12/now-reading-tweaks-v2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Now-Reading: Default Filters on Book-Meta</title>
		<link>http://coffeebear.net/2008/06/05/now-reading-default-filters-on-book-meta/</link>
		<comments>http://coffeebear.net/2008/06/05/now-reading-default-filters-on-book-meta/#comments</comments>
		<pubDate>Thu, 05 Jun 2008 16:01:39 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Now-Reading]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://coffeebear.net/?p=623</guid>
		<description><![CDATA[Ever since upgrading to the latest version of Rob Miller’s Now-Reading plugin, I noticed my single book pages were working but not displaying everything correctly. Specifically books I’d marked having been borrowed from my local library were being displayed as: I borrowed this book fromlibrary When they should simply have a line reading “I borrowed [...]]]></description>
			<content:encoded><![CDATA[<p>Ever since upgrading to the latest version of Rob Miller’s <a title="Now-Reading | Roblog" href="http://robm.me.uk/projects/plugins/wordpress/now-reading">Now-Reading</a> plugin, I noticed my single book pages were <em>working</em> but not displaying everything correctly.  Specifically books I’d marked having been borrowed from my local library were being displayed as:</p>
<blockquote>
<ul>
<li>I borrowed this book fromlibrary</li>
</ul>
</blockquote>
<p>When they should simply have a line reading “I borrowed this book from my local library”.  I had spent much<br />
time fiddling with my templates trying to figure out how the upgrade broke them and today I figured it out.  The truth is my template was just fine.  The problem is the newer version of Now-Reading was applying a new filter to book-meta<sup>1</sup>.  That filter is <a title="Function Reference/wpautop | WordPress Codex" href="http://codex.wordpress.org/Function_Reference/wpautop">wpautop</a> and it was wrapping my variable in &lt;p&gt; … &lt;/p&gt; tags.  Those tags screwed up the display and made my variable checks fail.  To correct the problem, I went into now-reading/default-filters.php and commented out <code>add_filter('book_meta_val', 'wpautop');</code>.  Now my single book pages look like they’re supposed to again.  Yeah!</p>
<p><sup>1</sup> This is a custom field available in the back-end of the plugin and it is where I store the information telling my template if I borrowed the book and from whom I borrowed it.</p>
<p><small><a href="http://coffeebear.net/2008/06/05/now-reading-default-filters-on-book-meta/">Now-Reading: Default Filters on Book-Meta</a> © <a href="http://coffeebear.net" rel="cc:attributionURL">Mark McKibben</a>, <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States</a>.</small></p>]]></content:encoded>
			<wfw:commentRss>http://coffeebear.net/2008/06/05/now-reading-default-filters-on-book-meta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now-Reading Tweaks</title>
		<link>http://coffeebear.net/2008/04/25/now-reading-tweaks/</link>
		<comments>http://coffeebear.net/2008/04/25/now-reading-tweaks/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 19:14:41 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Now-Reading]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Upgrade]]></category>

		<guid isPermaLink="false">http://coffeebear.net/?p=617</guid>
		<description><![CDATA[I use Rob Miller’s excellent Now-Reading plugin to track all the books I’ve read and am reading here at CoffeeBear. After my recent site upgrade I decided to tweak the single book template for my library. I noticed that the latest version of Now-Reading allows you to note who read a given book on multiuser [...]]]></description>
			<content:encoded><![CDATA[<p>I use Rob Miller’s excellent <a title="Now-Reading plugin for WordPress" href="http://robm.me.uk/projects/plugins/wordpress/now-reading/">Now-Reading plugin</a> to track all the books I’ve read and am reading here at CoffeeBear. After my recent <a title="WordPress Upgrade | CoffeeBear.net" href="http://coffeebear.net/archives/2008/04/23/wordpress-upgrade/">site</a> <a title="Library Fixed and Other Changes | CoffeeBear.net" href="http://coffeebear.net/archives/2008/04/23/library-fixed-and-other-changes/">upgrade</a> I decided to tweak the single book template for my library. I noticed that the latest version of Now-Reading allows you to note who read a given book on multiuser sites. As my wife occassionally posts here I wanted my reads to be marked as mine, but the default output of the function Rob implemented only displays the user’s login name. Seriously Rob, what were you thinking? If you did not want to give end users the option to select how they want their name to print out why wouldn’t you go with display_name?</p>
<p>I looked at the code Rob used and with a little help from the <a title="Practical PHP Programming" href="http://hudzilla.org/phpwiki/">Practical PHP</a> I hacked together my own function based on Rob’s. By default print_reader2 works the exactly the same as print_reader<sup>1</sup> but by feeding it an additional parameter, you get your choice of what to use to display as reader’s name:</p>
<ul>
<li>0: Prints out the user_login aka the username you use to log into WordPress.</li>
<li>1: Prints user_nicename, appears to simply be an all lower case version of the user’s nickname<sup>2</sup>.</li>
<li>2: Prints display_name, from the “Display name publicly as” field in your WordPress profile.</li>
<li>3: Prints first_name, from the “First name” field in your WordPress profile.</li>
<li>4: Prints nickname, from the “Nickname” field in your WordPress profile.</li>
</ul>
<pre name="code" class="php">function print_reader2( $echo=true, $reader_id = 0, $display = 0 ) {
	global $userdata;

	$username='';

	switch($display) {
		case "1": if (!$reader_id) { get_currentuserinfo(); $username = $userdata-&gt;user_nicename; } else { $user_info = get_userdata($reader_id); $username = $user_info-&gt;user_nicename; }; break;
		case "2": if (!$reader_id) { get_currentuserinfo(); $username = $userdata-&gt;display_name; } else { $user_info = get_userdata($reader_id); $username = $user_info-&gt;display_name; }; break;
		case "3": if (!$reader_id) { get_currentuserinfo(); $username = $userdata-&gt;first_name; } else { $user_info = get_userdata($reader_id); $username = $user_info-&gt;first_name; }; break;
		case "4": if (!$reader_id) { get_currentuserinfo(); $username = $userdata-&gt;nickname; } else { $user_info = get_userdata($reader_id); $username = $user_info-&gt;nickname; }; break;
		default: if (!$reader_id) { get_currentuserinfo(); $username = $userdata-&gt;user_login; } else { $user_info = get_userdata($reader_id); $username = $user_info-&gt;user_login;};
   }
	if ($echo)
		echo $username;
	return $username;
}</pre>
<p><strong>Side note:</strong> WordPress 2.5.1 got released today and it includes a security fix, be sure to update your blogs!</p>
<p><sup>1</sup> At least, I think it does. I’m not a programmer and I only know enough PHP to be dangerous to myself.<br />
<sup>2</sup> The <a title="WordPress Codex" href="http://codex.wordpress.org/">WordPress Codex</a> does not appear to define what this field is used for or why it exists, so that’s just my guess.</p>
<p><small><a href="http://coffeebear.net/2008/04/25/now-reading-tweaks/">Now-Reading Tweaks</a> © <a href="http://coffeebear.net" rel="cc:attributionURL">Mark McKibben</a>, <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States</a>.</small></p>]]></content:encoded>
			<wfw:commentRss>http://coffeebear.net/2008/04/25/now-reading-tweaks/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>WordPress Plugins: PHPInfo and PluginsUsedPlugin</title>
		<link>http://coffeebear.net/2007/12/10/wordpress-plugins-phpinfo-and-pluginsusedplugin/</link>
		<comments>http://coffeebear.net/2007/12/10/wordpress-plugins-phpinfo-and-pluginsusedplugin/#comments</comments>
		<pubDate>Mon, 10 Dec 2007 18:49:29 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://coffeebear.net/archives/2007/12/10/wordpress-plugins-phpinfo-and-pluginsusedplugin/</guid>
		<description><![CDATA[I’ve been working on some stuff behind the scenes here at CoffeeBear.net with the intention of eventually upgrading the site’s backend and developing a new theme for the site. In the process of doing all this behind the scenes works, I’ve been trying out new plugins and wanted a quick way to check my server’s [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve been working on some stuff behind the scenes here at CoffeeBear.net with the intention of eventually upgrading the site’s backend and developing a new theme for the site.  In the process of doing all this behind the scenes works, I’ve been trying out new plugins and wanted a quick way to check my server’s setup without putting a page for just anybody to view (e.g. creating my own <a href="http://us3.php.net/manual/en/function.phpinfo.php" title="PHP: phpinfo - Manual">phpinfo</a> page).  I found this a <a href="http://wordpress.designpraxis.at/plugins/phpinfo/" title="Phpinfo | WordPress Designpraxis">plugin</a> by Designpraxis which basically adds the output from phpinfo to WordPress’s admin panel.  Unfortunately, it buries the page/info under the Options panel.  So I hacked it up to move the output under the Dashboard panel.  Then I thought, it would be great if it could also list off all the plugins my site uses and what version of those plugins.  I already have the <a href="http://www.andrewsw.com/pages/pluginsUsedPlugin" title="pluginsUsedPlugin | AndrewSW">pluginsUsedPlugin</a> installed but it didn’t support plain-text output.  So I hacked it up to output in plain-text, hacked up Phpinfo to include that plain-text output and then there was much rejoicing.</p>
<p>I thought it only fair to share my hacks, so enjoy or not as you choose. I’m sure there’s a more elegant way to code these changes, but I am not a programmer so if you use these and don’t like how I changed them…  Well, you just have to suffer then.  :p  Feel free to ask questions but keep in mind:</p>
<ul>
<li>I’m not a programmer.</li>
<li>These plugins aren’t originally mine.  I don’t know much about how they work.  I only know enough to hack together my changes.</li>
<li>If my hacked versions don’t work for you, try the originals before asking me for help.  The people who made the originals should have a better idea of why things work/don’t work.</li>
</ul>
<h4>CoffeeBear’s Hacked Plugins</h4>
<ul>
<li>Download <a href="http://coffeebear.net/wp-content/uploads/2007/12/phpinfo-11b.zip" title="PHPInfo 1.1b | CoffeeBear.net">PHPInfo 1.1b</a>.</li>
<li>Download <a href="http://coffeebear.net/wp-content/uploads/2007/12/pluginsusedplugin-0111b.zip" title="pluginsUsedPlugin 0.1.11b | CoffeeBear.net">pluginsUsedPlugin 0.1.11b</a>.
</li>
</ul>
<p><small><a href="http://coffeebear.net/2007/12/10/wordpress-plugins-phpinfo-and-pluginsusedplugin/">WordPress Plugins: PHPInfo and PluginsUsedPlugin</a> © <a href="http://coffeebear.net" rel="cc:attributionURL">Mark McKibben</a>, <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States</a>.</small></p>]]></content:encoded>
			<wfw:commentRss>http://coffeebear.net/2007/12/10/wordpress-plugins-phpinfo-and-pluginsusedplugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 4/14 queries in 0.024 seconds using disk: basic
Object Caching 1038/1057 objects using disk: basic

Served from: coffeebear.net @ 2012-05-25 07:16:16 -->
