WP_REST_Posts_Controller::check_assign_terms_permission() WordPress Method
The WP_REST_Posts_Controller::check_assign_terms_permission() method is used to check if the current user has the permission to assign terms to the post.
WP_REST_Posts_Controller::check_assign_terms_permission( WP_REST_Request $request ) #
Checks whether current user can assign all terms sent with the current request.
Parameters
- $request
(WP_REST_Request)(Required)The request object with post and terms data.
Return
(bool) Whether the current user can assign the provided terms.
Source
File: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php
protected function check_assign_terms_permission( $request ) {
$taxonomies = wp_list_filter( get_object_taxonomies( $this->post_type, 'objects' ), array( 'show_in_rest' => true ) );
foreach ( $taxonomies as $taxonomy ) {
$base = ! empty( $taxonomy->rest_base ) ? $taxonomy->rest_base : $taxonomy->name;
if ( ! isset( $request[ $base ] ) ) {
continue;
}
foreach ( (array) $request[ $base ] as $term_id ) {
// Invalid terms will be rejected later.
if ( ! get_term( $term_id, $taxonomy->name ) ) {
continue;
}
if ( ! current_user_can( 'assign_term', (int) $term_id ) ) {
return false;
}
}
}
return true;
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 4.7.0 | Introduced. |