StoreMyPic
Member
Posted 4 months ago #
That is currently controlled by this code
<?php
$cat = get_query_var('cat');
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts('showposts=20&paged=' . $paged .'&cat='.$cat);
$wp_query->is_archive = true; $wp_query->is_home = false;
?>
Thanks
Hi,
Refer this article which will help you to setup exclude/include category..
http://codex.wordpress.org/Template_Tags/wp_list_categories#Include_or_Exclude_Categories
Thanks,
Shane G.
StoreMyPic
Member
Posted 4 months ago #
Thanks Shane
But its not working