如果用户会话到期Wordpress前端,则AJAX覆盖

时间:2018-02-09 03:08:39

标签: javascript php ajax wordpress

如果wp-admin中的用户会话过期,用户已注销且页面仍处于打开状态,则WordPress会覆盖模式登录。

如何注册用户会话从其他位置过期/注销并从前端发起叠加?

目前,我们通过带有按钮on('click',...)的Javascript打开登录表单,登录和退出的操作在 functions.php

中处理
$('a#show_login').on('click', function(e){
    $('body').prepend('<div class="login_overlay"></div>');
    $('form#login').fadeIn(500);
    $('div.login_overlay, form#login a.close').on('click', function(){
        $('div.login_overlay').remove();
        $('form#login').hide();
    });
    e.preventDefault();
});

有没有办法确定实时到期的用户会话,然后启动叠加?我已经找了其他参考资料和文档,但找不到实现后端发生情况的解决方案Wordpress。理想情况下,能够在前端使用相同的钩子/动作(如果它们存在?)将是完美的解决方案。

如果没有,可能是AJAX和一个动作的组合,用于复制后端为超时会话所做的事情。

以下是启动当前叠加形式的功能

function ajax_login_init(){

wp_register_script('ajax-login-script', get_template_directory_uri() . '/assets/js/ajax-login-script.js', array('jquery') ); 
wp_enqueue_script('ajax-login-script');

wp_localize_script( 'ajax-login-script', 'ajax_login_object', array( 
    'ajaxurl' => admin_url( 'admin-ajax.php' ),
    'redirecturl' => home_url(),
    'loadingmessage' => __('Sending user info, please wait...')
));

// Enable the user with no privileges to run ajax_login() in AJAX
add_action( 'wp_ajax_nopriv_ajaxlogin', 'ajax_login' );
}

// Execute the action only if the user isn't logged in
if (!is_user_logged_in()) {
    add_action('init', 'ajax_login_init');
}

以及后端已过期会话的示例

example backend

请注意:我不想使用插件来实现这一目标。

1 个答案:

答案 0 :(得分:0)

我在这里找到了解决方案https://wordpress.stackexchange.com/questions/223721/interim-login-form-on-frontend

function login_session_expired() {
// we only care to add scripts and styles if the user is logged in.
if ( is_user_logged_in() ) {

    // add javascript file
    wp_register_script( 'wp_auth_check', '/wp-includes/js/wp-auth-check.js' , array('heartbeat'), false, 1);
    wp_localize_script( 'wp_auth_check', 'authcheckL10n', array(
        'beforeunload' => __('Your session has expired. You can log in again from this page or go to the login page.'),
        'interval' => apply_filters( 'wp_auth_check_interval', 1 * MINUTE_IN_SECONDS ), // default interval is 3 minutes
    ) );
    wp_enqueue_script ('wp_auth_check');

    // add css file
    wp_enqueue_style( 'wp_auth_check','/wp-includes/css/wp-auth-check.css', array( 'dashicons' ), NULL, 'all' );

    // add the login html to the page
    add_action( 'wp_print_footer_scripts', 'wp_auth_check_html', 5 );
}
}
add_action( 'wp_enqueue_scripts', 'login_session_expired' );

// make sure the stylesheet appears on the lightboxed login iframe
function login_session_expired_styles() {
    wp_enqueue_style( 'wp_auth_check','/wp-includes/css/wp-auth-check.css', array( 'dashicons' ), NULL, 'all' );
}
add_action( 'login_enqueue_scripts', 'login_session_expired_styles' );