Archived topic
Video format
5 replies · Started by Anna on May 24, 2020
Hello. I was create category for publishing YouTube video. https://shpargalka.work/vidosiki/ When send new post (choice type format: video).
1. How I can add “read more” https://shpargalka.work/vidosiki/
How like here https://shpargalka.work/rabota/?
Tanks.
Best Regards
Alena
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.
See the Adding PHP link I've provided above:
https://generatepress.com/forums/topic/video-format/#post-1299496
Thanks
No problem :)