Site logo

Archived topic

Caption on featured images on blog pages

1 reply · Started by Deurdweilers on October 30, 2020

Viewing posts 1–2 of 2

Hi there,

try this snippet instead:

add_action( 'post_thumbnail_html', 'tu_custom_byline', 10 );
function tu_custom_byline( $html ) {

    $html .= '<div class="wp-caption">Your Caption Here</div>';
	
    return $html;
}
This archived topic is closed to new replies.