我有一个问题。
我在我的网站上工作,它使用Wordpress。 因为我正在研究它,所以我激活了维护插件。
我尝试集成一个简单的滑块,但它无法正常工作。 所以我尝试使用调试模式或其他东西......
首先我添加了“define('SCRIPT_DEBUG',true);”在我的wp-config.php的底部 在那之后不起作用我删除了那一行并添加了:
// Enable WP_DEBUG mode
define('WP_DEBUG', true);
// Enable Debug logging to the /wp-content/debug.log file
define('WP_DEBUG_LOG', true);
// Disable display of errors and warnings
define('WP_DEBUG_DISPLAY', false);
@ini_set('display_errors',0);
// Use dev versions of core JS and CSS files (only needed if you are modifying these core files)
define('SCRIPT_DEBUG', true);
我已经删除了wp-config.php文件中的所有内容。 在那方面没有什么不同。
但现在我看到一个白色的屏幕,没有加载任何代码。
我做错了什么?