PATH:
home
/
lab2454c
/
mact34.com
/
wp-content
/
plugins
/
bdthemes-element-pack
/
modules
/
carousel
/
skins
<?php namespace ElementPack\Modules\Carousel\Skins; use Elementor\Skin_Base as Elementor_Skin_Base; use ElementPack\Utils; if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly class Skin_Vertical extends Elementor_Skin_Base { public function get_id() { return 'bdt-vertical'; } public function get_title() { return __( 'Vertical', 'bdthemes-element-pack' ); } public function render() { $this->parent->query_posts(); $wp_query = $this->parent->get_query(); if ( ! $wp_query->found_posts ) { return; } $this->parent->get_posts_tags(); $this->parent->render_header("vertical"); while ( $wp_query->have_posts() ) { $wp_query->the_post(); $this->render_post(); } $this->parent->render_footer(); wp_reset_postdata(); } public function render_post() { $this->parent->render_loop_header(); ?> <div class="bdt-carousel-layout-vertical"> <div class="bdt-grid bdt-grid-small" bdt-grid> <div class="bdt-width-1-2@m"> <?php $this->parent->render_thumbnail(); ?> </div> <div class="bdt-width-expand"> <?php $this->parent->render_overlay_header(); $this->parent->render_title(); $this->parent->render_meta_data(); $this->parent->render_excerpt(); $this->parent->render_readmore(); $this->parent->render_overlay_footer(); ?> </div> </div> </div> <?php $this->parent->render_post_footer(); } }
[-] skin-alice.php
[edit]
[+]
..
[-] skin-vertical.php
[edit]
[-] skin-ramble.php
[edit]