-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhead.php
More file actions
executable file
·29 lines (19 loc) · 1015 Bytes
/
head.php
File metadata and controls
executable file
·29 lines (19 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php global $post; ?>
<?php wpbp_before_html(); ?>
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" <?php language_attributes(); ?>> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" <?php language_attributes(); ?>> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" <?php language_attributes(); ?>> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" <?php language_attributes(); ?>> <!--<![endif]-->
<head>
<?php wpbp_head_inside_before(); ?>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<?php if ( in_array( wpbp_get_option( 'responsive' ), array( 'responsive', 'mobile-responsive' ) ) ) : ?>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<?php endif; ?>
<title><?php wp_title( '' ); ?></title>
<?php wp_head(); ?>
<?php wpbp_head(); ?>
<?php wpbp_head_inside_after(); ?>
</head>
<body <?php body_class( array( isset($post) ? $post->post_name : null, wpbp_get_option( 'css_framework' ), wpbp_get_option( 'responsive' ) ) ); ?>>