Filters the absolute path to the themes directory.
$theme_root
Sortie :
@param string $theme_root Absolute path to themes directory.
// Modifier la valeur avec le filtre 'theme_root'
add_filter('theme_root', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($theme_root) {
// Modifier la valeur
return $theme_root;
}
Chargement des actualités...