Cómo poner el estilo en cola antes de style.css
1 respuesta
- votos
-
- 2013-04-17
Pongaen cola
style.css
también yestablezcanormalize
como dependencia: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 cargará las dependencias ahoraprimero automáticamente cuando seimprima
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.-
¡Muchasgracias!Solo unapregunta rápida: ¿entoncesnonecesitoponeren colaelestilo denormalización,oesto se hace automáticamente cuando seestablece como una dependencia?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
-
@vonholmes He agregadoeso ami respuesta.@vonholmes I have added that to my answer.
- 0
- 2013-04-17
- fuxia
¿Cómopongoen cola un archivo .css antes de que se cargue style.css?¿O hacer queel style.csspredeterminado dependa de otro archivo .css?
Estoyintentando cargar un restablecimiento .css,que style.css sobrescribirá.
Estoes lo quetengo:
Sinembargo,esto se carga después de style.css.