Site logo

Archived topic

How can show full post in specific categories

1 reply · Started by Anonymous on March 14, 2016

Viewing posts 1–2 of 2

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.

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 :)

This archived topic is closed to new replies.