<?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:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>Anthology of Ideas &#187; admin tool</title>
	<atom:link href="http://anthologyoi.com/tag/admin-tool/feed" rel="self" type="application/rss+xml" />
	<link>http://anthologyoi.com</link>
	<description>Anthology of Ideas is an archive of thoughts and form.</description>
	<lastBuildDate>Sat, 03 Mar 2012 11:16:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Multi-plugin Plugin</title>
		<link>http://anthologyoi.com/wordpress/plugins/multi-plugin-plugin.html</link>
		<comments>http://anthologyoi.com/wordpress/plugins/multi-plugin-plugin.html#comments</comments>
		<pubDate>Mon, 02 Jul 2007 12:59:18 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[admin tool]]></category>
		<category><![CDATA[php scripts]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/wordpress/plugins/multi-plugin-plugin.html</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>Multi-plugin is a very simple script that allows you to add small bits of PHP scripts, such as WordPress filters, without having to make a plugin for them.</p>
<p>Download <a href='http://anthologyoi.com/wp-content/uploads/2007/06/multi-plugin.txt' title='Multi-plugin'>Multi-plugin</a></p>
<p>Installation is as simple as renaming the file to .php, uploading it to your server, activating it, and adding some script to the textbox (for example, I use the following code to remove the nofollow attribute from comments.)</p>
<p><pre class="brush: php">&lt;?php
add_filter(&#039;get_comment_author_link&#039;, &#039;aoi_follow&#039;);
add_filter(&#039;comment_text&#039;, &#039;aoi_follow&#039;);
function aoi_follow($link){
   return preg_replace(&#039;/(&lt;a.*?rel[^&gt;]*)nofollow(.*?)/&#039;,&#039;${1}${2}&#039;,$link);
}

?&gt;</pre></p>
<p>You can also use the following to add the trailing slash back onto feeds, categories, pages, etc. in WordPress 2.2+.</p>
<p><pre class="brush: php">&lt;?php
add_filter(&#039;user_trailingslashit&#039;, &#039;aoi_slashit&#039;,10,2);
function aoi_slashit($string, $type=&#039;&#039;){
  if($type == &#039;page&#039; || $type == &#039;category&#039;|| $type == &#039;month&#039;|| $type == &#039;day&#039;|| $type == &#039;paged&#039;|| $type == &#039;feed&#039;){
    return trailingslashit($string);
  }else{
   return $string;
  }
}
?&gt;</pre></p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/wordpress/plugins/multi-plugin-plugin.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

