How would I fix this? I don’t know what this means and have never had this happen with any of my other websites. Is there a particular line of code that I need to add to the wp-blog-header.php file, and if so do you know what that would be?
The file currently reads as follows:
<?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’;
}
-
This reply was modified 5 years, 7 months ago by theangiechu.