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



delete_{$meta_type}_metadata › WordPress Filter Hooks

Seit3.1.0
Veraltetn/v
apply_filters( "delete_{$meta_type}_metadata", null, $object_id, $meta_key, $meta_value, $delete_all )
Parameter: (5)
  • () delete Whether to allow metadata deletion of the given type.
    Erforderlich: Ja
  • () object_id ID of the object metadata is for.
    Erforderlich: Ja
  • () meta_key Metadata key.
    Erforderlich: Ja
  • () meta_value Metadata value. Must be serializable if non-scalar.
    Erforderlich: Ja
  • () delete_all Whether to delete the matching metadata entries for all objects, ignoring the specified $object_id. Default false.
    Erforderlich: Ja
Definiert in:
Codex:

Short-circuits deleting metadata of a specific type.

The dynamic portion of the hook name, `$meta_type`, refers to the meta object type (blog, post, comment, term, user, or any other type with an associated meta table). Returning a non-null value will effectively short-circuit the function. Possible hook names include: - `delete_blog_metadata` - `delete_post_metadata` - `delete_comment_metadata` - `delete_term_metadata` - `delete_user_metadata`




Quellcode

$check = apply_filters( "delete_{$meta_type}_metadata", null, $object_id, $meta_key, $meta_value, $delete_all );