// 1. Định nghĩa hàm xử lý Shortcode qua AJAX
function custom_render_social_login_shortcode() {
// Xử lý Shortcode và lưu kết quả vào biến $html
$html = do_shortcode( '[miniorange_social_login]' );
// Đảm bảo nội dung được bọc trong div để căn chỉnh
$output = '
' . $html . '
';
// Trả về kết quả
echo $output;
// Kết thúc quá trình AJAX
wp_die();
}
// 2. Thiết lập Hook cho cả người dùng đã đăng nhập và chưa đăng nhập
add_action( 'wp_ajax_render_social_login', 'custom_render_social_login_shortcode' );
add_action( 'wp_ajax_nopriv_render_social_login', 'custom_render_social_login_shortcode' );
Bỏ qua nội dung