Hi,
I
Unfortunalty Clique is not as advanced as our newer themes and does not currently have this level of customisation that our new themes do.
You need to edit the core theme files:
Inside: /themes/clique/includes/sf-functions.php
locate this:
$portfolio_args=array(
'post_type' => 'portfolio',
'post_status' => 'publish',
'paged' => $page,
'portfolio-category' => $category_slug,
'posts_per_page' => $item_count
);
$portfolio_items = new WP_Query( $portfolio_args );
You can use the WP_Query parameter to exclude certain categories by their ID prefixed with a minus -
, ex: 'cat' => '-2,-6,-17,-38'
. Ex:
$portfolio_args=array(
'post_type' => 'portfolio',
'post_status' => 'publish',
'paged' => $page,
'portfolio-category' => $category_slug,
'posts_per_page' => $item_count,
'cat' => '-2,-6,-17,-38'
);
$portfolio_items = new WP_Query( $portfolio_args );
Thanks,
David.