Filters the array of URLs of stylesheets applied to the editor.
$stylesheets
Sortie :
@param string[] $stylesheets Array of URLs of stylesheets to be applied to the editor.
// Modifier la valeur avec le filtre 'editor_stylesheets'
add_filter('editor_stylesheets', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($stylesheets) {
// Modifier la valeur
return $stylesheets;
}
Chargement des actualités...