Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

QUESTION

Hey guys, I have this function and I need to exclude 2 categories: 81 and 82. Can You help? :)

CODE

function has_related_same_cat_posts(){
global $post;
$categories = get_the_category($post->ID);

if ($categories) {
    $category_ids = array();
    foreach($categories as $individual_category) 
        $category_ids[] = $individual_category->term_id;

    $args=array(
    'category__in' => $category_ids,
    'post__not_in' => array($post->ID),
    'posts_per_page'=> 4, // Number of related posts that will be shown.
    'caller_get_posts'=>1,
    'orderby' => 'rand',

    );

    $my_query = new wp_query( $args );
    if( $my_query->have_posts() ) {
        $return = true;
    } else {
        $return = false;
    }

}

return $return;
}
share|improve this question

1 Answer

foreach($categories as $individual_category) {
if( $individual_category->term_id == 81 || $individual_category->term_id == 82 ) continue; $category_ids[] = $individual_category->term_id; }

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.