Filters the value of a specific post field to edit.
Description
The dynamic portion of the hook name, $field, refers to the post field name. Possible filter names include: <ul> <li>edit_post_author</li> <li>edit_post_date</li> <li>edit_post_date_gmt</li> <li>edit_post_content</li> <li>edit_post_title</li> <li>edit_post_excerpt</li> <li>edit_post_status</li> <li>edit_post_password</li> <li>edit_post_name</li> <li>edit_post_modified</li> <li>edit_post_modified_gmt</li> <li>edit_post_content_filtered</li> <li>edit_post_parent</li> <li>edit_post_type</li> <li>edit_post_mime_type</li> </ul>
3074*3075* @since 2.3.03076*3077* @param mixed$value Value of the post field.3078* @param int$post_id Post ID.3079*/3080$value=apply_filters("edit_{$field}",$value,$post_id);30813082/**3083* Filters the value of a specific post field to edit.3084*3085* Only applied to post fields with a name which is prefixed with `post_`.3086*
History
Introduced in 2.3.0. Unchanged from 6.7.7 through 7.1.0.