Tagged: featured image caption
Hi,
how can i add the featured image caption also in my homepage (http://www.agenziagiornalisticaopinione.it/) ?
Now it’s shown only for single post but i would like to have it also in homepage.
I understood that i need to change this line
————————————————————–
$output .= $thumbnail ? “{$thumbnail}” : “”;
————————————————————–
in my postslider.php to show it inside the title but I’m not able to make it work.
Please help me.
Thanks a million.
Hey belugatinu1!
Thank you for using Enfold.
In the postslider.php file, look for this line:
$output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : "";
Below, add this code:
$description = get_post(get_post_thumbnail_id())->post_excerpt;
if( !empty( $description ) ) {
$output .= '<div class="slide_entry_featured_caption">' . $description . '</div>';
}
Cheers!
Ismael