Name: header.php
Path: devdmbootstrap4/header.php
Source: https://github.com/dannymachal/devdmbootstrap4/blob/master/header.php
Properly format the main opening header of our website for language, charset and the required Bootstrap 4 viewport meta tags. We are also executing wp_head().
This file is included on all major theme template files with the function get_header().
<!DOCTYPE html>
<html <?php language_attributes(); ?> class="no-js">
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php wp_head(); ?>
</head>
<body <?php body_class('dmbs-body'); ?>>