Your IP : 18.222.227.24


Current Path : /home/ephorei/www/
Upload File :
Current File : /home/ephorei/www/wp-blog-header.php

<?php
/**
 * Loads the WordPress environment and template.
 *
 * @package WordPress
 */

/**
 * Tells WordPress to load the WordPress environment and template.
 *
 * @var bool
 */
if ( ! isset( $wp_did_header ) ) {
    $wp_did_header = true;

    /** Load the WordPress environment and template functions */
    require __DIR__ . '/wp-load.php';

    /**
     * Fires once WordPress is loaded.
     *
     * @since 2.1.0
     */
    do_action( 'wp_loaded' );
}

/**
 * If themes aren’t to be used, just bail now.
 * WP_USE_THEMES is defined in index.php before requiring this file.
 */
if ( ! defined( 'WP_USE_THEMES' ) || true !== WP_USE_THEMES ) {
    return;
}

/**
 * Load the template-loader which will determine which template file to use
 * (index, single, archive, etc.) based on the query.
 */
require ABSPATH . WPINC . '/template-loader.php';