Make WordPress Core


Ignore:
Timestamp:
11/14/2016 04:41:40 PM (8 years ago)
Author:
joehoyle
Message:

REST API: Make all collection params filterable.

For developers wanting to add their own registered collection parameters, they can now use the rest_$type_collection_params filter. This brings consistency with the already existing rest_$post_type_collection_params.

Fixes #38710.
Props jnylen0.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php

    r39196 r39223  
    13901390        );
    13911391
    1392         return $query_params;
     1392        /**
     1393         * Filter collection parameters for the comments controller.
     1394         *
     1395         * This filter registers the collection parameter, but does not map the
     1396         * collection parameter to an internal WP_Comment_Query parameter. Use the
     1397         * `rest_comment_query` filter to set WP_Comment_Query parameters.
     1398         *
     1399         * @since 4.7.0
     1400         *
     1401         * @param $params JSON Schema-formatted collection parameters.
     1402         */
     1403        return apply_filters( 'rest_comment_collection_params', $query_params );
    13931404    }
    13941405
Note: See TracChangeset for help on using the changeset viewer.