gpt4 book ai didi

css - 将缩小的 CSS 排入 Wordpress

转载 作者:行者123 更新时间:2023-11-28 02:53:03 28 4
gpt4 key购买 nike

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

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

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

谢谢,阿兹

最佳答案

style.css 和functions.php一样是WP的必备文件。没有可以换。无论您使用什么来缩小(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 文件加入到 functions.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' );

关于css - 将缩小的 CSS 排入 Wordpress,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46583584/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com