agiannis
6/5/2019 - 12:29 PM

remove the register link from the wp-login.php script to avoid bots

labels: wordpress , wp-login , php , must-have

/**
 * 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;
});