wp-admin登录页面空白验证。当管理员没有在wp-admin登录页面中输入任何内容时,请给出错误,如请填写输入字段。
答案 0 :(得分:0)
在functions.php文件中修改此代码。我希望它能正常工作 add_action(' wp_authenticate',' _catch_empty_user',1,2);
function _catch_empty_user( $username, $pwd ) {
if (!empty($_POST)) {
if (!is_user_logged_in()) {
$username = $_POST['log'];
$pwd = $_POST['pwd'];
if (empty($username) && empty($pwd)) {
?>
<div id="login_error">
<strong>ERROR</strong>: please fill up user-name and password.<br>
</div>
<?php
}
}
}
}