first commit
This commit is contained in:
19
wp-content/themes/thinkai/tpl-default-elementor.php
Normal file
19
wp-content/themes/thinkai/tpl-default-elementor.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
/* Template Name: Default Elementor Page */
|
||||
/**
|
||||
* @package THINKAI
|
||||
* @author TonaTheme
|
||||
* @version 1.0
|
||||
*/
|
||||
?>
|
||||
<?php
|
||||
get_header();
|
||||
$data = \THINKAI\Includes\Classes\Common::instance()->data( 'single' )->get();
|
||||
$layout = $data->get('layout') ? $data->get('layout') : 'right';
|
||||
$class = ( $data->get( 'layout' ) != 'full' ) ? 'col-lg-8 col-sm-12' : 'col-xs-12 col-sm-12 col-md-12';
|
||||
do_action( 'thinkai_banner', $data );
|
||||
?>
|
||||
<?php while ( have_posts() ): the_post(); ?>
|
||||
<?php the_content(); ?>
|
||||
<?php endwhile; ?>
|
||||
<?php get_footer(); ?>
|
||||
Reference in New Issue
Block a user