WordPress itself is a very secure platform, however, it helps to add some extra security and firewall to your site by using a WordPress security plugin that enforces a lot of good security practices. Protecting your website is like setting a burglar alarm on a bricks and mortar shop, it’s essential. These security measures along with strong passwords can make all the difference.
When you setup rename for login page, please add this code to function.php (we use for redirect to login page when click ‘requst unblock ip’)
/* Custom login URL to editorial */
function custom_login_url( $login_url, $redirect, $force_reauth ) {
return site_url( ‘/editorial/’, ‘login’ );
}
add_filter( ‘login_url’, ‘custom_login_url’, 10, 3 );
/* End Custom login URL to editorial */



