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>
3141*-`comment_count_pre`3142*3143* @since 2.3.03144*3145* @param mixed$value Value of the post field.3146*/3147$value=apply_filters("{$field}_pre",$value);3148}3149}else{31503151// Use display filters by default.3152if($prefixed){3153
History
Introduced in 2.3.0. Unchanged from 6.7.7 through 7.1.0.