AJAX的远程验证WordPress的用户名和电子邮件与jQuery验证插件(Ajax remote

2019-08-17 04:08发布

有谁知道如何验证WordPress的用户名和电子邮件与jQuery验证插件?

我想检查用户名和电子邮件与验证的远程方法存在。

而且我注意到WordPress的有一个像username_exists和email_exists功能,是有一个快速的方法来完成这项工作?

PLZ帮助〜

Answer 1:

可以使用像这样的客户端(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();
}


文章来源: Ajax remote validate wordpress username and email with Jquery validation plugin