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>
3014*3015* @since 2.3.03016*3017* @param mixed$value Value of the post field.3018* @param int$post_id Post ID.3019*/3020$value=apply_filters("edit_{$field}",$value,$post_id);30213022/**3023* Filters the value of a specific post field to edit.3024*3025* Only applied to post fields with a name which is prefixed with `post_`.3026*
History
Introduced in 2.3.0. Unchanged from 6.7.7 through 7.1.0.