Come accodare lo stile prima di style.css
1 risposta
- voti
-
- 2013-04-17
Accoda anche lo
style.css
e impostanormalize
come dipendenza: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 caricherà le dipendenze oraprima automaticamente quando viene stampato
theme_name
.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.-
Graziemille!Solo una domanda veloce:non è quindinecessario accodare lo stile dinormalizzazione o vieneeseguito automaticamente quandoimpostato come dipendenza?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
-
Accodato automaticamente quando chiamato come dipendenza.Automatically enqueued when called as a dependency.
- 0
- 2013-04-17
- RRikesh
-
@vonholmes l'ho aggiunto allamia risposta.@vonholmes I have added that to my answer.
- 0
- 2013-04-17
- fuxia
Come accodo unfile .cssprima che venga caricato style.css?O rendereilfile style.csspredefinito dipendente da un altrofile .css?
Sto cercando di caricare un ripristino .css,che style.css sovrascriverebbe.
Ecco cosa ho:
Tuttavia questo viene caricato dopo style.css.