WP HOOKS
filtrdynamicznyod 4.9.8

auth_{$object_type}_meta_{$meta_key}_for_{$object_subtype}

Args 6Plik wp-includes/capabilities.php

Opis — z kodu źródłowego

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

The dynamic portions of the hook name, $object_type, $meta_key, and $object_subtype, refer to the metadata object type (comment, post, term or user), the meta key value, and the object subtype respectively.

Parametry

ParametrTypOpis
$allowedboolWhether the user can add the object meta. Default false.
$meta_keystringThe meta key.
$object_idintObject ID.
$user_idintUser ID.
$capstringCapability name.
$capsstring[]Array of the user's capabilities.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'auth_{$object_type}_meta_{$meta_key}_for_{$object_subtype}', 'twoja_funkcja', 10, 6 );

function twoja_funkcja($param_1, $param_2, $param_3, $param_4, $param_5, $param_6) {
	// Twój kod
}

Popularne w tej kategorii