pre_post_{$field}

FILTER wp-includes\post.php (ligne 3173) github
Filters the value of a specific field before saving. Only applied to post fields with a name which is prefixed with `post_`. The dynamic portion of the hook name, `$field_no_prefix`, refers to the post field name minus the `post_` prefix. Possible filter names include:  - `pre_post_ID`  - `pre_post_comment_status`  - `pre_post_ping_status`  - `pre_post_to_ping`  - `pre_post_pinged`  - `pre_post_guid`  - `pre_post_menu_order`  - `pre_post_comment_count`

Paramètres

Entrée :
$value
Sortie :
@param mixed $value Value of the post field.

Utilisation

// Modifier la valeur avec le filtre 'pre_post_{$field}'
add_filter('pre_post_{$field}', 'ma_fonction_filtre', 10, 1);

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

Actualités

Chargement des actualités...