| Server IP : 77.39.210.126 / Your IP : 216.73.216.203 Web Server : Apache System : Linux v00l0v-vmpcnews.sphostserver.com 4.18.0-553.124.4.el8_10.x86_64 #1 SMP Fri May 15 04:14:14 EDT 2026 x86_64 User : artecasarepresti ( 1022) PHP Version : 7.4.33 Disable Function : dl,passthru,proc_open,proc_close,proc_terminate,shell_exec,system MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/artecasarepresti/www/wp-content/themes/Avada/templates/ |
Upload File : |
<?php
/**
* Featured images for single post.
*
* @package Avada
* @subpackage Templates
*/
// Do not allow directly accessing this file.
if ( ! defined( 'ABSPATH' ) ) {
exit( 'Direct script access denied.' );
}
?>
<?php if ( ! post_password_required( get_the_ID() ) ) : ?>
<?php if ( Avada()->settings->get( 'featured_images_single' ) ) : ?>
<?php $video = apply_filters( 'privacy_iframe_embed', get_post_meta( get_the_ID(), 'pyre_video', true ) ); ?>
<?php if ( 0 < avada_number_of_featured_images() || $video ) : ?>
<?php
Avada()->get_images_obj()->set_grid_image_meta(
[
'layout' => strtolower( 'large' ),
'columns' => '1',
]
);
?>
<div class="fusion-flexslider flexslider fusion-flexslider-loading post-slideshow fusion-post-slideshow">
<ul class="slides">
<?php if ( $video ) : ?>
<li>
<div class="full-video">
<?php echo $video; // phpcs:ignore WordPress.Security.EscapeOutput ?>
</div>
</li>
<?php endif; ?>
<?php if ( has_post_thumbnail() && 'yes' !== get_post_meta( get_the_ID(), 'pyre_show_first_featured_image', true ) ) : ?>
<li>
<?php if ( Avada()->settings->get( 'status_lightbox' ) && Avada()->settings->get( 'status_lightbox_single' ) ) : ?>
<?php $attachment_data = Avada()->get_images_obj()->get_attachment_data( get_post_thumbnail_id() ); ?>
<?php if ( is_array( $attachment_data ) ) : ?>
<a href="<?php echo esc_url_raw( $attachment_data['url'] ); ?>" data-rel="iLightbox[gallery<?php the_ID(); ?>]" title="<?php echo esc_attr( $attachment_data['caption_attribute'] ); ?>" data-title="<?php echo esc_attr( $attachment_data['title_attribute'] ); ?>" data-caption="<?php echo esc_attr( $attachment_data['caption_attribute'] ); ?>" aria-label="<?php echo esc_attr( $attachment_data['title_attribute'] ); ?>">
<span class="screen-reader-text"><?php esc_attr_e( 'View Larger Image', 'Avada' ); ?></span>
<?php echo get_the_post_thumbnail( get_the_ID(), 'full' ); ?>
</a>
<?php else : ?>
<?php echo get_the_post_thumbnail( get_the_ID(), 'full' ); ?>
<?php endif; ?>
<?php else : ?>
<?php echo get_the_post_thumbnail( get_the_ID(), 'full' ); ?>
<?php endif; ?>
</li>
<?php endif; ?>
<?php $i = 2; ?>
<?php while ( $i <= Avada()->settings->get( 'posts_slideshow_number' ) ) : ?>
<?php $attachment_new_id = fusion_get_featured_image_id( 'featured-image-' . $i, 'post' ); ?>
<?php if ( $attachment_new_id ) : ?>
<li>
<?php if ( Avada()->settings->get( 'status_lightbox' ) && Avada()->settings->get( 'status_lightbox_single' ) ) : ?>
<?php $attachment_data = Avada()->get_images_obj()->get_attachment_data( $attachment_new_id ); ?>
<?php if ( is_array( $attachment_data ) ) : ?>
<a href="<?php echo esc_url_raw( $attachment_data['url'] ); ?>" data-rel="iLightbox[gallery<?php the_ID(); ?>]" title="<?php echo esc_attr( $attachment_data['caption_attribute'] ); ?>" data-title="<?php echo esc_attr( $attachment_data['title_attribute'] ); ?>" data-caption="<?php echo esc_attr( $attachment_data['caption_attribute'] ); ?>" aria-label="<?php echo esc_attr( $attachment_data['title_attribute'] ); ?>">
<?php echo wp_get_attachment_image( $attachment_new_id, 'full' ); ?>
</a>
<?php else : ?>
<?php echo wp_get_attachment_image( $attachment_new_id, 'full' ); ?>
<?php endif; ?>
<?php else : ?>
<?php echo wp_get_attachment_image( $attachment_new_id, 'full' ); ?>
<?php endif; ?>
</li>
<?php endif; ?>
<?php $i++; ?>
<?php endwhile; ?>
</ul>
</div>
<?php Avada()->get_images_obj()->set_grid_image_meta( [] ); ?>
<?php endif; ?>
<?php endif; ?>
<?php endif; ?>