我要接管以前的开发人员的网站,而我在使用SASS方面经验不足。看起来文件设置正确,但是组件的显示方式存在一些问题,因此我怀疑其中未正确包含某些内容。
在style.scss文件中,看起来好像正确导入了分部,但是我认为,如果SASS的工作方式与原始CSS类似,style.scss文件本身可能无法正确地放入functions.php文件中。
如何排队style.scss文件?我需要为此安装编译器吗?
function theme_scripts() {
wp_enqueue_style( 'theme-style', get_stylesheet_uri(), array(), '2016-
09-14-3' );
if ( is_page_template( 'homepage.php' ) ) :
wp_enqueue_style( 'homepage-style', get_template_directory_uri() .
'/css/homepage.css' );
endif;
wp_enqueue_script( 'slick-slider', get_template_directory_uri() .
'/js/slick.min.js', array( 'jquery' ), '20120206', true );
主要问题是滑动滑块无法正确加载。