wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



pre_{$field} › WordPress Filter Hooks

Seit2.3.0
Veraltetn/v
apply_filters( "pre_{$field}", $value )
Parameter:
  • () value Value of the post field.
    Erforderlich: Ja
Definiert in:
Codex:

Filters the value of a specific post field before saving.

Only applied to post fields with a name which is prefixed with `post_`. The dynamic portion of the hook name, `$field`, refers to the post field name. Possible filter names include: - `pre_post_author` - `pre_post_date` - `pre_post_date_gmt` - `pre_post_content` - `pre_post_title` - `pre_post_excerpt` - `pre_post_status` - `pre_post_password` - `pre_post_name` - `pre_post_modified` - `pre_post_modified_gmt` - `pre_post_content_filtered` - `pre_post_parent` - `pre_post_type` - `pre_post_mime_type`




Quellcode

$value = apply_filters( "pre_{$field}", $value );