Home › Forums › Pro Support › Excerpts under featured image › Reply To: Excerpts under featured image
February 9, 2019 at 9:31 pm
#7705
Keymaster
Hey John,
You can likely use the hooks for this.
For example, if you had a custom field for each post, you could output that field like this:
add_action( 'wpsp_before_content', function() {
$text = get_post_meta( get_the_ID(), 'your_custom_field', true );
if ( $text ) {
echo $text;
}
}, 20 );
Let me know 🙂