J'essaie d'obtenir le prénom et le nom de l'utilisateur dans la réponse wp-json/wp/v2/users/1
, tous ces détails sont manquants depuis que je suis passé à la v2.
J'ai essayé:
function mm_wpapiv2_user_first_name($object, $field_name, $request) {
return "Test";
}
register_rest_field( 'user', 'first_name',
array('get_callback' => 'mm_wpapiv2_user_first_name')
);
mais le champ n'est pas ajouté à la réponse. S'il vous plaît aider!
Vous pouvez filtrer la réponse pour un user afin d’inclure la propriété de votre choix avec rest_prepare_user
.
add_filter( 'rest_prepare_user', function( $response, $user, $request ) {
$response->data[ 'first_name' ] = get_user_meta( $user->ID, 'first_name', true );
$response->data[ 'last_name' ] = get_user_meta( $user->ID, 'last_name', true );
return $response;
}, 10, 3 );
Une autre façon consiste non seulement à utiliser enregistrez le champ de repos mais également à mettre à jour le contexte pour qu'il soit visible publiquement pour les éléments masqués existants.
/**
* Return field data for User
*
* @param array $object
* @param string $field_name
* @param WP_REST_Request $request
*
* @return string
*/
function get_rest_api_field_data( $object, $field_name, $request ) {
switch ( $field_name ) {
case 'first_name' :
return get_user_meta( $object[ 'id' ], 'first_name', true );
case 'last_name' :
return get_user_meta( $object[ 'id' ], 'last_name', true );
}
}
/**
* Register fields for User
*/
function add_custom_rest_fields_for_users() {
// register the First Name of the User -- Visible to anyone
register_rest_field( 'user', 'first_name', array (
'get_callback' => 'get_rest_api_field_data',
'update_callback' => null,
'schema' => array (
'description' => __( 'First name for the resource.' ),
'type' => 'string',
'context' => array ( 'embed', 'view', 'edit' ), // Adding `embed` and `view`
'arg_options' => array (
'sanitize_callback' => 'sanitize_text_field',
),
),
) );
// register the Last Name of the User -- Visible to anyone
register_rest_field( 'user', 'last_name', array (
'get_callback' => 'get_rest_api_field_data',
'update_callback' => null,
'schema' => array (
'description' => __( 'Last name for the resource.' ),
'type' => 'string',
'context' => array ( 'embed', 'view', 'edit' ), // Adding `embed` and `view`
'arg_options' => array (
'sanitize_callback' => 'sanitize_text_field',
),
),
) );
}
add_action( 'rest_api_init', 'add_custom_rest_fields_for_users' );
La réponse d'origine a été construite juste avant l'appel du filtre. Comme vous le voyez dans prepare_item_for_response()
, $schema['properties']
est vérifié avant d’ajouter first_name
ou last_name
.
if ( ! empty( $schema['properties']['first_name'] ) ) {
$data['first_name'] = $user->first_name;
}
if ( ! empty( $schema['properties']['last_name'] ) ) {
$data['last_name'] = $user->last_name;
}
Sous get_item_schema ()
vous pouvez voir comment ce schéma a été créé - il convient de noter le 'embed', 'view'
manquant, raison pour laquelle ils ne sont pas restitués sans authentication et sous more unique conditions .
$schema = array(
'$schema' => 'http://json-schema.org/draft-04/schema#',
'title' => 'user',
'type' => 'object',
'properties' => array(
'id' => array(
'description' => __( 'Unique identifier for the resource.' ),
'type' => 'integer',
'context' => array( 'embed', 'view', 'edit' ),
'readonly' => true,
),
'username' => array(
'description' => __( 'Login name for the resource.' ),
'type' => 'string',
'context' => array( 'edit' ),
'required' => true,
'arg_options' => array(
'sanitize_callback' => 'sanitize_user',
),
),
'name' => array(
'description' => __( 'Display name for the resource.' ),
'type' => 'string',
'context' => array( 'embed', 'view', 'edit' ),
'arg_options' => array(
'sanitize_callback' => 'sanitize_text_field',
),
),
'first_name' => array(
'description' => __( 'First name for the resource.' ),
'type' => 'string',
'context' => array( 'edit' ),
'arg_options' => array(
'sanitize_callback' => 'sanitize_text_field',
),
),
'last_name' => array(
'description' => __( 'Last name for the resource.' ),
'type' => 'string',
'context' => array( 'edit' ),
'arg_options' => array(
'sanitize_callback' => 'sanitize_text_field',
),
),