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>
2967*2968* @since 2.3.02969*2970* @param mixed$value Value of the post field.2971* @param int$post_id Post ID.2972*/2973$value=apply_filters("edit_{$field}",$value,$post_id);29742975/**2976* Filters the value of a specific post field to edit.2977*2978* Only applied to post fields with a name which is prefixed with `post_`.2979*
History
Introduced in 2.3.0. Unchanged from 6.7.7 through 7.1.0.