Changeset 50119
- Timestamp:
- 02/01/2021 11:53:16 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-taxonomy.php
r50116 r50119 211 211 212 212 /** 213 * The controller instance for this taxonomy's REST API endpoints. 214 * 215 * Lazily computed. Should be accessed using {@see WP_Taxonomy::get_rest_controller()}. 216 * 217 * @since 5.5.0 218 * @var WP_REST_Controller $rest_controller 219 */ 220 public $rest_controller; 221 222 /** 213 223 * The default term name for this taxonomy. If you pass an array you have 214 224 * to set 'name' and optionally 'slug' and 'description'. … … 218 228 */ 219 229 public $default_term; 220 221 /**222 * The controller instance for this taxonomy's REST API endpoints.223 *224 * Lazily computed. Should be accessed using {@see WP_Taxonomy::get_rest_controller()}.225 *226 * @since 5.5.0227 * @var WP_REST_Controller $rest_controller228 */229 public $rest_controller;230 230 231 231 /** … … 322 322 'rest_controller_class' => false, 323 323 'default_term' => null, 324 '_builtin' => false,325 324 'sort' => null, 326 325 'args' => null, 326 '_builtin' => false, 327 327 ); 328 328
Note: See TracChangeset
for help on using the changeset viewer.