Skip to content

Instantly share code, notes, and snippets.

@thierrypigot
Created December 19, 2022 15:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thierrypigot/042fe29fa589dc10a0055a832feb16b5 to your computer and use it in GitHub Desktop.
Save thierrypigot/042fe29fa589dc10a0055a832feb16b5 to your computer and use it in GitHub Desktop.
Ajouter ou modifier des variables lorsqu'elles sont passées à un script WordPress
<?php
function mon_filtre_personnalisé($valeur) {
// Modifier la valeur de la variable
return $valeur;
}
add_filter('nom_variable', 'mon_filtre_personnalisé');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment