<?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; plugin</title>
	<atom:link href="http://anthologyoi.com/tag/plugin/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>A friday in my newsreader: Febuary 22.</title>
		<link>http://anthologyoi.com/blogish/linkage/a-friday-in-my-newsreader-febuary-22.html</link>
		<comments>http://anthologyoi.com/blogish/linkage/a-friday-in-my-newsreader-febuary-22.html#comments</comments>
		<pubDate>Fri, 22 Feb 2008 18:55:45 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[Linkage]]></category>
		<category><![CDATA[Blogish]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[University]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/blogish/linkage/a-friday-in-my-newsreader-febuary-22.html</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/46425925@N00/214003246/" title="" style="float:left; padding:5px 10px 0px 10px;" target="_blank"><img src="http://farm1.static.flickr.com/86/214003246_ece20e14bc_t.jpg" alt=""  border="0" /></a> Occasionally, so many wonderful posts appear in the lull between the Thursday doldrums and the Friday excitation (pun much?) that I have to &#8220;link it up&#8230;er&#8230;mott&#8221;. </p>
<ol>
<li>It turns out that you can see the <a href="http://scienceblogs.com/deepseanews/2008/02/trawling_effects_seen_from_spa.php#commentsArea">effects of trawling for fish from space</a>. Do we need any more evidence against it?</li>
<li>Uncertain Principles posts about the backlash from the Virginia Tech shootings: turns out stage plays with fake wooden weapons endanger students&#8230;according to <a href="http://scienceblogs.com/principles/2008/02/those_who_have_no_idea_go_into.php">some college administrators</a>.</li>
<li>Uncertain principles also wonders if there is any realistic nanotechnology in SciFi writing.</li>
<li>That encrypted hard drive you might have? <a href="http://techdirt.com/articles/20080221/232021319.shtml">Worthless now that the encryption can be broken&#8230;easily.</a></li>
</ol>
<p>Oh and as a side note, anyone else watch one of my favorite video blogs: <a href="http://tv.winelibrary.com/">http://tv.winelibrary.com/</a>?</p>
<p><small><a href="http://www.photodropper.com/creative-commons/" title="creative commons" target="_blank"><img src="http://anthologyoi.com/wp-content/plugins/photo_dropper//images/cc.gif" alt="Creative Commons License" border="0" /></a> image credit: <a href="http://www.flickr.com/people/Pulpolux !!!/" title="Pulpolux !!!" target="_blank">Pulpolux !!!</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/blogish/linkage/a-friday-in-my-newsreader-febuary-22.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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[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. Download Multi-plugin Installation is as simple as renaming the file to .php, &#8230; <a href="http://anthologyoi.com/wordpress/plugins/multi-plugin-plugin.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>
		<item>
		<title>WordPress Code Escape</title>
		<link>http://anthologyoi.com/wordpress/plugins/wordpress-code-escape.html</link>
		<comments>http://anthologyoi.com/wordpress/plugins/wordpress-code-escape.html#comments</comments>
		<pubDate>Sun, 10 Jun 2007 02:26:46 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/wordpress/plugins/wordpress-code-escape.html</guid>
		<description><![CDATA[Here is another small modified plugin that auto-escapes your code, nicely displays line numbers and uses valid XHTML. This plugin is based off of SemCodeFix, and adds many of the features I wanted in my code plugin. Download: WordPress Code &#8230; <a href="http://anthologyoi.com/wordpress/plugins/wordpress-code-escape.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here is another small modified plugin that auto-escapes your code, nicely displays  line numbers and uses valid XHTML. This plugin is based off of <a href="http://www.sematopia.com"> SemCodeFix</a>, and adds many of the features I wanted in my code plugin. </p>
<p><strong>Download:</strong><br />
<a href='http://anthologyoi.com/wp-content/uploads/2007/06/codeescape.txt' title='Wordpress Code Escape'>WordPress Code Escape</a></p>
<p><strong>Directions:</strong><br />
Download the file and save it as a .php file.<br />
Upload to your plugins directory.<br />
 Activate it.<br />
You may optionally choose to add the following style information to your theme&#8217;s style.css.<br />
<pre class="brush: php">.code_child {
	font-family:&quot;Courier New&quot;, Courier, monospace;
	white-space:pre;
	width:90%;
	background-color: #F4F4F4 !important;
	overflow:auto;
	border:1px inset;
 	margin:10px;
}
ol.code_child li{
 	margin:0;
 	padding:0 !important;
 	line-height:100% !important;
 	margin-bottom: -8px;
 	margin-bottom: expression(5 +&quot;px&quot;);
 	margin-left:  expression(35 + &quot;px&quot;);
}</pre></p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/wordpress/plugins/wordpress-code-escape.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Spreadsheet to Table Plugin</title>
		<link>http://anthologyoi.com/wordpress/plugins/spreadsheet-to-table.html</link>
		<comments>http://anthologyoi.com/wordpress/plugins/spreadsheet-to-table.html#comments</comments>
		<pubDate>Sat, 21 Apr 2007 20:48:50 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[quick and dirty]]></category>
		<category><![CDATA[spreadsheet data]]></category>
		<category><![CDATA[tables]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/wordpress/plugins/spreadsheet-to-table.html</guid>
		<description><![CDATA[This was an extremely quick project to turn spreadsheet data into an XHTML table. The plugin is quite simple to use, just copy some data from a spreadsheet ( or the visible part of an XHTML table) and paste it &#8230; <a href="http://anthologyoi.com/wordpress/plugins/spreadsheet-to-table.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This was an extremely quick project to turn spreadsheet data into an XHTML table. The plugin is quite simple to use, just copy some data from a spreadsheet ( or the visible part of an XHTML table) and paste it into a blog post between the tags [table] and [/table] (make sure that columns are tab separated and rows are on their own line). <strong>This is a no frills plugin.</strong> The first row is used as the column names and is added to a thead tag. Anything can be added to the [table] tag after &#8220;table&#8221; and it will become the table&#8217;s caption. EX [table "This is an example table"]</p>
<p>So this:<br />
<pre class="brush: php">[table &quot;This is an example table&quot;]
gf	sfg	sfcx	dfg
asd	sd	dsfs	
xcv	fds		sgdf
dfg		dfg	dfg
	dfg	dfg	dfg
[/table]</pre></p>
<p>Becomes:</p>
<table>
<caption> &#8220;This is an example table&#8221;</caption>
<thead>
<tr>
<td>gf</td>
<td>sfg</td>
<td>sfcx</td>
<td>dfg</td>
</tr>
</thead>
<tbody>
<tr>
<td>
asd</td>
<td>sd</td>
<td>dsfs</td>
<td></td>
</tr>
<tr>
<td>
xcv</td>
<td>fds</td>
<td></td>
<td>sgdf</td>
</tr>
<tr>
<td>
dfg</td>
<td></td>
<td>dfg</td>
<td>dfg</td>
</tr>
<tr>
<td>
</td>
<td>dfg</td>
<td>dfg</td>
<td>dfg</td>
</tr>
</tbody>
</table>
<p>Installation:</p>
<ol>
<li>Copy and Paste the contents of the texbox below into a .php file.</li>
<li>Upload and activate.</li>
</ol>
<p><pre class="brush: php">&lt;?php
/*
Plugin Name: Tabeler
Plugin URI:  http://anthologyoi.com/plugins/
Description: This plugin allows you to copy data directly from a spreadsheet and paste it into your blog, and will automatically create a table for it.
Version: 0.1
Author: Aaron Harun. 
Author URI: http://anthologyoi.com
*/

add_filter(&#039;the_content&#039;,&#039;tabler_find&#039;,1);
add_filter(&#039;the_excerpt&#039;,&#039;tabler_find&#039;,1);

function tabler_find($content) {
	return preg_replace_callback(&#039;!\[table([^]]*)\](?:\r\n|\n|\r|)([\S\s]*?\t[\S\s]*?)(?:\r\n|\n|\r|)\[/table\]!ims&#039;, &#039;tabler_callback&#039;, $content);
}


function tabler_callback($matches) {

	$pos_table = $matches[2];

	if(strpos($pos_table,chr(13)) !== FALSE){
		$rows = explode(chr(13),$pos_table);
	}else{
		$rows = explode(&quot;\n&quot;,$pos_table);
	}

	if(is_array($rows)){
		if($rows &gt; 1){
			$table .= &#039;&lt;table&gt;&#039;;

		foreach($rows as $row){
		$i++;
			$cols = explode(&quot;\t&quot;,$row);

			if($i==1)
				$table .= &#039;&lt;thead&gt;&#039;;

			$table .= &#039;&lt;tr&gt;&#039;;

			foreach($cols as $col){
				$table .= &#039;&lt;td&gt;&#039;.$col.&#039;&lt;/td&gt;&#039;;
			}

			$table .= &#039;&lt;/tr&gt;&#039;;

			if($i==1){
				$table .= &#039;&lt;/thead&gt;&#039;;

				$table .= &#039;&lt;tbody&gt;&#039;;
			}
		}
			$table .= &#039;&lt;/tbody&gt;&#039;;

			$table .= &#039;&lt;/table&gt;&#039;;
			
			return $table;
		}
	}
}

?&gt;</pre></p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/wordpress/plugins/spreadsheet-to-table.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>INAP updated to version 2.2.3</title>
		<link>http://anthologyoi.com/news-briefs/inap-updated-to-version-223.html</link>
		<comments>http://anthologyoi.com/news-briefs/inap-updated-to-version-223.html#comments</comments>
		<pubDate>Thu, 29 Mar 2007 23:58:38 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[INAP]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/news-briefs/inap-updated-to-version-223.html</guid>
		<description><![CDATA[Inline Ajax Page has been updated. This release is primarily a bug-fixing release, but adds a live comment preview and the ability to trim feeds. You may go to the main INAP page for more information. Special thanks goes out &#8230; <a href="http://anthologyoi.com/news-briefs/inap-updated-to-version-223.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Inline Ajax Page has been updated. This release is primarily a bug-fixing release, but adds a live comment preview and the ability to trim feeds.</p>
<p>You may go to the <a href="http://anthologyoi.com/inap/">main INAP page</a> for more information. </p>
<p>Special thanks goes out to <a href="http://mnogo.truden.com/">Truden</a> for all of his help hunting down them <a href="http://en.wikipedia.org/wiki/Elmer_Fudd">wascily wabbits</a>&#8230;er&#8230;bugs.</p>
<p> Pun intended.</p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/news-briefs/inap-updated-to-version-223.html/feed</wfw:commentRss>
		<slash:comments>87</slash:comments>
		</item>
		<item>
		<title>WordPress Access Keys Plugin</title>
		<link>http://anthologyoi.com/wordpress/plugins/wordpress-access-keys.html</link>
		<comments>http://anthologyoi.com/wordpress/plugins/wordpress-access-keys.html#comments</comments>
		<pubDate>Sun, 18 Mar 2007 02:14:13 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[access key]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/wordpress/plugins/wordpress-access-keys.html</guid>
		<description><![CDATA[The WordPress Access Keys Plugin a allows you to add access keys to pages and categories to improve accessibility of your WordPress website. This works with any page or category list that is called with wp_list pages and wp_list_categories respectively. &#8230; <a href="http://anthologyoi.com/wordpress/plugins/wordpress-access-keys.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p> The WordPress Access Keys Plugin a allows you to add access keys to pages and categories to improve accessibility of your WordPress website. This works with any page or category list that is called with wp_list pages and wp_list_categories respectively. This plugin works in all WordPRess versions from 2.1 &#8211; 2.5.</p>
<p><strong>Screenshot of Admin Panel: </strong><br />
<img src='http://anthologyoi.com/wp-content/uploads/2007/03/screenshot-1.png' alt='Screenshot of Access Keys Version 0.1' /></p>
<p><strong>Demo:</strong><br />
The About page on this site has an access key of 6 and the site map has an access key of 3.</p>
<p><strong>Download: </strong><br />
<a href='http://downloads.wordpress.org/plugin/access-keys.zip' title='Access Keys Version 1.0'>Access Keys version 1.0</a></p>
<p><strong>Installation:</strong></p>
<ol>
<li>Download the zip file, unzip it and upload to your <em>wp-content/plugins</em> folder</li>
<li>Upload to your plugin directory.</li>
<li>Activate.</li>
<li>Go to the Admin Menu under Manage named Access Keys.</li>
<li>Read the instructions.</li>
</ol>
<p><strong>Use:</strong><br />
Use of this plugin is simple. On the Admin panel it lists pages and categories with a current access key, and in a separate list it lists the pages and categories without access keys. Just add an access key just type an access key in a text box and then click the save button. The categories or posts will now move to the top list. </p>
<p><strong>How do I use Access Keys</strong><br />
Different browsers implement Access Key shortcuts differently. The following is a list of browser access key key combinations.</p>
<ul>
<li>On Windows and Linux. <strong>Firefox 2.0+</strong>: Hold down the Alt Key and the Shift key, and press the access key.</li>
<li>On Windows. <strong>Internet Explorer 5+</strong>:  Hold down the Alt key, and press the number or letter of the access key. Release both keys and  press Enter.</li>
<li>On Windows. <strong>Internet Explorer 4</strong>, <strong>Firefox 1.0</strong>, <strong>Mozilla</strong> and <strong>Netscape 7+</strong>: Hold down the Alt key and press the number or letter of the access key. </li>
<li> On Mac OS X.<strong> Firefox</strong>, <strong>Mozilla</strong>, <strong>Netscape 7+</strong>, <strong>Internet Explorer 5+</strong>, <strong>Safari</strong> and <strong>Omniweb</strong>: Hold down the Ctrl key and press the number or letter of the access key. </li>
<li><strong>Konqueror</strong>: Press and release the Ctrl key, then press the number or letter of the access key. </li>
<li>On the Mac <strong>Internet Explorer 4.5</strong> and on all platforms <strong>Netscape</strong> version 6 and earlier: Access keys are unsupported. </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/wordpress/plugins/wordpress-access-keys.html/feed</wfw:commentRss>
		<slash:comments>61</slash:comments>
		</item>
		<item>
		<title>Future Posts Calendar Plugin</title>
		<link>http://anthologyoi.com/wordpress/plugins/future-posts-calendar-plugin.html</link>
		<comments>http://anthologyoi.com/wordpress/plugins/future-posts-calendar-plugin.html#comments</comments>
		<pubDate>Wed, 07 Feb 2007 23:17:30 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[future posts]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/wordpress/plugins/future-posts-calendar-plugin.html</guid>
		<description><![CDATA[I use the future posts a lot. In fact, this post you are reading now was written almost a week before it was posted &#8211;actually I used this plugin to post about this plugin, but that is getting off topic. &#8230; <a href="http://anthologyoi.com/wordpress/plugins/future-posts-calendar-plugin.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p> I use the future posts a lot. In fact, this post you are reading now was written almost a week before it was posted &#8211;actually I used this plugin to post about this plugin, but that is getting off topic. Anyway, if you use future posts a lot also you probably find yourself looking back and forth from your post list to a calendar or recording your future posts on a calendar to avoid having a double post on a single day and then none for three days. On top of  that there are the frequent &#8220;How many days are in March again&#8221; checks.</p>
<p>Well this plugin gets rid of all of that. It adds a simple month-by-month calendar that shows all the months you have future posts for (and the current month no matter what), it highlights the days you have posts for, and as an added bonus if you click a day the Post Timestamp boxes change to that day, month and year (although it doesn&#8217;t check the edit timestamp box to avoid accidental changes).</p>
<p>The plugin also adds a sidebar widget that you can use to display your posts to others.</p>
<ol>
<li>Download the zip file</li>
<li>Unzip and upload future_posts.php to your wp-content/plugins/ folder.</li>
<li>The new box will automatically appear on edit/write post pages.<br />
 If you want to change a date to one shown just click the date and then click the &#8220;Edit timestamp&#8221; box.</li>
<li>Optionally you can add it as a sidebar widget or uncomment the line &#8220;//add_action(&#8216;activity_box_end&#8217;, &#8216;get_future_calendar_html&#8217;);&#8221; to have it appear on your dashboard, or use the Dashboard Editor plugin to add it as a widget.</li>
</ol>
<p>Download:<a href='http://wordpress.org/extend/plugins/future-posts-calendar/future-posts-calendar.1.0.zip' title='Future Posts Calendar Plugin'>Future Posts Calendar Plugin</a> &#8212; Works in WordPress Version 2.1+ only</p>
<p>On a side note you may also be interested in my: <a href="http://anthologyoi.com/wordpress/widget/sneak-peeks-widget.html">Sneak Peeks Widget</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/wordpress/plugins/future-posts-calendar-plugin.html/feed</wfw:commentRss>
		<slash:comments>185</slash:comments>
		</item>
		<item>
		<title>Super Category (multi-blog) plugin &#8211; V 0.8</title>
		<link>http://anthologyoi.com/wordpress/plugins/super-category-multi-blog-plugin-v-08.html</link>
		<comments>http://anthologyoi.com/wordpress/plugins/super-category-multi-blog-plugin-v-08.html#comments</comments>
		<pubDate>Fri, 02 Feb 2007 23:18:36 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[multiblog]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[super category]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/wordpress/plugins/super-category-multi-blog-plugin-v-08.html</guid>
		<description><![CDATA[Unfortunately this is only for WordPress 2.1 The Super Category plugin allows you to have multiple websites running off of one install and one database (one set of tables). The websites can share content if you wish it, and can &#8230; <a href="http://anthologyoi.com/wordpress/plugins/super-category-multi-blog-plugin-v-08.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Unfortunately this is only for WordPress 2.1</strong></p>
<p>  The  Super Category plugin allows you to have multiple websites running off of one install and one database (one set of tables). The websites can share content if you wish it, and can have different titles, descriptions and themes.  This plugin is a true plugin: there are NO HACKS and NO THEME EDITS of any kind.  The plugin works with any other plugins and themes that use WordPress&#8217; built in APIs, and features modular functions that can even make other plugins that use custom queries work also.</p>
<p>If you find a problem with the plugin please let me know what happened using as much detail as possible. Unfortunately, I cannot currently ensure every plugin works with this plugin, so please let me know which ones don&#8217;t work. I will try to have a fix within a few weeks.</p>
<p><a href='http://anthologyoi.com/wp-content/uploads/2007/02/super_catphp.zip' title='Super Category (multi-blog) plugin - V 0.8'>Download Super Category (multi-blog) plugin &#8211; V 0.8</a></p>
<p><strong>Known Issues</strong><br />
Unfortunately wp_list_archives does not work with the plugin because WordPress does not allow us to filter months with posts from other Super Categories, so you will get a lot of empty archives. However, if you have posts in the same months on all sites then this doesn&#8217;t effect you.</p>
<p>There are likely to be other issues, so please activate this first on a test site. While I have made it easy to activate and deactivate, there may be complications. If you deactivate it, you will manually have to delete the super category (this will not delete child categories), and all settings should go back to the defaults.  </p>
<p><strong>Installation</strong>:</p>
<ul>
<li>Read section entitled &#8220;Parking Domains&#8221; &#8212; if you know what a parked domain is AND can park them, you can skip this part.</li>
<li>Download Plugin</li>
<li>Read all instructions&#8211;I&#8217;m a good writer, so it won&#8217;t be too much of a chore.</li>
<li>Upload super_cat.php to <i>wp-content/plugins/</i></li>
<li>Activate Plugin</li>
<li>Follow instructions that you previously read.</li>
<li>Bask in the glory of the easiest, best, most advanced and most convenient multiblog in the history of WordPress.</li>
<li>Send a donation with a number greater than 0 (preferably followed by lots of zeros to the right of the decimal place to me) or rabid monkeys will eat your slippers.</li>
<p><strong>I Assume That&#8230;</strong>
</ul>
<ul>
<li>You have access to virtual sub-domains or parked domains, or know how to forward all requests to a single file.</li>
<li>You have at least a mid-level working knowledge of how wordpress displays information.</li>
<li>You are using a clean install, or that any pre-existing categories and links you want part of one site. If this is not true it is not difficult to change it later. </li>
<li>You want all the same options and activated plugins on all sites. Currently you can have separate blog titles, descriptions, themes, posts, categories, pages, links, and feeds. Everything but basically. </li>
<li>You want any pre-existing pages on your blog to be available to all blogs. Again if this is not true it is easy to change.</li>
<li>You use themes that use fairly normal methods to display categories, links, posts, etc.  Themes that don&#8217;t use the api&#8217;s provided and actually touch the database won&#8217;t allow the filters to filter. These themes may need to be edited.</li>
<li>The same goes for plugins. </li>
<li>You will read all of the instructions&#8211;yah right.</li>
</ul>
<p><strong>How To Use It.</strong></p>
<ul>
<li>The Super Category that you will be using is your site URL. This includes the subdomain and the top-level domain. So for example, http://www.mail.google.com would have a Super Category of  &#8216;mail.google.com&#8217;, http://anthologyoi.com would have a Super Category of anthologyoi.com</li>
<li>The basic idea of this plugin is that anything that can be designated for a single site is added to a Super Category. Super Categories are designated for categories and pages. You may then add other pages and categories to those Super Categories by making them children. </li>
<li>Parent categories and pages will function as normal except for when they are Super Categories.</li>
<li>Links and Posts can be added to the categories as normal. </li>
<li>To have pages visible on all sites do not add them to a Super Category. To have links and posts on multiple sites just select categories with different Super Categories.</li>
<li>You can have as many sites and super categories, and no matter how you add posts or pages your readers will never know there are multiple sites.</li>
<li>Posts and links SHOULD NEVER be added directly to Super Categories</li>
<li>The Super Category management page you can change the blog title, description or theme for each Super Category. You can also add them.   </li>
</ul>
<p><strong>Integration</strong><br />
I have tried to make it easy to expand Super Categories to work with other plugins and options allowing people to fit this plugin to their needs. While I could have left it up to the plugin developers to &#8220;fix&#8221; their plugins, I thought the best way to implement this is to make integration so easy that developers and users alike had little reason not to. However, this section is still in the works, so it may not work all the time.</p>
<p>Assuming the plugin only needs to use a basic filter structure. You can use the sprcat_option_filters(&#8216;optionname&#8217;) function to automatically create a basic filter and filter function (direct replacement of the default database value with one from the Super Category).</p>
<p>The filter sprcat_get_options should be used to add menu items to the Super Category edit page. The filter passes the current mode (either add or edit), the current option value array and the correct super category name that the option will be used for; all of the passed values are required as add and edit modes require different naming conventions, the set option values are important, and the super category name is required to process the option..<br />
Ensure that you return the options as a two column row<br />
ADD ROW: <span class="inline-code">&lt;tr&gt;&lt;td&gt;Option Description&lt;/td&gt;&lt;td&gt;&lt;input type=&quot;text&quot; value=&quot;&quot; name=&quot;sprcat_new[option_name]&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;</span><br />
EDIT ROW: <pre class="brush: php">&lt;tr&gt;&lt;td&gt;Option Description&lt;/td&gt;&lt;td&gt;&lt;input type=&quot;text&quot; value=&quot;$sprcat[option_name]&quot; name=&quot;sprcat[$spr_cat][option_name]&quot;/&gt;&lt;/td&gt;
&lt;/tr&gt;</pre></p>
<p><strong>Parking Domains</strong><br />
     This is not a How-To guide for parking domains; instead it is meant to be just a brief introduction and explanation of what you will need to be able to do to use this plugin. Without parked domains  this plugin is almost worthless (although there are some useful traits) so make sure you can use them before you install the plugin.</p>
<p>     First of all to park a domain you need a minimum of two domains. A parked domain is a domain that points to the EXACT same place as another domain without using frames or redirections. It is not an add-on domain which points to a sub-folder. You may not be able to park domains depending on your hosting company; if you can&#8217;t you must either switch companies or convince your companies to allow you to park domains. Occasionally, a hosting company may refer to parked domains as aliased domains or one of several other names. If the domain name can point to the same folder as another domain name it will work no matter what the name is.</p>
<p>     Secondly, you must make sure that the parked domains are registered with valid name servers and have propagated through the DNS before adding them to this plugin. While there will be no obvious errors if you try to do it before hand, none of the options will work until the domain is fully propagated.</p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/wordpress/plugins/super-category-multi-blog-plugin-v-08.html/feed</wfw:commentRss>
		<slash:comments>46</slash:comments>
		</item>
		<item>
		<title>Hide it Plugin</title>
		<link>http://anthologyoi.com/wordpress/plugins/hide-it-plugin.html</link>
		<comments>http://anthologyoi.com/wordpress/plugins/hide-it-plugin.html#comments</comments>
		<pubDate>Thu, 16 Nov 2006 03:57:47 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[bbcodes]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/wordpress/hide-it-plugin.html</guid>
		<description><![CDATA[Similar to my most recent plugin, this plugin gives you a new bbcode called &#8216;hideit&#8217; which will hide any text between the opening and closing tags. In order to keep it simple I have not included a button for this &#8230; <a href="http://anthologyoi.com/wordpress/plugins/hide-it-plugin.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Similar to my most recent plugin, this plugin gives you a new bbcode called &#8216;hideit&#8217; which will hide any text between the opening and closing tags. In order to keep it simple I have not included a button for this plugin. </p>
<p>Installation is simple. Click the link below to show the download link for the plugin, and then upload as normal. </p>
<p>[hideit="Click Here to see the Plugin Download Link"]<a id="p130" href="http://anthologyoi.com/wp-content/uploads/2006/11/hide_it.zip">Click to download Hide it </a>[/hideit]</p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/wordpress/plugins/hide-it-plugin.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

