Site logo

[Resolved] Display only automatic excerpts in author archives

Home Forums Support [Resolved] Display only automatic excerpts in author archives

Home Forums Support Display only automatic excerpts in author archives

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2399808
    George

    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?

    #2399938
    David
    Staff
    Customer Support

    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' );
    #2399983
    George

    Seems fine, thanks, David!

    #2399997
    David
    Staff
    Customer Support

    You’re welcome

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.