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>
3188*-`comment_count_pre`3189*3190* @since 2.3.03191*3192* @param mixed$value Value of the post field.3193*/3194$value=apply_filters("{$field}_pre",$value);3195}3196}else{31973198// Use display filters by default.3199if($prefixed){3200
History
Introduced in 2.3.0. Unchanged from 6.7.7 through 7.1.0.