PluginProbe
UpStream: a Project Management Plugin for WordPress / trunk
UpStream: a Project Management Plugin for WordPress vtrunk
trunk 1.39.0 1.39.1 1.39.2 1.39.3 2.0.7 2.1.0
upstream / templates / global / header.php

header.php in UpStream: a Project Management Plugin for WordPress trunk, at templates/global/header.php

36 lines 1018 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Header template
4 *
5 * @package UpStream
6 */
7
8 if ( ! defined( 'ABSPATH' ) ) {
9 exit;
10 }
11
12 add_action( 'wp_enqueue_scripts', 'upstream_perform_aggressive_dequeue', 99999999 );
13
14 ?>
15
16 <!DOCTYPE html>
17 <html <?php language_attributes(); ?>>
18 <head>
19 <meta charset="<?php bloginfo( 'charset' ); ?>">
20 <meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo( 'charset' ); ?>">
21 <meta http-equiv="X-UA-Compatible" content="IE=edge">
22 <meta name="viewport" content="width=device-width, initial-scale=1">
23 <meta name="robots" content="noindex, nofollow">
24
25 <title><?php wp_title( '|', true, 'right' ) . esc_html( bloginfo( 'name' ) ); ?></title>
26
27 <link rel="profile" href="http://gmpg.org/xfn/11">
28
29 <?php wp_head(); ?>
30 <?php do_action( 'upstream_head' ); ?>
31 </head>
32 <body <?php body_class( array( 'nav-md', 'upstream-front-end' ) ); ?>">
33 <div class="container body">
34 <div class="main_container">
35 <?php do_action( 'upstream_frontend_header_before_content' ); ?>
36