我正在使用以这种方式进行前端登录的插件
add_action('wp_ajax_nopriv_ppw_ajax_login', array($this, 'ajax_login'));
function ajax_login( ) {
header("Content-type: application/json");
$user = wp_signon( );
if ( !is_wp_error($user) ) {
$reveal = 0;
if ( get_user_meta( $user->ID, "ppw_subscribe", true) != '' OR $this->is_authorised() )
$reveal = 1;
die(json_encode(array(
"status" => 1,
"user_id"=>$user->ID,
"reveal"=>$reveal
)));
}
die(json_encode(array(
"status" => 0,
"error" => $user->get_error_message()
)));
}
现在我的问题是如何以相同的方式创建注册功能?
我正在尝试将注册功能与付费墙插件集成。所以我想要一个用于 AJAX 注册的自定义代码。
任何帮助都会很棒。