How to remove register link in WordPress WP-login
For removing or hiding register link –
Step 1- You will find the register new user below of WordPress login page which you can remove either through plugin or through script.
Step 2 – It doesn’t stop user registrations via any other means, it only prevents registrations from the wp-login.php script. Adding this script to the functions.php file will disable user registrations.
/** * remove the register link from the wp-login.php script */ add_filter('option_users_can_register', function($value) { $script = basename(parse_url($_SERVER['SCRIPT_NAME'], PHP_URL_PATH)); if ($script == 'wp-login.php') { $value = false; } return $value; });