aboutsummaryrefslogtreecommitdiff
path: root/srcs/wordpress/wp-blog-header.php
diff options
context:
space:
mode:
Diffstat (limited to 'srcs/wordpress/wp-blog-header.php')
-rw-r--r--srcs/wordpress/wp-blog-header.php21
1 files changed, 0 insertions, 21 deletions
diff --git a/srcs/wordpress/wp-blog-header.php b/srcs/wordpress/wp-blog-header.php
deleted file mode 100644
index a8b1efc..0000000
--- a/srcs/wordpress/wp-blog-header.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-/**
- * Loads the WordPress environment and template.
- *
- * @package WordPress
- */
-
-if ( ! isset( $wp_did_header ) ) {
-
- $wp_did_header = true;
-
- // Load the WordPress library.
- require_once( dirname( __FILE__ ) . '/wp-load.php' );
-
- // Set up the WordPress query.
- wp();
-
- // Load the theme template.
- require_once( ABSPATH . WPINC . '/template-loader.php' );
-
-}