Site logo

Archived topic

How can i only show posts from 1 category on homepage?

1 reply · Started by Daniel on November 19, 2022

Viewing posts 1–2 of 2

Are there any settings that I can change?

Hi there,

you can use a PHP Snippet like so:


add_action ('pre_get_posts', function($query) {
    if ( $query->is_home() && $query->is_main_query() ) {
        $query->set( 'cat', '66');
    }
});

Change the 66 to the ID of the category you want to display.

Adding PHP:
https://docs.generatepress.com/article/adding-php/

This archived topic is closed to new replies.