How can I make the WordPress “excerpt” appear in the “Subtitle” field?

Posted in: Newspaper
Post count: 1

Hi, I have an issue with the NewsPaper theme in WordPress. The excerpts of my posts are in the “Extract” field, but I can’t make that content show up automatically below the titles. Instead, the theme gives me the option of using “Subtitle.”

I want to keep the content in the “Extract” field and need to know how to link it so that it automatically appears in the “Subtitle” field of my posts. Can you help me with this?

Post count: 35449

Hi,
I think that you want to add the excerpt inside the post, if is so, then you need to use a shortcode since this element doesn’t exist in our builder:
The shortcode can be get from here:
https://wordpress.stackexchange.com/questions/336420/retrieving-post-excerpt-as-a-shortcode

add_shortcode( 'output_post_excerpt', 'get_the_excerpt' );

And it can be set in a child theme in functions.php the use the shortcode [output_post_excerpt]
to display the excerpt, this can be set on the single post template using tagDiv Composer in “Single External Shortcode” or text with title/column text elements.

I just tested and is working – https://i.imgur.com/qz1Zi42.pnghttps://i.imgur.com/7StOLec.pnghttps://i.imgur.com/Gtb8EdI.png”

Thank you!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.