Posts Tagged ‘tags’

Removed tag code from theloop.php and added simple tags plugin.

Thursday, November 29th, 2007

Added the Simple Tags plug-in, so now I have a tag cloud and a related posts display at the end of each post. I also have a “This post is about:[tags]” display at the end of the posts, and words in my posts that are tags are automatically linked to the appropriate tag page.

Because it’s no longer necessary, I removed the following code from theloop.php (at Synthesis):

How to edit the K2 theme so that your tags replace the categories

Monday, October 15th, 2007

Find the span class "entry-category"> in theloop.php.
Change <?php /* Categories */ printf(__('in ','k2_domain'), k2_nice_category(', ', __(' and ','k2_domain')) ); ?> to <?php /* Tags */ the_tags(__('in ','k2_domain')); ?>

I’m sure there’s a fancier way of doing this that doesn’t require the theme core files, but this is a relatively minor change.