Site logo

[Support request] How can i only show posts from 1 category on homepage?

Home Forums Support [Support request] How can i only show posts from 1 category on homepage?

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

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #2423526
    Daniel

    Are there any settings that I can change?

    #2423931
    David
    Staff
    Customer Support

    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/

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.