PluginProbe
Templately – Elementor & Gutenberg Template Library: 6500+ Free & Pro Ready Templates And Cloud! / 3.6.4
Templately – Elementor & Gutenberg Template Library: 6500+ Free & Pro Ready Templates And Cloud! v3.6.4
3.7.5 3.7.4 3.7.3 3.7.2 1-final 3.7.1 3.7.0 3.6.8 3.6.7 3.6.6 3.6.5 3.6.4 3.6.3 3.6.2 3.6.1 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.10 All 111 releases
templately / views / templates / header.php

header.php in Templately – Elementor & Gutenberg Template Library: 6500+ Free & Pro Ready Templates And Cloud! 3.6.4, at views/templates/header.php

36 lines 821 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * @package Templately
4 * @since 3.0.0
5 */
6 ?>
7 <!DOCTYPE html>
8 <html <?php language_attributes(); ?>>
9 <head>
10 <meta charset="<?php bloginfo( 'charset' ); ?>"/>
11 <meta name="viewport" content="width=device-width, initial-scale=1"/>
12 <link rel="profile" href="<?php echo is_ssl() ? 'https://' : 'http://'; ?>gmpg.org/xfn/11"/>
13 <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"/>
14 <?php wp_head(); ?>
15 </head>
16 <body <?php body_class(); ?>>
17 <?php
18 /**
19 * WP Defaults
20 */
21 do_action( 'wp_body_open' );
22
23 /**
24 * Header Template Actions For Templately
25 */
26 do_action( 'templately_builder_header_before' );
27 do_action( 'templately_builder_header' );
28
29 /**
30 * Print Headers if needed.
31 */
32 templately()->theme_builder::$location_manager->do_location( 'header' );
33
34
35 do_action( 'templately_builder_header_after' );
36