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 |