get user info in WordPress
$current_user = wp_get_current_user();
esc_html( $current_user->user_login );
esc_html( $current_user->user_email );
esc_html( $current_user->user_firstname );
esc_html( $current_user->user_lastname );
esc_html( $current_user->display_name );
esc_html( $current_user->ID );
Comments
Post a Comment