Filters the path to a file in the parent theme.
$path, $file
Sortie :
@param string $path The file path. @param string $file The requested file to search for.
// Modifier la valeur avec le filtre 'parent_theme_file_path'
add_filter('parent_theme_file_path', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($path) {
// Modifier la valeur
return $path;
}
Chargement des actualités...