2

有谁知道如何使用 jquery 验证插件验证 wordpress 用户名和电子邮件?

我正在尝试使用验证的远程方法检查用户名和电子邮件是否存在。

我注意到 wordpress 具有 username_exists 和 email_exists 等功能,有没有一种快速的方法来完成这项工作?

请帮忙~

4

1 回答 1

0

您可以在客户端使用类似的东西(ajax URL 不必硬编码,请在此处查看注释:http: //codex.wordpress.org/AJAX_in_Plugins#Ajax_on_the_Viewer-Facing_Side):

"user_email":{
        remote: {
            url: 'YOURSITE.COM/wp-admin/admin-ajax.php',
            type: "post",
            data: {
               'user_email': function() {
                    return $( "#user_email" ).val();
                },
               'action': 'check_user_email'

            }
        }
}

这在functions.php中:

add_action( 'wp_ajax_nopriv_check_user_email', 'check_user_email_callback' );
function check_user_email_callback() {
    global $wpdb; // this is how you get access to the database
    if(email_exists($_POST['user_email'])){
        echo json_encode('error.');
    }
    else{
        echo json_encode('true');
    }
    die();
}
于 2014-07-21T21:11:18.457 回答