<?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; tags</title>
	<atom:link href="http://www.hyperborea.org/journal/tag/tags/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, 21 Nov 2009 07:49:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='www.hyperborea.org' port='80' path='/journal/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>When tags vanish</title>
		<link>http://www.hyperborea.org/journal/archives/2007/04/07/when-tags-vanish/</link>
		<comments>http://www.hyperborea.org/journal/archives/2007/04/07/when-tags-vanish/#comments</comments>
		<pubDate>Sun, 08 Apr 2007 05:18:35 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Site Updates]]></category>
		<category><![CDATA[fields]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/archives/2007/04/07/when-tags-vanish/</guid>
		<description><![CDATA[Since upgrading to WordPress 2.1.3 a few days ago, I&#8217;ve noticed tags disappearing on some of my posts.  I currently use Bunny&#8217;s Technorati Tags, which stores them in custom fields.
It turns out there&#8217;s been a known problem since WordPress 2.1 was released two months ago.  Some plugin hooks have changed, and plugins that [...]]]></description>
			<content:encoded><![CDATA[<p>Since <a href="http://wordpress.org/development/2007/04/wordpress-213-and-2010/">upgrading to WordPress 2.1.3</a> a few days ago, I&#8217;ve noticed tags disappearing on some of my posts.  I currently use <a href="http://plugins.trac.wordpress.org/wiki/BunnysTechnoratiTags">Bunny&#8217;s Technorati Tags</a>, which stores them in custom fields.</p>
<p>It turns out there&#8217;s been <a href="http://sudarmuthu.com/blog/2007/01/31/wordpress-21-and-custom-field-plugin-gotcha.html">a known problem</a> since WordPress 2.1 was released two months ago.  Some plugin hooks have changed, and plugins that used to only get called during post editing are also getting called during comment publishing.  I grabbed an <a href="http://climbtothestars.org/archives/2007/02/01/basic-bilingual-and-bunnys-technorati-tags-plugins-updated-for-wordpress-21/">updated version</a> of the plugin, and it seems okay now.</p>
<p>Oddly, most (but not all) tags survived unscathed during the two months running earlier 2.1 releases.  It&#8217;s only since moving to 2.1.3 that it&#8217;s been consistent.  Oh, well, at least it prompted me to find the fix.</p>
<hr /><small>Copyright &copy; 2009 Kelson Vibber and/or Katherine Foreman.<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. Permission granted to Planet Antispam and LiveJournal syndication feed ksquaredramblin.  If this content is not in your news reader or one of the sites listed above, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint: bc1c453a98ff79bab5c4fca2d890469d (38.107.191.91) )</small> <a href="http://www.hudson-family.co.uk/extremecorticate.php?source=673"></a>]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/archives/2007/04/07/when-tags-vanish/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bunny&#8217;s Technorati Tags and WordPress 2.0</title>
		<link>http://www.hyperborea.org/journal/archives/2005/12/30/bunny-tags-in-wp2/</link>
		<comments>http://www.hyperborea.org/journal/archives/2005/12/30/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 $post_ID;
	$tags = get_post_meta($post_ID, 'tags', true);
The problem is that it will show existing tags, or let you add a new tag, but [...]]]></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/archives/2005/12/30/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>
<hr /><small>Copyright &copy; 2009 Kelson Vibber and/or Katherine Foreman.<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. Permission granted to Planet Antispam and LiveJournal syndication feed ksquaredramblin.  If this content is not in your news reader or one of the sites listed above, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint: bc1c453a98ff79bab5c4fca2d890469d (38.107.191.91) )</small> <a href="http://www.hudson-family.co.uk/extremecorticate.php?source=673"></a>]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/archives/2005/12/30/bunny-tags-in-wp2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tag plugin test</title>
		<link>http://www.hyperborea.org/journal/archives/2005/04/22/tag-plugin-test/</link>
		<comments>http://www.hyperborea.org/journal/archives/2005/04/22/tag-plugin-test/#comments</comments>
		<pubDate>Sat, 23 Apr 2005 05:17:51 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Site Updates]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/archives/2005/04/22/tag-plugin-test/</guid>
		<description><![CDATA[I&#8217;ve been experimenting with tags, particularly aimed at Technorati, and I rather like being able to add ad-hoc categories and (I hope) increase the visibility of some posts.  I&#8217;ve rigged up some style rules (that so far only work in Gecko and KHTML-based browsers, since they rely on the substring attribute selector from CSS3 [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been experimenting with tags, particularly aimed at Technorati, and I rather like being able to add ad-hoc categories and (I hope) increase the visibility of some posts.  I&#8217;ve rigged up some style rules (that so far only work in Gecko and KHTML-based browsers, since they rely on the substring attribute selector from CSS3 and no one else has implemented that yet), but typing out <code>&lt;a href="http://technorati.com/tag/whatever" rel="tag"&gt;whatever&lt;/a&gt;</code> over and over has gotten tiresome.  Enter <a href="http://plugins.trac.wordpress.org/wiki/BunnysTechnoratiTags">Bunny&#8217;s Technorati Tags</a>, which automatically handles them using Wordpress&#8217; extensible custom fields.  No muss, no fuss, just type in the words in another form field.</p>
<p>One thing I haven&#8217;t figured out yet: since the list is separated by spaces, how do you specify a multi-word tag like &#8220;Internet Explorer&#8221;?</p>
<p>To be honest, this post only exists because I want to test it, and because there seems to be a tradition of &#8220;I just installed this neat new plugin&#8221; posts.<span id="more-822"></span></p>
<p><b>Update:</b> <code>multi+word</code> doesn&#8217;t seem to work.  (It was a guess based on URL encoding.)  Technorati has picked this post up on &#8220;testing&#8221; but not &#8220;multi word.&#8221;  Next attempt: <code>double%20word</code> (in case the first one was just slow)&#8212;but since I&#8217;m not sure whether Technorati will re-index this post until I add a new one, it may not be a useful test just yet.</p>
<p><b>Update 2:</b> Two things: In the URL, WP encodes the % in <code>%20</code>.  Figures.  Also, that wouldn&#8217;t show up as a space in normal HTML.  I am clearly sleep-deprived and must immediately begin a period of nocturnal inactivity for at least eight hours.  Either that or down a glass or two of Dr. Pepper.</p>
<p>Having just glanced at the code, which I should have done in the first place, there does not appear to be any allowance for multi-word tags (it just uses the standard explode function).  This leaves me with several choices:</p>
<ol>
<li>Enable the option to use comma-separated keywords (losing the utility of the convenient form field)&#8212;and re-enable it <em>every</em> time I upgrade the plugin.</li>
<li>Contact the plug-in author and request the feature.</li>
<li>Hack the plug-in to enable it and submit the changes to the author.</li>
<li>Use a plug-in that takes another approach, like <a href="http://plugins.trac.wordpress.org/wiki/TechnoTag">TechnoTag</a>.</li>
</ol>
<p>#3 sounds like my best bet, but I think I ought to sleep first.</p>
<hr /><small>Copyright &copy; 2009 Kelson Vibber and/or Katherine Foreman.<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. Permission granted to Planet Antispam and LiveJournal syndication feed ksquaredramblin.  If this content is not in your news reader or one of the sites listed above, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint: bc1c453a98ff79bab5c4fca2d890469d (38.107.191.91) )</small> <a href="http://www.hudson-family.co.uk/extremecorticate.php?source=673"></a>]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/archives/2005/04/22/tag-plugin-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
