I have url rewriting turned on, so I can go to http://myblog.com/video-posts/ and it only shows one type of category. However, the sticky post shows up at the top. How can I not have the sticky posts show up when I am filtering?
I have url rewriting turned on, so I can go to http://myblog.com/video-posts/ and it only shows one type of category. However, the sticky post shows up at the top. How can I not have the sticky posts show up when I am filtering?
Try adding:
<?php if( is_sticky() ) continue;?>
immediately after the start of the Loop in your category template.
This topic has been closed to new replies.