Hello,
with the pages where i have a loop, all my conditional tags in the footer.php doesn't work, but the conditional tags in header.php works...
So, it is impossible to use conditional tags after a loop?
bye
Hello,
with the pages where i have a loop, all my conditional tags in the footer.php doesn't work, but the conditional tags in header.php works...
So, it is impossible to use conditional tags after a loop?
bye
there is my loop:
<?php if (have_posts()) : ?>
<?php query_posts('orderby=category&order=asc&cat=133'); ?>
<?php while (have_posts()) : the_post(); ?>
codes etc...
<?php endwhile; ?>
<?php endif; ?>Try wp_reset_query(); after your loop or in your footer before the conditional tag.
This topic has been closed to new replies.