在 Plugin 中利用 pre_get_posts 排除分類文章
用法:
/** v123 DEV https://v123.tw */ function exclude_category( $query ) { $query->set( 'cat', '-37,-25' ); } add_action( 'pre_get_posts', 'exclude_category' );
/** v123 DEV https://v123.tw */ function exclude_category( $query ) { if ( $query->is_home() && $query->is_main_query() ) { $query->set( 'cat', '-6' ); } } add_action( 'pre_get_posts', 'exclude_category' );