<?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>HiddenTao &#187; Page Tagger</title>
	<atom:link href="http://www.hiddentao.com/archives/tag/page-tagger/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hiddentao.com</link>
	<description>software, websites, mobile, technology</description>
	<lastBuildDate>Fri, 27 Jan 2012 13:11:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Getting page tags to show on your WordPress pages</title>
		<link>http://www.hiddentao.com/archives/2010/03/24/getting-page-tags-to-show-on-your-pages/</link>
		<comments>http://www.hiddentao.com/archives/2010/03/24/getting-page-tags-to-show-on-your-pages/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 12:23:29 +0000</pubDate>
		<dc:creator>ram</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Page Tagger]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.hiddentao.com/?p=771</guid>
		<description><![CDATA[A number of users of Page Tagger have emailed in asking how to get their page tags showing on their pages. So I thought I&#8217;d put up a short blog post on how to do this. Once you&#8217;ve happily tagged your pages using Page Tagger you need to edit your theme&#8217;s page.php template. This is [...]]]></description>
			<content:encoded><![CDATA[<p>A number of users of <a href="/code/wordpress-page-tagger-plugin/" class="liinternal">Page Tagger</a> have emailed in asking how to get their page tags showing on their pages. So I thought I&#8217;d put up a short blog post on how to do this.</p>

<p>Once you&#8217;ve happily tagged your pages using Page Tagger you need to edit your theme&#8217;s <code>page.php</code> template. This is the <a href="http://codex.wordpress.org/Pages#What_Template_is_used_to_Display_a_Particular_Page.3F" class="liwp">template which gets used by WordPress</a> whenever you view a static page (as opposed to a blog post) on your site.
<span id="more-771"></span>
Inside this file you should have a section resembling <a href="http://codex.wordpress.org/The_Loop" class="liwp">&#8220;The Loop&#8221;</a>:</p>

<p><pre><code>&lt;? php if (have_posts()) : while (have_posts()) : the_post(); ? >
...
&lt;? php endwhile; endif; ? >
</code></pre></p>

<p>Inside this section you need to place a call to the <code>the_tags()</code> template method. This will output your page tags at that spot with some default formatting. Read the <a href="http://codex.wordpress.org/Template_Tags/the_tags" class="liwp">documentation for the_tags()</a> for information on changing how it works. You can also use alternative functions such as <code>get_the_tags()</code>or <code>get_the_tag_list()</code> to achieve a similar effect.</p>

<p>If for some reason your page tags still aren&#8217;t showing on your page then please get in touch as it maybe a bug in the Page Tagger plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hiddentao.com/archives/2010/03/24/getting-page-tags-to-show-on-your-pages/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Page Tagger 0.3.5 and Common-Utils</title>
		<link>http://www.hiddentao.com/archives/2010/01/16/page-tagger-0-3-5-and-common-utils/</link>
		<comments>http://www.hiddentao.com/archives/2010/01/16/page-tagger-0-3-5-and-common-utils/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 14:46:27 +0000</pubDate>
		<dc:creator>ram</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Common-Utils]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Page Tagger]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.hiddentao.com/?p=702</guid>
		<description><![CDATA[A new version of Page Tagger is now available. Grab it now from here or the WordPress plugin repository. Also, I&#8217;ve put up a few Java classes I wrote a while back as a small library called Common-Utils. Included within are the following: ArrayUtils &#8211; Utility methods to fill an array with a given value [...]]]></description>
			<content:encoded><![CDATA[<p>A new version of <a href="/code/wordpress-page-tagger-plugin/" class="liinternal">Page Tagger</a> is now available. Grab it now from <a href="/code/wordpress-page-tagger-plugin/" class="liinternal">here</a> or the <a href="http://wordpress.org/extend/plugins/page-tagger/" class="liwp">WordPress plugin repository</a>.</p>

<p>Also, I&#8217;ve put up a few Java classes I wrote a while back as a small library called <a href="/code/common-utils/" title="Common-Utils" class="liinternal">Common-Utils</a>. Included within are the following:</p>

<ul>
<li><code>ArrayUtils</code> &#8211; Utility methods to fill an array with a given value or check if it contains a given value.</li>
<li><code>DynamicArray</code> &#8211; A resizable &#8220;static&#8221; array for when you don&#8217;t quite need the full flexibility of <code>ArrayList</code>.</li>
<li><code>NonMutableIterator</code> &#8211; Wraps around a normal <code>Iterator</code> and disables use of the <code>remove</code> method.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.hiddentao.com/archives/2010/01/16/page-tagger-0-3-5-and-common-utils/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Page Tagger 0.3.4</title>
		<link>http://www.hiddentao.com/archives/2009/12/20/page-tagger-0-3-4/</link>
		<comments>http://www.hiddentao.com/archives/2009/12/20/page-tagger-0-3-4/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 12:44:48 +0000</pubDate>
		<dc:creator>ram</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Page Tagger]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.hiddentao.com/?p=665</guid>
		<description><![CDATA[This is a new version of Page Tagger that has been tested to work with WordPress 2.9. Grab it now from here or the WordPress plugin repository.]]></description>
			<content:encoded><![CDATA[<p>This is a new version of <a href="/code/wordpress-page-tagger-plugin/" class="liinternal">Page Tagger</a> that has been tested to work with WordPress 2.9.</p>

<p>Grab it now from <a href="/code/wordpress-page-tagger-plugin/" class="liinternal">here</a> or the <a href="http://wordpress.org/extend/plugins/page-tagger/" class="liwp">WordPress plugin repository</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hiddentao.com/archives/2009/12/20/page-tagger-0-3-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Page Tagger 0.3.2</title>
		<link>http://www.hiddentao.com/archives/2009/11/18/page-tagger-0-3-2/</link>
		<comments>http://www.hiddentao.com/archives/2009/11/18/page-tagger-0-3-2/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 21:18:07 +0000</pubDate>
		<dc:creator>ram</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Page Tagger]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.hiddentao.com/?p=633</guid>
		<description><![CDATA[This is a new version of Page Tagger that has been tested to work with WordPress 2.8.6. Some users were reporting that the tag editing interface was unusable when used in conjunction with certain other plugins (e.g. the multi-level navigation plugin). Other users were having trouble getting the plugin to work in the latest version [...]]]></description>
			<content:encoded><![CDATA[<p>This is a new version of <a href="/code/wordpress-page-tagger-plugin/" class="liinternal">Page Tagger</a> that has been tested to work with WordPress 2.8.6.</p>

<p>Some users were reporting that the tag editing interface was unusable when used in conjunction with certain other plugins (e.g. the multi-level navigation plugin). Other users were having trouble getting the plugin to work in the latest version of WordPress (2.8.6). This release (hopefully) fixes these issues.</p>

<p>Grab it now from <a href="/code/wordpress-page-tagger-plugin/" class="liinternal">here</a> or the <a href="http://wordpress.org/extend/plugins/page-tagger/" class="liwp">WordPress plugin repository</a>.</p>

<p><strong>Update (Nov20):</strong> The plugin has been updated to 0.3.3 now. This fixes a callback bug which was preventing the plugin from initialising on certain installations.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hiddentao.com/archives/2009/11/18/page-tagger-0-3-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Page-Tags is now known as &#8220;Page Tagger&#8221;</title>
		<link>http://www.hiddentao.com/archives/2009/09/08/page-tags-is-now-known-as-page-tagger/</link>
		<comments>http://www.hiddentao.com/archives/2009/09/08/page-tags-is-now-known-as-page-tagger/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 15:20:58 +0000</pubDate>
		<dc:creator>ram</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Page Tagger]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.hiddentao.com/?p=477</guid>
		<description><![CDATA[I&#8217;ve decided to submit my page tagging plugin to the official WordPress plugin repository to both increase its awareness amongst the WordPress user population and to make it easier for me to deliver bug fixes and other updates to users. Since there is already a plugin called &#8220;Page Tags&#8221; on there I&#8217;ve decided to rename [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve decided to submit my <a href="/code/wordpress-page-tagger-plugin/" class="liinternal">page tagging plugin</a> to the official <a href="http://wordpress.org/extend/plugins/page-tagger/" class="liwp">WordPress plugin repository</a> to both increase its awareness amongst the WordPress user population and to make it easier for me to deliver bug fixes and other updates to users. Since there is already a plugin called &#8220;Page Tags&#8221; on there I&#8217;ve decided to rename mine to <strong>Page Tagger</strong>. Note that all the functionality within the plugin remains unchanged.</p>

<p>If you&#8217;re interested in sharing your own plugins with the WordPress community the instructions and FAQs are available at <a href="http://wordpress.org/extend/plugins/about/" class="liwp">http://wordpress.org/extend/plugins/about/</a>.</p>

<p><strong>Update (Sep16)</strong>: The plugin is now available in the WordPress plugin directory at <a href="http://wordpress.org/extend/plugins/page-tagger/" class="liwp">http://wordpress.org/extend/plugins/page-tagger/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hiddentao.com/archives/2009/09/08/page-tags-is-now-known-as-page-tagger/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Page Tagger</title>
		<link>http://www.hiddentao.com/code/wordpress-page-tagger-plugin/</link>
		<comments>http://www.hiddentao.com/code/wordpress-page-tagger-plugin/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 14:51:20 +0000</pubDate>
		<dc:creator>ram</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Page Tagger]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.hiddentao.com/?page_id=464</guid>
		<description><![CDATA[Page Tagger (formerly Page-Tags) is a WordPress plugin which lets you tag your pages just like you do your blog posts. It adds a tagging widget in the page-editing view in the admin interface. This plugin requires PHP 5 and WordPress 2.8.4. It has been tested on upto WordPress 3.2.1. An older version of the [...]]]></description>
			<content:encoded><![CDATA[<p>Page Tagger (formerly <em>Page-Tags</em>) is a <a href="http://www.wordpress.org/" title="Goto WordPress homepage" class="liwp">WordPress</a> plugin which lets you tag your pages just like you do your blog posts. It adds a tagging widget in the page-editing view in the admin interface.</p>

<p>This plugin requires PHP 5 and WordPress 2.8.4. It has been tested on upto WordPress 3.2.1. An older version of the plugin is available below for WordPress 2.7 users.</p>

<p>WordPress plugin page: <a href="http://wordpress.org/extend/plugins/page-tagger/" class="liwp">link</a>.</p>

<p>Github page: <a href="http://github.com/hiddentao/page-tagger" class="link-external">link</a>.</p>

<p>License: <a href="http://www.gnu.org/licenses/gpl.txt" title="GNU General Public License" class="link-external">GPL 3</a>.</p>

<p>Current version: 0.3.7</p>

<p>Skip to:
<span class="spaced_out"><a href="#installation" class="liinternal">Installation</a></span>
<span class="spaced_out"><a href="#usage" class="liinternal">Usage</a></span>
<span class="spaced_out"><a href="#changelog" class="liinternal">Changelog</a></span></p>

<form class='donate' method='post' action='https://www.paypal.com/cgi-bin/webscr'>		<input type='hidden' value='' name='amount'/>		<input type='hidden' value='_xclick' name='cmd'/>		<input type='hidden' value='paypal_donations@hiddentao.com' name='business'/>		<input type='hidden' value='Support Page Tagger with a donation' name='item_name'/>		<input type='hidden' value='1' name='no_shipping'/>		<input type='hidden' value='http://www.hiddentao.com/about/thank-you-for-your-donation/' name='return'/>		<input type='hidden' value='http://www.hiddentao.com' name='cancel_return'/>		<input type='hidden' value='GBP' name='currency_code'/>		<input type='hidden' value='' name='page_style'/>		<input type='hidden' value='0' name='tax'/>		<input type='image' alt='PayPal - The safer, easier way to pay online' name='submit' style='border: 0pt none ;' src='http://www.hiddentao.com/images/icons/donate_paypal.png' title='Support Page Tagger with a donation'/></form>

<h2 id="installation">Installation</h2>

<h3>WordPress 2.7</h3>

<ol>
<li>Download <a href="/downloads/wordpress-page-tags-plugin-0.2.zip" class="lizip">Page-Tags 0.2</a>.</li>
<li>Unzip it into your WordPress <code>plugins</code> folder such that the plugin files are at <code>wp-content/plugins/page-tags/...</code>.</li>
<li>Enable the plugin within your blog&#8217;s administration options.</li>
<li>All done!</li>
</ol>

<h3>WordPress 2.8.4 and above</h3>

<ol>
<li>Download the latest version from the <a href="http://wordpress.org/extend/plugins/page-tagger/" class="liwp">WordPress plugin directory page</a>.</li>
<li>Unzip it into your WordPress <code>plugins</code> folder such that the plugin files are at <code>wp-content/plugins/page-tagger/...</code>.</li>
<li>Enable the plugin within your blog&#8217;s administration options.</li>
<li>All done!</li>
</ol>

<h2 id="usage">Usage</h2>

<p>To add tags to a page simply edit the page. You will see a tagging box on on the right-hand side which works exactly like the one you see when you edit a blog post. It should look something like this (assuming you&#8217;re using the default admin theme for WordPress 2.8):</p>

<p><img src="http://farm4.static.flickr.com/3349/3207162263_4cb925c194_o.png" alt="Page-Tags tagging box" longdesc="Page-Tags tagging box" /></p>

<p>Furthermore, when viewing the archives for a given tag you will now see the associated pages as well as the blog posts: <a href="/archives/tag/code/" title="Archives for tag: Code" class="liinternal">Example</a>.</p>

<p>Page tags will also appear within the tag cloud widget.</p>

<p>To get your page tags showing on your pages <a href="/archives/2010/03/24/getting-page-tags-to-show-on-your-pages" class="liinternal">follow these instructions</a>.</p>

<h2 id="changelog">Changelog</h2>

<ul>
<li>0.3.7 (Nov 32, 2011)

<ul>
<li>Fixed tag counts for custom post types &#8211; thanks <a href="http://wordpress.org/support/profile/ov3rfly" class="liwp">Ov3rfly</a>.</li>
</ul></li>
<li>0.3.6 (Jun 8, 2010)

<ul>
<li>The plugin now works with WordPress 3 RC1.</li>
</ul></li>
<li>0.3.5 (Jan 16, 2010)

<ul>
<li>When clicking &#8216;Preview&#8217; button &#8216;Add new tag&#8217; no longer gets added as a tag</li>
<li>Updated documentation</li>
</ul></li>
<li>0.3.4 (Dec 20, 2009)

<ul>
<li>Fixed to work with WordPress 2.9</li>
</ul></li>
<li>0.3.3 (Nov 20, 2009)

<ul>
<li>Fixed callback bug which was preventing the plugin from initialising on certain installations.</li>
</ul></li>
<li>0.3.2 (Nov 18, 2009)

<ul>
<li>Fixed plugin conflict issue which was sometimes causing the tag editing interface to stop working.</li>
</ul></li>
<li>0.3.1 (Sep 8, 2009)

<ul>
<li>Plugin renamed to <em>Page Tagger</em></li>
</ul></li>
<li>0.3 (Sep 8, 2009)

<ul>
<li>Plugin now works in WordPress 2.8+.</li>
<li><em>If your page tags were no longer showing in tag clouds then you need to upgrade to this version (0.3) and then <a href="http://www.hiddentao.com/archives/2009/09/08/page-tags-0-3/" class="liinternal">follow instructions to restore the correct post counts for each tag</a>.</em> </li>
</ul></li>
<li>0.2 (Apr 3, 2009)

<ul>
<li>Fixed a bug which was preventing tags added whilst editing pages from appearing in the tag cloud widget.</li>
</ul></li>
<li>0.1 (Jan 18, 2009) &#8211; the initial release.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.hiddentao.com/code/wordpress-page-tagger-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Page-Tags 0.3</title>
		<link>http://www.hiddentao.com/archives/2009/09/08/page-tags-0-3/</link>
		<comments>http://www.hiddentao.com/archives/2009/09/08/page-tags-0-3/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 11:34:10 +0000</pubDate>
		<dc:creator>ram</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Page Tagger]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.hiddentao.com/?p=459</guid>
		<description><![CDATA[This is a new version of Page-Tags that works with WordPress 2.8.4. Under the previous version of Page-Tags (0.2) upgrading to WordPress 2.8 may have caused your page tags to no longer appear in tag clouds. To rectify this install the latest version of the plugin and then re-save (edit and save without making any [...]]]></description>
			<content:encoded><![CDATA[<p>This is a new version of <a href="/code/wordpress-page-tags-plugin/" class="liinternal">Page-Tags</a> that works with WordPress 2.8.4.</p>

<p>Under the previous version of Page-Tags (0.2) upgrading to WordPress 2.8 may have caused your page tags to no longer appear in tag clouds. To rectify this install the latest version of the plugin and then re-save (edit and save without making any changes) all your pages. This will correct the post counts for each tag, which in turn will cause your page tags to show up again in tag clouds.</p>

<p><em>Note: Page-Tags 0.3 is not backwards compatible with WordPress 2.7, so if you&#8217;re running the older version of WordPress please stick to using Page-Tags 0.2.</em></p>

<p><strong>Update (Sep8):</strong> The plugin has been <a href="/archives/2009/09/08/page-tags-is-now-known-as-page-tagger/" class="liinternal">renamed to Page Tagger</a>. And it requires WordPress 2.8.4 to function correctly (thanks <a href="http://www.acumendevelopment.net/" class="link-external">Leo</a>).</p>

<p><strong>Update (Sep15):</strong> Instead of editing and re-saving all your pages to update the post count you can simply run the following query in your MySQL database (replace <code>wp_</code> with the appropriate prefix for your database tables):</p>

<p><code>UPDATE wp_term_taxonomy t set count=(SELECT COUNT(*) FROM wp_term_relationships r, wp_posts p WHERE p.ID = r.object_id AND (p.post_type = 'post' OR p.post_type='page') AND r.term_taxonomy_id = t.term_taxonomy_id)</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hiddentao.com/archives/2009/09/08/page-tags-0-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Page-Tags 0.2</title>
		<link>http://www.hiddentao.com/archives/2009/04/03/page-tags-02/</link>
		<comments>http://www.hiddentao.com/archives/2009/04/03/page-tags-02/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 16:39:01 +0000</pubDate>
		<dc:creator>ram</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Page Tagger]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.hiddentao.com/?p=335</guid>
		<description><![CDATA[A recently noticed issue with the Page-Tags plugin was that if you added a new tag when editing a page the tag didn&#8217;t show up in the tag cloud sidebar widget. Only tags which were also associated with one or more blog posts were showing up in the tag cloud. I was seeing the same [...]]]></description>
			<content:encoded><![CDATA[<p>A <a href="http://www.hiddentao.com/archives/2009/01/18/tag-your-wordpress-27-pages/#comment-435" class="liinternal"> recently noticed</a> issue with the <a href="/code/wordpress-page-tags-plugin/" class="liinternal">Page-Tags</a> plugin was that if you added a new tag when editing a page the tag didn&#8217;t show up in the tag cloud sidebar widget. Only tags which were also associated with one or more blog posts were showing up in the tag cloud. I was seeing the same problem on my <a href="/archives/" class="liinternal">archives</a> page.</p>

<p>This issue has now been fixed in the <a href="/code/wordpress-page-tags-plugin/" class="liinternal">latest version</a>. <strong>To get the tags you&#8217;ve already added showing, install the updated plugin, and then edit and save the corresponding pages without making any changes</strong>.
<span id="more-335"></span>
For the developers among you, the cause of this bug is situated the callback function used to calculate how many posts are linked to a given tag:</p>

<pre><code>function _update_post_term_count( $terms ) {
    global $wpdb;

    foreach ( (array) $terms as $term ) {
        $count = $wpdb-&gt;get_var( $wpdb-&gt;prepare( "SELECT COUNT(*) FROM $wpdb-&gt;term_relationships, $wpdb-&gt;posts WHERE $wpdb-&gt;posts.ID = $wpdb-&gt;term_relationships.object_id AND post_status = 'publish' AND post_type = 'post' AND term_taxonomy_id = %d", $term ) );
        $wpdb-&gt;update( $wpdb-&gt;term_taxonomy, compact( 'count' ), array( 'term_taxonomy_id' =&gt; $term ) );
    }
}
</code></pre>

<p>As you can see it only counts blog posts. Page-Tags 0.2 simply replaces this callback function with one which also counts pages.</p>

<p><em>Note: The sidebar tag cloud widget will only show the top 45 tags (see the documentation for the wp_tag_cloud function).</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hiddentao.com/archives/2009/04/03/page-tags-02/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tag your WordPress 2.7 pages!</title>
		<link>http://www.hiddentao.com/archives/2009/01/18/tag-your-wordpress-27-pages/</link>
		<comments>http://www.hiddentao.com/archives/2009/01/18/tag-your-wordpress-27-pages/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 23:20:42 +0000</pubDate>
		<dc:creator>ram</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Page Tagger]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.hiddentao.com/?p=273</guid>
		<description><![CDATA[A few weeks ago I upgraded to WordPress 2.7 and was immediately liking the new admin interface and all the other features. But I needed a way of tagging my pages as well as my blog entries. So I went and grabbed the Simple Tags plugin by Amaury Balmer. But for some reason it didn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago I upgraded to WordPress 2.7 and was immediately liking the new admin interface and all the other features. But I needed a way of tagging my pages as well as my blog entries. So I went and grabbed the <a href="http://wordpress.org/extend/plugins/simple-tags/" class="liwp">Simple Tags plugin</a> by Amaury Balmer. But for some reason it didn&#8217;t seem to re-use my existing blog post tags, and its tagging interface (when editing a page) didn&#8217;t seem to work as well as the blog post tagging interface that comes with WordPress.</p>

<p>So I decided to write my own plugin (both as a learning experience and for fun!) which would let me tag pages <span id="more-273"></span>using the same interface as is used for tagging blog posts. And here it is: <a href="/code/wordpress-page-tags-plugin/" title="Page-Tags" class="liinternal">Page-Tags</a>. It&#8217;s very simple &#8211; it doesn&#8217;t have any admin options to set &#8211; but it gets the job done. Simple install and activate the plugin and then try editing one of your pages. You should see a tagging box like this on the right-hand side:</p>

<p><img src="http://farm4.static.flickr.com/3349/3207162263_4cb925c194_o.png" alt="Page-Tags tagging box" longdesc="Page-Tags tagging box" /></p>

<p>This box looks and feels exactly like the one you see when you edit a blog post, and it works the same way too (it has the lookup-as-you-type feature). Additionally, when viewing the archive page for a given tag or tags you should now see the list of tagged pages as well as blog posts. You can see this in action in my <a href="/archives/tag/projects/" title="Archives for tag: Projects" class="liinternal">tag archives</a>.</p>

<p><em>By the way, I use the brilliant <a href="http://moshublog.com/2007/10/30/custom-query-string-reloaded-for-wordpress-23-with-tag-support/" class="link-external">Custom Query String &#8220;Reloaded&#8221; plugin</a> to ensure that there&#8217;s no limit to the no. of posts I can display in the tag archives.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hiddentao.com/archives/2009/01/18/tag-your-wordpress-27-pages/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Page-Tags</title>
		<link>http://www.hiddentao.com/code/wordpress-page-tags-plugin/</link>
		<comments>http://www.hiddentao.com/code/wordpress-page-tags-plugin/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 22:42:55 +0000</pubDate>
		<dc:creator>ram</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Page Tagger]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.hiddentao.com/?page_id=264</guid>
		<description><![CDATA[Page-Tags is now known as Page Tagger. Please goto the new homepage of this plugin.]]></description>
			<content:encoded><![CDATA[<p>Page-Tags is now known as <strong>Page Tagger</strong>. Please goto the <a href="/code/wordpress-page-tagger-plugin/" title="Page Tagger plugin homepage" class="liinternal">new homepage</a> of this plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hiddentao.com/code/wordpress-page-tags-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

