Archived topic
Display only automatic excerpts in author archives
3 replies · Started by George on November 3, 2022
Viewing posts 1–4 of 4
I have a GP content template for my author archives and use a headline dynamic element for the excerpt. Is it possible to only show automatic excerpts for all archive posts even when there are custom excerpts set for certain posts?
Hi George,
i would probably stick to a shortcode for that:
function db_post_excerpt() {
return wp_trim_excerpt();
}
add_shortcode( 'post-excerpt','db_post_excerpt' );
Seems fine, thanks, David!
You're welcome
This archived topic is closed to new replies.