Changeset 39266
- Timestamp:
- 11/16/2016 01:27:10 PM (8 years ago)
- Location:
- trunk/src/wp-includes/rest-api/endpoints
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php
r39264 r39266 1267 1267 1268 1268 $query_params['author'] = array( 1269 'description' => __( 'Limit result set to comments assigned to specific user ids. Requires authorization.' ),1269 'description' => __( 'Limit result set to comments assigned to specific user IDs. Requires authorization.' ), 1270 1270 'type' => 'array', 1271 1271 'items' => array( … … 1275 1275 1276 1276 $query_params['author_exclude'] = array( 1277 'description' => __( 'Ensure result set excludes comments assigned to specific user ids. Requires authorization.' ),1277 'description' => __( 'Ensure result set excludes comments assigned to specific user IDs. Requires authorization.' ), 1278 1278 'type' => 'array', 1279 1279 'items' => array( … … 1296 1296 1297 1297 $query_params['exclude'] = array( 1298 'description' => __( 'Ensure result set excludes specific ids.' ),1298 'description' => __( 'Ensure result set excludes specific IDs.' ), 1299 1299 'type' => 'array', 1300 1300 'items' => array( … … 1305 1305 1306 1306 $query_params['include'] = array( 1307 'description' => __( 'Limit result set to specific ids.' ),1307 'description' => __( 'Limit result set to specific IDs.' ), 1308 1308 'type' => 'array', 1309 1309 'items' => array( … … 1351 1351 $query_params['parent'] = array( 1352 1352 'default' => array(), 1353 'description' => __( 'Limit result set to resources of specific parent ids.' ),1353 'description' => __( 'Limit result set to resources of specific parent IDs.' ), 1354 1354 'type' => 'array', 1355 1355 'items' => array( … … 1360 1360 $query_params['parent_exclude'] = array( 1361 1361 'default' => array(), 1362 'description' => __( 'Ensure result set excludes specific parent ids.' ),1362 'description' => __( 'Ensure result set excludes specific parent IDs.' ), 1363 1363 'type' => 'array', 1364 1364 'items' => array( … … 1369 1369 $query_params['post'] = array( 1370 1370 'default' => array(), 1371 'description' => __( 'Limit result set to resources assigned to specific post ids.' ),1371 'description' => __( 'Limit result set to resources assigned to specific post IDs.' ), 1372 1372 'type' => 'array', 1373 1373 'items' => array( -
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php
r39264 r39266 1993 1993 1994 1994 $params['exclude'] = array( 1995 'description' => __( 'Ensure result set excludes specific ids.' ),1995 'description' => __( 'Ensure result set excludes specific IDs.' ), 1996 1996 'type' => 'array', 1997 1997 'items' => array( … … 2002 2002 2003 2003 $params['include'] = array( 2004 'description' => __( 'Limit result set to specific ids.' ),2004 'description' => __( 'Limit result set to specific IDs.' ), 2005 2005 'type' => 'array', 2006 2006 'items' => array( -
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php
r39264 r39266 887 887 888 888 $query_params['exclude'] = array( 889 'description' => __( 'Ensure result set excludes specific ids.' ),889 'description' => __( 'Ensure result set excludes specific IDs.' ), 890 890 'type' => 'array', 891 891 'items' => array( … … 896 896 897 897 $query_params['include'] = array( 898 'description' => __( 'Limit result set to specific ids.' ),898 'description' => __( 'Limit result set to specific IDs.' ), 899 899 'type' => 'array', 900 900 'items' => array( -
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php
r39264 r39266 1250 1250 1251 1251 $query_params['exclude'] = array( 1252 'description' => __( 'Ensure result set excludes specific ids.' ),1252 'description' => __( 'Ensure result set excludes specific IDs.' ), 1253 1253 'type' => 'array', 1254 1254 'items' => array( … … 1259 1259 1260 1260 $query_params['include'] = array( 1261 'description' => __( 'Limit result set to specific ids.' ),1261 'description' => __( 'Limit result set to specific IDs.' ), 1262 1262 'type' => 'array', 1263 1263 'items' => array(
Note: See TracChangeset
for help on using the changeset viewer.