Server IP : 162.213.251.208 / Your IP : 18.220.116.195 Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : jmoroovq ( 1890) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/jmoroovq/expressmedicalbillingservices.com/wp-content/plugins/bdthemes-element-pack/modules/testimonial-carousel/skins/ |
Upload File : |
<?php namespace ElementPack\Modules\TestimonialCarousel\Skins; use Elementor\Skin_Base as Elementor_Skin_Base; if (!defined('ABSPATH')) exit; // Exit if accessed directly class Skin_Twyla extends Elementor_Skin_Base { public function get_id() { return 'bdt-twyla'; } public function get_title() { return __('Twyla', 'bdthemes-element-pack'); } public function render() { $settings = $this->parent->get_settings(); // TODO need to delete after v6.5 if (isset($settings['posts']) and $settings['posts_per_page'] == 10) { $limit = $settings['posts']; } else { $limit = $settings['posts_per_page']; } $wp_query = $this->parent->render_query($limit); if ($wp_query->have_posts()) : ?> <?php $this->parent->render_header('twyla'); ?> <?php while ($wp_query->have_posts()) : $wp_query->the_post(); ?> <div class="swiper-slide bdt-testimonial-carousel-item"> <div class="bdt-testimonial-carousel-item-wrapper"> <div class="testimonial-item-header"> <?php $this->parent->render_image(get_the_ID()); ?> </div> <?php $this->parent->render_excerpt(); ?> <div class="bdt-testimonial-meta <?php echo ($settings['meta_multi_line']) ? '' : 'bdt-meta-multi-line'; ?>"> <?php $this->parent->render_title(get_the_ID()); $this->parent->render_address(get_the_ID()); ?> </div> <?php if (($settings['show_rating']) && ($settings['show_text'])) : ?> <div class="bdt-testimonial-carousel-rating bdt-display-inline-block"> <?php $this->parent->render_rating(get_the_ID()); ?> </div> <?php endif; ?> </div> </div> <?php endwhile; wp_reset_postdata(); ?> <?php $this->parent->render_footer(); endif; } }