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; if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly class Skin_Ramble extends Elementor_Skin_Base { public function get_id() { return 'bdt-ramble'; } public function get_title() { return __( 'Ramble', '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("ramble"); while ( $wp_query->have_posts() ) { $wp_query->the_post(); $this->parent->render_post(); } $this->parent->render_footer(); wp_reset_postdata(); } }
[-] skin-alice.php
[edit]
[+]
..
[-] skin-vertical.php
[edit]
[-] skin-ramble.php
[edit]