To stylize WP_Error messages or not?

Personally I prefer to put all errors in a debug.log file using error_log and it would be readable enough as it includes break lines automatically. I think not all the errors should be visible for clients. In case that I need to show an error to the user, I check the error type and I … Read more

“Welcome to WordPress” Plugin Required Error

I found a file called install.php at /wp-content/ directory which contained the line causing the issue: defined( ‘WTWP__INSTALL_PLUGIN_PATH’ ) or define( ‘WTWP__INSTALL_PLUGIN_PATH’, ‘welcome-to-wordpress/welcome-to-wordpress.php’ ); Upon deleting the file, I was able to resolve the issue. This is most probably a file that was placed by a hosting provider by default long with a plugin that … Read more