尝试使用ADD_ACTION(After_Setup_Theme,Add_css_js,100000)加载我的css文件

时间:2020-06-06 作者:McLuvin

我正在尝试在使用add\\u操作加载主题和插件后加载我的CSS文件(在\\u setup\\u theme之后,add\\u CSS\\u js,100000)

function add_css_js(){
    wp_enqueue_style(
        \'color\',
        trailingslashit( get_theme_root_uri() ) . \'gemtechllc/css/color.css\' 
    );
    wp_enqueue_style(
        \'gem\',
        trailingslashit( get_theme_root_uri() ) . \'gemtechllc/css/gem.css\'
    );
}
add_action( \'after_setup_theme\', \'add_css_js\', 100000);

1 个回复
SO网友:Falz

抱歉,我无法发表评论,所以我必须在这里发布。

我将给出这个答案作为一些例子,然后希望您可以在您的情况下使用,或提供有关您的确切设置的进一步信息。

确保您使用的是儿童主题(如果您不确定这是什么,请阅读this

在我的网站中,我发现我正在使用storefront 从儿童主题开始,一个简单的方法就是this one 一次尝试

好了,现在我们在子主题函数的同一页上了。php添加或取消注释以下内容:

/**
 * Dequeue the Storefront Parent theme core CSS
 */
function sf_child_theme_dequeue_style() {
    wp_dequeue_style( \'storefront-style\' );
    wp_dequeue_style( \'storefront-woocommerce-style\' );
}

完成后,您可以将任何css添加到样式表(style.css)中,甚至可以从功能页中添加css。

我真的希望这有帮助!

如果没有,请提供主题和您尝试使用/调用的功能的详细信息。

干杯

相关推荐

无法将Elementor字体出列强大的CSS

我正在使用下面相同的代码对许多其他样式进行排队,但它不适用于Elementor和其他一些样式。function enqueue_content(){ wp_dequeue_style( \'elementor-icons-shared-0\' ); wp_dequeue_style( \'elementor-icons-fa-solid\' ); wp_dequeue_style( \'elementor-icons-fa-regular\' ); add_ac