Archived topic
Caption on featured images on blog pages
1 reply · Started by Deurdweilers on October 30, 2020
Hi there,
I implemented the 'caption solution' as mentioned in #1506029 on https://generatepress.com/forums/topic/display-image-caption-on-the-featured-image/
How can I get the same on the blog overview page?
I use the 'caption' to show a coloured bar below the featured image on the single post:
https://www.deurdweilers.nl/vol-gas-het-jaar-2020-in/
I want the same on the news overview page:
https://www.deurdweilers.nl/nieuws/
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;
}