pre_post_(field) хук-фильтрWP 2.3.0

Filters the value of a specific field before saving.

Only applied to post fields with a name which is prefixed with post_.

The dynamic portion of the hook name, $field_no_prefix, refers to the post field name minus the post_ prefix. Possible filter names include:

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

add_filter( 'pre_post_(field)', 'wp_kama_pre_post_field_filter' );

/**
 * Function for `pre_post_(field)` filter-hook.
 * 
 * @param mixed $value Value of the post field.
 *
 * @return mixed
 */
function wp_kama_pre_post_field_filter( $value ){

	// filter...
	return $value;
}
$value(разное)
Value of the post field.

Список изменений

С версии 2.3.0 Введена.

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

sanitize_post_field()
pre_post_(field)
wp-includes/post.php 3075
$value = apply_filters( "pre_post_{$field}", $value );

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

wp-includes/default-filters.php 106
add_filter( 'pre_post_mime_type', 'sanitize_mime_type' );