[Resolved] Homepage Categories

Home Forums Support [Resolved] Homepage Categories

Home Forums Support Homepage Categories

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1133159
    Mustafa

    Hi,
    How can i select the posts of specific categories to show on the Home page?

    #1133171
    Leo
    Staff
    Customer Support

    Hi there,

    A plugin like WP Show Posts is your best bet:
    https://generatepress.com/forums/topic/posts-from-multiple-categories-on-the-homepage/

    #1133198
    Mustafa

    Hi Leo,
    I found the following solution recently,
    You can add this code to GeneratePress function.php
    You need to change -34 and -35 according to your category id, that you do not want to show on the front page.

    add_filter('pre_get_posts', 'excludeCat');
    
    function excludeCat($query) {
          if ( $query->is_home ) {
                $query->set('cat', '-34,-35');
          }
          return $query;
    }
    #1133275
    Leo
    Staff
    Customer Support

    Yup that’d work too.

    Make sure you are using the child theme’s function.php otherwise the code will be erased during updates.

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