新着情報

function exclude_category( $query ) { if ( $query->is_home() && $query->is_main_query() ) { $query->set( 'cat', '-8' ); // 除外するカテゴリIDを指定 } } add_action( 'pre_get_posts', 'exclude_category' );