wp/wp-blog-header.php
changeset 16 a86126ab1dd4
parent 9 177826044cd9
equal deleted inserted replaced
15:3d4e9c994f10 16:a86126ab1dd4
     8 if ( ! isset( $wp_did_header ) ) {
     8 if ( ! isset( $wp_did_header ) ) {
     9 
     9 
    10 	$wp_did_header = true;
    10 	$wp_did_header = true;
    11 
    11 
    12 	// Load the WordPress library.
    12 	// Load the WordPress library.
    13 	require_once( dirname( __FILE__ ) . '/wp-load.php' );
    13 	require_once __DIR__ . '/wp-load.php';
    14 
    14 
    15 	// Set up the WordPress query.
    15 	// Set up the WordPress query.
    16 	wp();
    16 	wp();
    17 
    17 
    18 	// Load the theme template.
    18 	// Load the theme template.
    19 	require_once( ABSPATH . WPINC . '/template-loader.php' );
    19 	require_once ABSPATH . WPINC . '/template-loader.php';
    20 
    20 
    21 }
    21 }