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

时间:2020-05-19 作者:flinch85

我正在使用下面相同的代码对许多其他样式进行排队,但它不适用于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_action(\'wp_enqueue_scripts\', \'enqueue_content\', 20);
我还尝试了他们支持的方法:https://docs.elementor.com/article/286-speed-up-a-slow-site

编辑:似乎我无法出列的样式是从另一个父wp内容文件夹加载的(这是一个多站点)。

1 个回复
SO网友:Tommizzy

我遇到了同样的问题。这个片段对我有用。

add_action(\'elementor/frontend/after_register_styles\',function() {
    foreach( [ \'solid\', \'regular\', \'brands\' ] as $style ) {
        wp_deregister_style( \'elementor-icons-fa-\' . $style );
    }
}, 20 );
您可能只需要固体和常规出列。

add_action(\'elementor/frontend/after_register_styles\',function() {
    foreach( [ \'solid\', \'regular\' ] as $style ) {
        wp_deregister_style( \'elementor-icons-fa-\' . $style );
    }
}, 20 );

Elementor Reference