Server : Apache System : Linux server.lienzindia.com 4.18.0-348.7.1.el8_5.x86_64 #1 SMP Wed Dec 22 13:25:12 UTC 2021 x86_64 User : plutus ( 1007) PHP Version : 7.4.33 Disable Function : NONE Directory : /home/plutus/public_html/wp-content/themes/vrm/partials/overlays/ |
Upload File : |
<?php /** * Secondary Image Swap & Title. * * @package TotalTheme * @subpackage Partials * @version 5.3.1 */ defined( 'ABSPATH' ) || exit; // Only used for inside position. if ( 'inside_link' !== $position ) { return; } // Thumbnail required. if ( ! has_post_thumbnail() ) { return; } // Get secondary image. $secondary_image = wpex_get_secondary_thumbnail(); // Secondary image required. if ( ! $secondary_image ) { return; } ?> <div class="overlay-thumb-swap-secondary wpex-invisible wpex-opacity-0 wpex-absolute wpex-inset-0 wpex-z-1 wpex-overflow-hidden wpex-transition-all wpex-duration-500 wpex-flex wpex-items-center wpex-justify-center"> <?php if ( is_numeric( $secondary_image ) ) { echo wpex_get_post_thumbnail( array( 'attachment' => $secondary_image, 'width' => $args['img_width'] ?? '', 'height' => $args['img_height'] ?? '', 'crop' => $args['img_crop'] ?? '', 'alt' => $args['post_esc_title'] ?? '', 'size' => $args['img_size'] ?? '', ) ); } else { ?> <img src="<?php echo esc_url( $secondary_image ); ?>"> <?php } ?> <div class="overlay-thumb-swap-title wpex-absolute wpex-bottom-0 wpex-inset-x-0 wpex-text-white wpex-font-semibold wpex-text-center wpex-leading-snug wpex-py-30 wpex-px-20 wpex-text-lg"><span class="wpex-relative wpex-z-5"><?php echo esc_html( get_the_title() ); ?></span></div> </div>