Chú ý: Khi chuyển trang từ một mạng xã hội xác thực để sử dụng được wp_get_current_user (ok)
https://stackoverflow.com/questions/6127559/wordpress-plugin-call-to-undefined-function-wp-get-current-user
Đã áp dụng cho plugin lionel-setup-content
if ( !function_exists('wp_get_current_user') ) {
include(ABSPATH . "wp-includes/pluggable.php");
}
$current_user = wp_get_current_user();
$user=esc_html( $current_user->ID );
Full code
Last updated
Was this helpful?