Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/www/curators/wp-content/plugins/pofo-addons/loop/ |
Upload File : |
<?php
/**
* displaying featured image for blog
*
* @package Pofo
*/
?>
<?php
global $pofo_srcset;
/* Image Alt, Title, Caption */
$pofo_img_alt = pofo_option_image_alt(get_post_thumbnail_id());
$pofo_img_title = pofo_option_image_title(get_post_thumbnail_id());
$pofo_image_alt = ( isset($pofo_img_alt['alt']) && ! empty($pofo_img_alt['alt']) ) ? $pofo_img_alt['alt'] : '' ;
$pofo_image_title = ( isset($pofo_img_title['title']) && ! empty($pofo_img_title['title']) ) ? $pofo_img_title['title'] : '';
$pofo_img_attr = array(
'title' => $pofo_image_title,
'alt' => $pofo_image_alt,
);
echo '<div class="blog-image"><a href="'.get_permalink().'">';
if ( has_post_thumbnail() ) {
echo get_the_post_thumbnail( get_the_ID(), $pofo_srcset,$pofo_img_attr );
}
echo '</a></div>';
?>