Displaying certain categories on frontpage
-
Hello,
I have more than 300 categories on my site and I want to show only 30 of then on the frontpage. I tried to do this with the following code, but it doesn’t working.
function my_home_category( $query ) {
if ( $query->is_home() && $query->is_main_query() ) { $query->set( 'cat', '11'); } } add_action( 'pre_get_posts', 'my_home_category' );
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Displaying certain categories on frontpage’ is closed to new replies.