thanks, i’ve changed the wp-content folder and ensure wp-config is the original file.
my home page threw error
“Call to undefined function wp() in /home/a8215473/public_html/wp-blog-header.php on line 14”
the content of wp-blog-header file is :
<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/
if ( !isset($wp_did_header) ) {
$wp_did_header = true;
require_once( dirname(__FILE__) . ‘/wp-load.php’ );
wp();
require_once( ABSPATH . WPINC . ‘/template-loader.php’ );
}
How do I check for error? thanks