将缩小的CSS排入Wordpress

时间:2017-10-05 10:36:33

标签: css wordpress

我目前正在使用带有wordpress主题的style.css(显然),当我编辑它时,我也在保存时缩小文件。这会生成另一个文件style.min.css,

现在,我已经在functions.php文件中排队了style.css,但我是否需要将它换成.min.css?

或者它会自动加载.min.css文件吗? (因此使用缩小的文件使其加载速度更快)。

谢谢, AZ

1 个答案:

答案 0 :(得分:0)

style.css是WP的必需文件,作为functions.php。不能互换。无论你用什么来缩小(SASS或任务跑步者)都需要输出到style.css。只记得添加"!"风格评论,以便他们不被缩小。即

/*!
Theme Name: theme_name
Theme URI: http://theme_name.com/
Author: theme_name
Author URI: http://theme_name.com/
Description: WordPress Theme for theme_name
*/

或者您可以简单地将min.css文件排入函数.php文件,并将style.css与评论部分保留在一起,但不包含css代码。

function new_theme_scripts() {

    wp_enqueue_style ( 

    wp_enqueue_style ( 'text-domain-new-css', get_template_directory_uri() . '/css/style.css' );

}
add_action( 'wp_enqueue_scripts', 'new_theme_scripts' );