PluginProbe ʕ •ᴥ•ʔ
Essential Classy Addons for Elementor – 150+ Widgets, Templates & Performance Tools / 3.0.38
Essential Classy Addons for Elementor – 150+ Widgets, Templates & Performance Tools v3.0.38
3.0.59 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 3.0 3.0.1 3.0.10 3.0.11 3.0.12 3.0.13 3.0.14 3.0.15 3.0.16 3.0.18 3.0.2 3.0.20 3.0.21 3.0.22 3.0.23 3.0.24 3.0.25 3.0.26 3.0.27 3.0.28 3.0.29 3.0.3 3.0.30 3.0.31 3.0.32 3.0.33 3.0.34 3.0.35 3.0.36 3.0.37 3.0.38 3.0.39 3.0.4 3.0.40 3.0.41 3.0.42 3.0.43 3.0.44 3.0.45 3.0.46 3.0.47 3.0.48 3.0.49 3.0.5 3.0.50 3.0.51 3.0.52 3.0.53 3.0.54 3.0.55 3.0.56 3.0.57 3.0.58 3.0.6 3.0.7 3.0.8 3.0.9
essential-classy-addons-for-elementor / classes / builders / singular-canvas.php
essential-classy-addons-for-elementor / classes / builders Last commit date
singular-canvas.php 1 year ago singular-fullwidth.php 1 year ago theme-footer.php 1 year ago theme-header.php 1 year ago theme-template.php 1 year ago
singular-canvas.php
34 lines
1 <?php
2 /*
3 * Singular Canvas
4 */
5 if (!defined('ABSPATH')) {
6 exit; // Exit if accessed directly.
7 }
8 if(class_exists( '\Elementor\Plugin' )){
9 \Elementor\Plugin::$instance->frontend->add_body_class('elementor-template-canvas');
10 }
11
12 get_header();
13
14 if(class_exists( '\Elementor\Plugin' )){
15 $meta_viewport = \Elementor\Utils::get_meta_viewport('canvas');
16 $allowed_html = array(
17 'meta' => array(
18 'name' => array(),
19 'content' => array(),
20 ),
21 );
22 echo wp_kses($meta_viewport, $allowed_html);
23
24 do_action('elementor/page_templates/canvas/before_content');
25 }
26
27 do_action('ecafe_content_render');
28
29 if(class_exists( '\Elementor\Plugin' )){
30 do_action('elementor/page_templates/canvas/after_content');
31 }
32
33 get_footer();
34