<?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>K-Squared Ramblings &#187; Technorati</title>
	<atom:link href="http://www.hyperborea.org/journal/tag/technorati/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hyperborea.org/journal</link>
	<description>Sci-fi, comics, humor, photos...it&#039;s all fair game.</description>
	<lastBuildDate>Sat, 04 Feb 2012 06:27:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Bunny&#8217;s Technorati Tags and WordPress 2.0</title>
		<link>http://www.hyperborea.org/journal/2005/12/bunny-tags-in-wp2/</link>
		<comments>http://www.hyperborea.org/journal/2005/12/bunny-tags-in-wp2/#comments</comments>
		<pubDate>Sat, 31 Dec 2005 00:36:26 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Site Updates]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[bunny]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[Technorati]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/archives/2005/12/30/bunny-tags-in-wp2/</guid>
		<description><![CDATA[Solved! To make Bunny&#8217;s Technorati Tags fully compatible with WordPress 2.0 you need to change two lines in the add_tags_textinput() function. Just replace this: function add_tags_textinput() { global $postdata; $tags = get_post_meta($postdata->ID, 'tags', true); with this: function add_tags_textinput() { global &#8230; <a href="http://www.hyperborea.org/journal/2005/12/bunny-tags-in-wp2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Solved!  To make <a href="http://plugins.trac.wordpress.org/wiki/BunnysTechnoratiTags">Bunny&#8217;s Technorati Tags</a> fully <a href="http://codex.wordpress.org/User:Matt/2.0_Plugin_Compatibility">compatible with WordPress 2.0</a> you need to change two lines in the <code>add_tags_textinput()</code> function.</p>
<p>Just replace this:</p>
<pre>function add_tags_textinput() {
	global <b>$postdata</b>;
	$tags = get_post_meta(<b>$postdata->ID, 'tags', true);</b></pre>
<p>with this:</p>
<pre>function add_tags_textinput() {
	global <b>$post_ID</b>;
	$tags = get_post_meta(<b>$post_ID</b>, 'tags', true);</pre>
<p>The <a href="http://www.hyperborea.org/journal/2005/12/wp2/">problem</a> is that it will show existing tags, or let you add a new tag, but it will lose tags when you edit a post.  It&#8217;s not able to retrieve the tags to fill in the form field, apparently because $postdata isn&#8217;t returning the ID it expects.</p>
<p>I&#8217;ve <a href="http://plugins.trac.wordpress.org/ticket/339">submitted the fix</a> to wp-plugins.org, so if the author is keeping track of tickets there, the fix should show up in the next version of the plugin.</p>
<p><b>Update Jan. 3:</b> The plugin author has <a href="http://climbtothestars.org/archives/2006/01/03/plugin-updates-for-wordpress-20/">released version 0.5</a> with a slightly different fix (plus a few other improvements), and it&#8217;s now compatible with WordPress 2.0.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/2005/12/bunny-tags-in-wp2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

