Posted by michael.twofish
tagged tags and wordpress
I've just upgraded to WordPress 2.3 and, while the process was pretty painless, for some reason tags weren't working, even after I added tag support to the theme using
the_tags() in
The Loop. The problem turned out to be that
The Loop in the Connections theme uses deprecated function calls. To enable tagging in the
Connections theme edit
index.php and find the following code.
<?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
<div class="post">
<?php require('post.php'); ?>
<?php comments_template(); // Get wp-comments.php template ?>
</div>
<?php endforeach; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ... [read more]