| Server IP : 146.59.209.152 / Your IP : 216.73.216.152 Web Server : Apache System : Linux webm009.cluster131.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 : monpetu ( 144298) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/monpetu/www/leoreno.fr/wp-content/themes/buildexo/templates/blog-single/ |
Upload File : |
<?php
/**
* Single Image File.
*
* @package TURNER
* @author ThemeXriver
* @version 1.0
*/
?>
<?php
if ( class_exists( 'Turner_Resizer' ) ) {
$img_obj = new Turner_Resizer();
}
$width = $data->get( 'sidebar' ) ? '769' : '1170';
$allowed_html = wp_kses_allowed_html( 'post' );
?>
<div class="single-avatar singlee">
<?php if ( class_exists( 'Turner_Resizer' ) ) : ?>
<?php echo wp_kses( $img_obj->resize( wp_get_attachment_url( get_post_thumbnail_id( get_the_ID() ), 'full' ), $width, 460, true ), $allowed_html ); ?>
<?php else : ?>
<?php the_post_thumbnail( 'full' ); ?>
<?php endif; ?>
<?php if ( $options->get( 'small_image' ) && has_post_thumbnail() ) : ?>
<span><?php echo get_avatar( get_the_author_meta( 'ID' ), 41 ); ?></span>
<?php endif; ?>
</div>