Top

esmi on "Main page displaying post from certain categories?"

February 15, 2010 by  

You’d need to use a custom query such as:

<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args= array(
	'cat' => -4,
	'paged' => $paged
);
query_posts($args);
?>

where 4 was the id of the catgeory you wanted to exclude.

http://codex.wordpress.org/Template_Tags/query_posts#Category_Parameters

Be Sociable, Share!
Share

Comments

Facebook comments:

Feel free to leave a comment...
and oh, if you want a pic to show with your comment, go get a gravatar!





*
Bottom