Site logo

Archived topic

Display Post Excerpt (Summary) Single Post Header

1 reply · Started by Brandi on July 14, 2020

Viewing posts 1–2 of 2

I'm trying to change the individual post header to display as title / excerpt (summary) / meta.

Right now I have the following in the header element but none of my variations of {{entry-excerpt}} seem to be working.

Site is in development stage.

<h1>
{{post_title}}
</h1>`
{{entry-excerpt}}
<div class="post-meta">
{{post_date}} by {{post_author}}
</div>

Hi there,

You can build a simple shortcode which will output it for you:

add_shortcode( 'excerpt', function() {
    return get_the_excerpt();
} );

Then you can use [excerpt] in your header.

This archived topic is closed to new replies.