Archived topic
Remove Entry Content From Category Pages
17 replies · Started by Carson on June 8, 2019
Viewing posts 16–18 of 18
Try this:
add_filter( 'wp_trim_excerpt', 'db_excerpt_metabox_remove' );
function db_excerpt_metabox_remove( $excerpt ) {
$output = $excerpt;
if ( is_archive() || is_home() && has_excerpt() ) {
$output = '';
}
return $output;
}
add_filter( 'generate_show_excerpt', function( $show ) {
if ( is_archive() || is_home() ) {
$show = true;
}
return $show;
} );
Amazing, thanks a lot!
No problem :)
This archived topic is closed to new replies.