~canonical-sysadmins/wordpress/4.7.4

« back to all changes in this revision

Viewing changes to wp-blog-header.php

  • Committer: Jacek Nykis
  • Date: 2015-01-05 16:17:05 UTC
  • Revision ID: jacek.nykis@canonical.com-20150105161705-w544l1h5mcg7u4w9
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
 * Loads the WordPress environment and template.
 
4
 *
 
5
 * @package WordPress
 
6
 */
 
7
 
 
8
if ( !isset($wp_did_header) ) {
 
9
 
 
10
        $wp_did_header = true;
 
11
 
 
12
        require_once( dirname(__FILE__) . '/wp-load.php' );
 
13
 
 
14
        wp();
 
15
 
 
16
        require_once( ABSPATH . WPINC . '/template-loader.php' );
 
17
 
 
18
}