Filters the value of a specific post field before saving.
Description
Only applied to post fields with a name which is <em>not</em> prefixed with post_. The dynamic portion of the hook name, $field, refers to the post field name. Possible filter names include: <ul> <li>ID_pre</li> <li>comment_status_pre</li> <li>ping_status_pre</li> <li>to_ping_pre</li> <li>pinged_pre</li> <li>guid_pre</li> <li>menu_order_pre</li> <li>comment_count_pre</li> </ul>
3190*-`comment_count_pre`3191*3192* @since 2.3.03193*3194* @param mixed$value Value of the post field.3195*/3196$value=apply_filters("{$field}_pre",$value);3197}3198}else{31993200// Use display filters by default.3201if($prefixed){3202
History
Introduced in 2.3.0. Unchanged from 6.7.7 through 7.1.0.