How can show full post in specific categories

Home Forums Support How can show full post in specific categories

Home Forums Support How can show full post in specific categories

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #179112
    Maegan Shelley

    I am using generate Press for my website.
    I am use show excerpt in blog post content in my home page.

    but I want to show full post content in specific categories or menus.

    How can I do this?
    please help me.

    #179221
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    You can use a filter for this.

    For example, if your category name was “My Category”:

    add_filter( 'generate_show_excerpt','generate_show_excerpt_categories' );
    function generate_show_excerpt_categories( $show_excerpt )
    {
        if ( is_category( 'My Category' ) ) {
            return true;
        }
    
        return $show_excerpt;
    }

    Adding PHP: https://generatepress.com/knowledgebase/adding-php-functions/

    Let me know if you need more info 🙂

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