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



auth_{$object_type}_meta_{$meta_key} › WordPress Filter Hooks

Seit4.6.0
Veraltetn/v
apply_filters( "auth_{$object_type}_meta_{$meta_key}", $allowed, $meta_key, $object_id, $user_id, $cap, $caps )
Parameter: (6)
  • () allowed Whether the user can add the object meta. Default false.
    Erforderlich: Ja
  • () meta_key The meta key.
    Erforderlich: Ja
  • () object_id Object ID.
    Erforderlich: Ja
  • () user_id User ID.
    Erforderlich: Ja
  • () cap Capability name.
    Erforderlich: Ja
  • () caps Array of the user's capabilities.
    Erforderlich: Ja
Definiert in:
Codex:

Filters whether the user is allowed to edit a specific meta key of a specific object type.

Return true to have the mapped meta caps from `edit_{$object_type}` apply. The dynamic portion of the hook name, `$object_type` refers to the object type being filtered. The dynamic portion of the hook name, `$meta_key`, refers to the meta key passed to map_meta_cap().




Quellcode

$allowed = apply_filters( "auth_{$object_type}_meta_{$meta_key}", $allowed, $meta_key, $object_id, $user_id, $cap, $caps );