Archived topic
full posts showing instead of excerpts
16 replies · Started by BeeLady11 on August 6, 2018
Viewing posts 16–17 of 17
Is there any way of having the exerpt length to be set for posts that have a Post Format other than "Standard"?
Hi there,
this PHP snippet will do that:
add_filter( 'generate_show_excerpt', function( $show ) {
if ( 'standard' !== get_post_format() && ! $show ) {
return true;
}
return $show;
} );
This archived topic is closed to new replies.