Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: auth_{$object_type}_meta_{$meta_key}_for_{$object_subtype}

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
325                           * @since 4.9.8
326                           *
327                           * @param bool     $allowed   Whether the user can add the object meta. Default false.
328                           * @param string   $meta_key  The meta key.
329                           * @param int      $object_id Object ID.
330                           * @param int      $user_id   User ID.
331                           * @param string   $cap       Capability name.
332                           * @param string[] $caps      Array of the user's capabilities.
333                           */
334                          $allowed = apply_filters( "auth_{$object_type}_meta_{$meta_key}_for_{$object_subtype}", $allowed, $meta_key, $object_id, $user_id, $cap, $caps );
335                     } else {
336
337                          /**
338                           * Filters whether the user is allowed to edit a specific meta key of a specific object type.
339                           *
340                           * Return true to have the mapped meta caps from `edit_{$object_type}` apply.
341                           *
342                           * The dynamic portion of the hook name, `$object_type` refers to the object type being filtered.
343                           * The dynamic portion of the hook name, `$meta_key`, refers to the meta key passed to map_meta_cap().