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

Filters the value of a specific post field to edit.

Only applied to post fields not prefixed with post_.

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

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

add_filter( 'edit_post_(field)', 'wp_kama_edit_post_field_filter', 10, 2 );

/**
 * Function for `edit_post_(field)` filter-hook.
 * 
 * @param mixed $value   Value of the post field.
 * @param int   $post_id Post ID.
 *
 * @return mixed
 */
function wp_kama_edit_post_field_filter( $value, $post_id ){

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

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

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

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

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

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

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