I can't get WP-API to show the current logged-in username for some reason it just shows an id : 0 and some other data.
functions.php
add_action( 'plugins_loaded', 'get_user_info' );
function get_user_info(){
global $current_user;
get_currentuserinfo();
return $current_user;
}
add_action( 'rest_api_init', function () {
register_rest_route( 'cala', '/get', array(
'methods' => 'GET',
'callback' => 'get_user_info',
) );
} );
JSON
{
"data": {
},
"ID": 0,
"caps": [
],
"cap_key": null,
"roles": [
],
"allcaps": [
],
"filter": null
}
I am not sure if this is the best way either. Please help thanks.