kollapsminoriteten/wp-blog-header.php

22 lines
351 B
PHP
Raw Permalink Normal View History

2019-11-02 10:38:58 +01:00
<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/
if ( ! isset( $wp_did_header ) ) {
$wp_did_header = true;
// Load the WordPress library.
2020-05-06 17:23:38 +02:00
require_once __DIR__ . '/wp-load.php';
2019-11-02 10:38:58 +01:00
// Set up the WordPress query.
wp();
// Load the theme template.
2020-05-06 17:23:38 +02:00
require_once ABSPATH . WPINC . '/template-loader.php';
2019-11-02 10:38:58 +01:00
}