rest_pre_insert_attachment хук-фильтрWP 4.7.0

Filters a post before it is inserted via the REST API.

Это один из вариантов динамического хука rest_pre_insert_(post_type)

Использование

add_filter( 'rest_pre_insert_attachment', 'wp_kama_rest_pre_insert_attachment_filter', 10, 2 );

/**
 * Function for `rest_pre_insert_attachment` filter-hook.
 * 
 * @param stdClass        $prepared_post An object representing a single post prepared for inserting or updating the database.
 * @param WP_REST_Request $request       Request object.
 *
 * @return stdClass
 */
function wp_kama_rest_pre_insert_attachment_filter( $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 Введена.

Где вызывается хук

WP_REST_Posts_Controller::prepare_item_for_database()
rest_pre_insert_attachment
wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php 1399
return apply_filters( "rest_pre_insert_{$this->post_type}", $prepared_post, $request );

Где используется хук в WordPress

Использование не найдено.