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>
3092*-`comment_count_pre`3093*3094* @since 2.3.03095*3096* @param mixed$value Value of the post field.3097*/3098$value=apply_filters("{$field}_pre",$value);3099}3100}else{31013102// Use display filters by default.3103if($prefixed){3104
History
Introduced in 2.3.0. Unchanged from 6.7.7 through 7.1.0.