Filters the taxonomy field for use in RSS. The dynamic portions of the hook name, `$taxonomy`, and `$field`, refer to the taxonomy slug and field name, respectively.
$value
Sortie :
@param mixed $value Value of the taxonomy field.
// Modifier la valeur avec le filtre '{$taxonomy}_{$field}_rss'
add_filter('{$taxonomy}_{$field}_rss', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($value) {
// Modifier la valeur
return $value;
}
Chargement des actualités...