Como enqueugue estilo antes do estilo.css
1 responda
- votos
-
- 2013-04-17
enqueue o
style.css
tambéme definirnormalize
como dependência: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 carregará as dependências agoraprimeiro automaticamente quando
theme_name
éimpresso.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.-
Ótimo,obrigado!Apenas umapergunta rápida -eunãoprecisoenqueue oestilonormalize,ouisso éfeito automaticamente quando definido como uma dependência?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
-
Enqueiu automaticamente quando chamado como dependência.Automatically enqueued when called as a dependency.
- 0
- 2013-04-17
- RRikesh
-
@Vonholmes Eu adicioneiisso àminha resposta.@vonholmes I have added that to my answer.
- 0
- 2013-04-17
- fuxia
Comofaçoparaenqueue um arquivo .css antes doestilo.css é carregado?Oufazer oestilopadrão.css dependentes de outro arquivo .css?
Estoutentando carregar uma redefinição .css,que oestilo.css sobrescreveria.
Aquiestá o queeutenho:
Noentanto,isso é carregado após oestilo.CSS.