WP_REST_Users_Controller::prepare_links( WP_User $user )
Prepares links for the user request.
Parameters
- $user
-
(WP_User) (Required) User object.
Return
(array) Links for the given user.
Source
File: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php
protected function prepare_links( $user ) { $links = array( 'self' => array( 'href' => rest_url( sprintf( '%s/%s/%d', $this->namespace, $this->rest_base, $user->ID ) ), ), 'collection' => array( 'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ), ), ); return $links; }
Changelog
Version | Description |
---|---|
4.7.0 | Introduced. |
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_rest_users_controller/prepare_links