edit_post_(field) filter-hook . WP 2.3.0
Filters the value of a specific post field to edit.
The dynamic portion of the hook name, $field_no_prefix, refers to the post field name.
Usage
add_filter( 'edit_post_(field)', 'filter_function_name_2592', 10, 2 ); function filter_function_name_2592( $value, $post_id ){ // filter... return $value; }
- $value(mixed)
- Value of the post field.
- $post_id(int)
- Post ID.
Changelog
Since 2.3.0 | Introduced. |
Where the hook is called
edit_post_(field)
wp-includes/post.php 2442
$value = apply_filters( "edit_post_{$field}", $value, $post_id );