- Timestamp:
- 08/17/2018 01:50:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php
r43137 r43571 47 47 48 48 register_rest_route( 49 $this->namespace, '/' . $this->rest_base, array( 49 $this->namespace, 50 '/' . $this->rest_base, 51 array( 50 52 array( 51 53 'methods' => WP_REST_Server::READABLE, … … 65 67 66 68 register_rest_route( 67 $this->namespace, '/' . $this->rest_base . '/(?P<id>[\d]+)', array( 69 $this->namespace, 70 '/' . $this->rest_base . '/(?P<id>[\d]+)', 71 array( 68 72 'args' => array( 69 73 'id' => array( … … 109 113 110 114 register_rest_route( 111 $this->namespace, '/' . $this->rest_base . '/me', array( 115 $this->namespace, 116 '/' . $this->rest_base . '/me', 117 array( 112 118 array( 113 119 'methods' => WP_REST_Server::READABLE, … … 195 201 if ( 'authors' === $request['who'] ) { 196 202 $can_view = false; 197 $types = get_post_types( array( 'show_in_rest' => true ), 'objects' );203 $types = get_post_types( array( 'show_in_rest' => true ), 'objects' ); 198 204 foreach ( $types as $type ) { 199 205 if ( post_type_supports( $type->name, 'author' )
Note: See TracChangeset
for help on using the changeset viewer.