header.php (910B)
1 <?php 2 /** 3 * The header for our theme 4 * 5 * This is the template that displays all of the <head> section and everything up until <div id="content"> 6 * 7 * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials 8 * 9 * @package welbim 10 */ 11 $preloader_on_off = welbim_get_options( 'preloader_on_off' ); 12 ?> 13 <!doctype html> 14 <html <?php language_attributes(); ?>> 15 <head> 16 <meta charset="<?php bloginfo( 'charset' ); ?>"> 17 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 18 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> 19 <?php wp_head(); ?> 20 </head> 21 22 <!-- page wrapper --> 23 24 <body <?php body_class(); ?>> 25 <?php wp_body_open(); ?> 26 <div class="boxed_wrapper"> 27 <?php 28 do_action( 'welbim_preloader' ); 29 get_template_part( 'components/header/header' ); 30 do_action( 'welbim_mobile_menu' ); 31 do_action( 'welbim_breadcrumb' ); 32 ?>