是否有必要检查是否安装了博客? 时间:2016-01-05 作者:Ivan Topić 我的Wordpress网站变得有点慢,没有响应,所以我正在尝试通过消除不必要的数据库查询和其他事情来加速它。我无意中发现了在https://yoast.com/wordpress-performance-optimization 其中说明函数is_blog_installed 在运行站点上是无用的。https://codex.wordpress.org/Function_Reference/is_blog_installed 这篇文章的评论来自2009年。我们现在或将来能安全地移除它而不损坏任何东西吗? 1. open up wp-includes/functions.php 2. find the function is_blog_installed() 3. add return true; as the first line of the function 1 个回复 SO网友:Jurgen Oldenburg 你可以,但我永远不会弄乱核心文件。除此之外,我不认为is\\u blog\\u installed()函数会导致您的站点没有响应。首先尝试禁用所有插件,并将主题设置为默认主题之一。更新你的网站、插件和主题也会对你有所帮助。尽量缩小你的问题范围。我怀疑它要么在主题中,要么在插件中。 文章导航