hi all, is there a way to exclude a category from appearing on the home page? I changed
query_posts($args);
to query_posts('cat=-24'); but that stopped my older pages from showing the older posts.
Ideas?
Danke.
hi all, is there a way to exclude a category from appearing on the home page? I changed
query_posts($args);
to query_posts('cat=-24'); but that stopped my older pages from showing the older posts.
Ideas?
Danke.
Attention Admin: I posted the wrong problem to the wrong title. The problem is right but the post title is not. Can it get changed? Sorry, not trying to fool anyone, just wasn't paying attention. :-)
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts('cat=-24&paged=' . $paged);That worked, thank you very much! :)
This topic has been closed to new replies.