Modified Loop equals broken the_tags function
-
Greetings,
I have placed the following code in my loop on both the index and single templates.
<?php the_tags('Tagged with: ',' • ','<br />'); ?>
It works fine for the single.php file but not for my index file.
I am wondering if this is due to the modified loop I am using to eliminate certain categories.
<?php if (have_posts()) : ?> <?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; $recent = new WP_Query("cat=-3,-4,-9,-8,-74,-93&showposts=5&paged=$page"); while($recent->have_posts()) : $recent->the_post();?>
Any help would be appreciated.
Theme: Heavily Modified Cutline 1.1 three column split
Wordpress: 2.3.1
Site: https://www.thirdeyemag.com
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Modified Loop equals broken the_tags function’ is closed to new replies.