My WordPress site has become kinda slow and unresponsive, so I am trying what can I do to speed it up by eliminating unnecessary database queries and other things.
I stumbled across suggestion found at https://yoast.com/wordpress-performance-optimization where it says that the function is_blog_installed
is useless on running site. https://codex.wordpress.org/Function_Reference/is_blog_installed The comments on article are from 2009. Can we safely remove it without breaking anything now or in the future?
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