gpt4 book ai didi

css - 如何向我的 wordpress 添加新的样式表

转载 作者:太空宇宙 更新时间:2023-11-04 04:10:27 26 4
gpt4 key购买 nike

我一直在尝试向我的模板添加新样式表,但没有成功。这是我第一次创建 wordpress 模板。我正在使用 underscore这就是我在 functions.php 中的内容:

style.css 是模板启动器附带的样式表。

wp_enqueue_style( 'name-style', get_stylesheet_uri() );

我只想添加 foundation-icons.cssfoundation.min.csscustom.css。有什么帮助吗?谢谢。

最佳答案

这就是我在我所有的模板

中的做法
/* Enqueue Scripts
-----------------------------------------------------------------*/
add_action( 'wp_enqueue_scripts', 'template_enqueue_scripts' );
function template_enqueue_scripts() {
wp_register_style('Sub-CSS', get_template_directory_uri() .'sub-style.css');
wp_enqueue_style( 'Sub-CSS');
}

据我所知,这是最好的方式,就像我说的,我总是这样做。它工作完美,我这样做从来没有遇到过问题。

编辑

您会注意到没有其他人使用 wp_register_style,wp_register_style 是为实际排队设置样式的最安全方法。

确保将 wp_register_style 和 wp_enqueue_style 包装在一个函数中。

关于css - 如何向我的 wordpress 添加新的样式表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20777278/

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