我的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