PHP Classes

File: wordpress/wp-blog-header.php

Recommend this page to a friend!
  Classes of Faris AL-Otabi   WordPress Docker Swarm   wordpress/wp-blog-header.php   Download  
File: wordpress/wp-blog-header.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: WordPress Docker Swarm
Deploy WordPress to multiple containers
Author: By
Last change:
Date: 20 days ago
Size: 351 bytes
 

Contents

Class file image Download
<?php
/**
 * Loads the WordPress environment and template.
 *
 * @package WordPress
 */

if ( ! isset( $wp_did_header ) ) {

   
$wp_did_header = true;

   
// Load the WordPress library.
   
require_once __DIR__ . '/wp-load.php';

   
// Set up the WordPress query.
   
wp();

   
// Load the theme template.
   
require_once ABSPATH . WPINC . '/template-loader.php';

}