PluginProbe ʕ •ᴥ•ʔ
Spider Elements – Premium Elementor Widgets & Addons Library / 1.5.0
Spider Elements – Premium Elementor Widgets & Addons Library v1.5.0
trunk 1.0.0 1.1.0 1.5.0 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.7.0 1.8.0 1.9.0
spider-elements / includes / classes / theme-builder / header.php
spider-elements / includes / classes / theme-builder Last commit date
assets 1 year ago footer.php 1 year ago header.php 1 year ago modal-editor.php 1 year ago
header.php
19 lines
1 <!doctype html>
2 <html <?php language_attributes(); ?>>
3 <head>
4 <meta charset="<?php bloginfo('charset'); ?>">
5 <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
6 <meta http-equiv="X-UA-Compatible" content="ie=edge">
7 <?php wp_head(); ?>
8 </head>
9 <body <?php body_class(); ?>>
10
11 <div class="spel-header-builder">
12 <?php
13 $active_header_template_id = get_option('active_spel_header_template_id');
14 if ($active_header_template_id) {
15 echo \Elementor\Plugin::instance()->frontend->get_builder_content_for_display($active_header_template_id);
16 }
17 ?>
18 </div>
19