Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter nhuanh

    (@nhuanh)

    ok, final i can do it. I wirte code in my funtion.php
    Funtions.php

    function exclude_category_home( $query ) {
    if ( $query->is_home ) {
    $query->set( ‘cat’, ‘-9 );
    // -9 is my ID Catalogie i want to hide content at homepage
    }
    return $query;
    }

    add_filter( ‘pre_get_posts’, ‘exclude_category_home’ );
    thanks all! regard

Viewing 1 replies (of 1 total)