Comment mettre le style en file d'attente avant style.css
1 réponses
- votes
-
- 2013-04-17
Mettez également
style.css
en file d'attenteet définisseznormalize
comme dépendance:if ( ! is_admin() ) { // Register early, so no on else can reserve that handle add_action( 'wp_loaded', function() { wp_register_style( 'normalize', // parent theme get_template_directory_uri() . '/css/normalize.css' ); wp_register_style( 'theme_name', // current theme, might be the child theme get_stylesheet_uri(), [ 'normalize' ] ); }); add_action( 'wp_enqueue_scripts', function() { wp_enqueue_style( 'theme_name' ); }); }
WordPress chargera les dépendancesmaintenant d'abord automatiquement lorsque
theme_name
seraimprimé.Enqueue the
style.css
too, and setnormalize
as dependency:if ( ! is_admin() ) { // Register early, so no on else can reserve that handle add_action( 'wp_loaded', function() { wp_register_style( 'normalize', // parent theme get_template_directory_uri() . '/css/normalize.css' ); wp_register_style( 'theme_name', // current theme, might be the child theme get_stylesheet_uri(), [ 'normalize' ] ); }); add_action( 'wp_enqueue_scripts', function() { wp_enqueue_style( 'theme_name' ); }); }
WordPress will load the dependencies now first automatically when
theme_name
is printed.-
Grandmerci!Juste une question rapide -est-ce queje n'aipasbesoin demettreen file d'attente le style denormalisation,ouest-cefait automatiquement lorsqu'ilest défini comme une dépendance?Great, thanks! Just a quick question - do I then not need to enqueue the normalize style, or is this done automatically when set as a dependency?
- 1
- 2013-04-17
- vonholmes
-
Mis automatiquementen file d'attente lorsqu'ilest appeléen tant que dépendance.Automatically enqueued when called as a dependency.
- 0
- 2013-04-17
- RRikesh
-
@vonholmes J'ai ajouté cela àma réponse.@vonholmes I have added that to my answer.
- 0
- 2013-04-17
- fuxia
Commentmettre unfichier .cssen file d'attente avant le chargement de style.css?Ou rendre le style.csspar défaut dépendant d'un autrefichier .css?
J'essaye de charger une réinitialisation .css,que style.css écraserait.
Voici ce quej'ai:
Cependant,ceciest chargé après style.css.