Site logo

Archived topic

Video format

5 replies · Started by Anna on May 24, 2020

Viewing posts 1–6 of 6

Hi there,

Try this PHP snippet:

add_filter( 'generate_show_excerpt', function( $show ) {
    if ( 'video' === get_post_format() ) {
        return true;
    }

    return $show;
} );

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

Let me know if this helps :)

Thanks. Maybe you have some guide how exactly I can put PHP snippets?

Thanks.

Thanks

No problem :)

This archived topic is closed to new replies.