get_{$meta_type}_metadata

FILTER wp-includes\meta.php (ligne 664) github
Short-circuits the return value of a meta field. 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 filter names include:  - `get_blog_metadata`  - `get_post_metadata`  - `get_comment_metadata`  - `get_term_metadata`  - `get_user_metadata`

Paramètres

Entrée :
null, $object_id, $meta_key, $single, $meta_type
Sortie :
@param mixed  $value     The value to return, either a single metadata value or an array
@param int    $object_id ID of the object metadata is for.
@param string $meta_key  Metadata key.
@param bool   $single    Whether to return only the first value of the specified `$meta_key`.
@param string $meta_type Type of object metadata is for. Accepts 'blog', 'post', 'comment', 'term',

Utilisation

// Modifier la valeur avec le filtre 'get_{$meta_type}_metadata'
add_filter('get_{$meta_type}_metadata', 'ma_fonction_filtre', 10, 1);

function ma_fonction_filtre(null) {
    // Modifier la valeur
    return null;
}

Actualités

Chargement des actualités...