WP_REST_Posts_Controller::handle_status_param() protected WP 4.7.0
Determines validity and normalizes the given status parameter.
{} It's a method of the class: WP_REST_Posts_Controller{}
No Hooks.
Return
String/WP_Error. Post status or WP_Error if lacking the proper permission.
Usage
// protected - for code of main (parent) or child class $result = $this->handle_status_param( $post_status, $post_type );
- $post_status(string) (required)
- Post status.
- $post_type(WP_Post_Type) (required)
- Post type.
Changelog
Since 4.7.0 | Introduced. |
Code of WP_REST_Posts_Controller::handle_status_param() WP REST Posts Controller::handle status param WP 5.6
protected function handle_status_param( $post_status, $post_type ) {
switch ( $post_status ) {
case 'draft':
case 'pending':
break;
case 'private':
if ( ! current_user_can( $post_type->cap->publish_posts ) ) {
return new WP_Error(
'rest_cannot_publish',
__( 'Sorry, you are not allowed to create private posts in this post type.' ),
array( 'status' => rest_authorization_required_code() )
);
}
break;
case 'publish':
case 'future':
if ( ! current_user_can( $post_type->cap->publish_posts ) ) {
return new WP_Error(
'rest_cannot_publish',
__( 'Sorry, you are not allowed to publish posts in this post type.' ),
array( 'status' => rest_authorization_required_code() )
);
}
break;
default:
if ( ! get_post_status_object( $post_status ) ) {
$post_status = 'draft';
}
break;
}
return $post_status;
}