Only one category on Front Page
-
Hello,
how can I display only one category on Front page?I tried to add function in functions.php –
function my_home_category( $query ) { if ( $query->is_home() && $query->is_main_query() ) { $query->set( 'cat', '3'); } } add_action( 'pre_get_posts', 'my_home_category' );
but nothing… it doesn’t works.
any ideas?Thanks
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Only one category on Front Page’ is closed to new replies.