- Timestamp:
- 11/23/2016 02:42:00 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php
r39337 r39342 1288 1288 1289 1289 $query_params['after'] = array( 1290 'description' => __( 'Limit response to resources published after a given ISO8601 compliant date.' ),1290 'description' => __( 'Limit response to comments published after a given ISO8601 compliant date.' ), 1291 1291 'type' => 'string', 1292 1292 'format' => 'date-time', … … 1317 1317 1318 1318 $query_params['before'] = array( 1319 'description' => __( 'Limit response to resources published before a given ISO8601 compliant date.' ),1319 'description' => __( 'Limit response to comments published before a given ISO8601 compliant date.' ), 1320 1320 'type' => 'string', 1321 1321 'format' => 'date-time', … … 1372 1372 $query_params['parent'] = array( 1373 1373 'default' => array(), 1374 'description' => __( 'Limit result set to resources of specific parent IDs.' ),1374 'description' => __( 'Limit result set to comments of specific parent IDs.' ), 1375 1375 'type' => 'array', 1376 1376 'items' => array( … … 1390 1390 $query_params['post'] = array( 1391 1391 'default' => array(), 1392 'description' => __( 'Limit result set to resources assigned to specific post IDs.' ),1392 'description' => __( 'Limit result set to comments assigned to specific post IDs.' ), 1393 1393 'type' => 'array', 1394 1394 'items' => array(
Note: See TracChangeset
for help on using the changeset viewer.