WP_REST_Comments_Controller::normalize_query_param() WordPress Method
The normalize_query_param() method is used to normalize a query parameter for a comments request. This is used to set up the query for comments retrieval.
WP_REST_Comments_Controller::normalize_query_param( string $query_param ) #
Prepends internal property prefix to query parameters to match our response fields.
Parameters
- $query_param
(string)(Required)Query parameter.
Return
(string) The normalized query parameter.
Source
File: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php
protected function normalize_query_param( $query_param ) {
$prefix = 'comment_';
switch ( $query_param ) {
case 'id':
$normalized = $prefix . 'ID';
break;
case 'post':
$normalized = $prefix . 'post_ID';
break;
case 'parent':
$normalized = $prefix . 'parent';
break;
case 'include':
$normalized = 'comment__in';
break;
default:
$normalized = $prefix . $query_param;
break;
}
return $normalized;
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 4.7.0 | Introduced. |