It's my understanding that Wordpress now processes SASS files but for some reason mine don't work.
I'm trying to call it using wp_enqueue_style
directly in header.php
via the head
tag:
<?php wp_enqueue_style('stylesheet', get_template_directory_uri() . '/style.css', $ver = false, $media = 'screen') ?>
Instead, the file gets called as a normal CSS doc.
I attempted to rename style.css
to style.scss
but then the file doesn't load at all, so I guess the sass pre-processor just isn't firing.
It's my understanding that Wordpress now processes SASS files but for some reason mine don't work.
I'm trying to call it using wp_enqueue_style
directly in header.php
via the head
tag:
<?php wp_enqueue_style('stylesheet', get_template_directory_uri() . '/style.css', $ver = false, $media = 'screen') ?>
Instead, the file gets called as a normal CSS doc.
I attempted to rename style.css
to style.scss
but then the file doesn't load at all, so I guess the sass pre-processor just isn't firing.
1 Answer
Reset to default 2@nipponese is right. WordPress doesn't process Sass for themes. That was just for core files on wordpress.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1742389797a4434783.html
wp_enqueue_scripts
hook, too. Check the User Contributed Notes » Using a Hook section on this page. – Pat J Commented Jun 9, 2016 at 1:28