rest_pre_insert_(post_type) хук-фильтр . WP 4.7.0
Filters a post before it is inserted via the REST API.
The dynamic portion of the hook name, $this->post_type, refers to the post type slug.
Использование
add_filter( 'rest_pre_insert_(post_type)', 'filter_function_name_1258', 10, 2 ); function filter_function_name_1258( $prepared_post, $request ){ // filter... return $prepared_post; }
- $prepared_post(stdClass)
- An object representing a single post prepared for inserting or updating the database.
- $request(WP_REST_Request)
- Request object.
Список изменений
С версии 4.7.0 | Введена. |
Где вызывается хук
rest_pre_insert_(post_type)
wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php 1261
return apply_filters( "rest_pre_insert_{$this->post_type}", $prepared_post, $request );