Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #736150

    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.

    #737688

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.