exclude category from the home page posts
-
i have a template download from https://www.dessign.com
this part of the index page exclude the category (‘illustration’) from the hom page posts.
<?php get_header(); ?>
<div class=”home_big_post_cont”>
<?php
$exclude_arr = array();
$category_ID = get_category_id(‘illustration’);
$args = array(
‘post_type’ => ‘post’,
‘cat’ => ‘-‘ . $category_ID,
‘posts_per_page’ => 3
);
query_posts($args);
$x = 0;
while (have_posts()) : the_post(); ?>How can I exclude also other categories? ex. (‘news’)
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘exclude category from the home page posts’ is closed to new replies.