WordPress security tips 1
<?php
//To change secret key prsent in wp-config.php
//https://api.wordpress.org/secret-key/1.1/salt/
//Disabling Front-End Error Logging
define('WP_DEBUG_DISPLAY', false);
//Turning Off Debugging
define('WP_DEBUG', false);
//Move the wp-config.php File --> in new wp-config.php
//put this in the root wp-config file.
define('ABSPATH', dirname__FILE__) ;
require_once ABSPATH . '../path/to/wp-config.php';