php 海狸主题 - CSS版本缓存

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 海狸主题 - CSS版本缓存相关的知识,希望对你有一定的参考价值。

When you make a change to your Beaver Builder child theme CSS, the changes may not appear for people who have visited your site unless they clear their cache.

But by changing the code in bb-theme-child/functions.php from:

add_action( 'wp_enqueue_scripts', 'FLChildTheme::enqueue_scripts', 1000 );

to:

function enqueue_bb_child_theme_style() {
   wp_enqueue_style( 'fl-child-theme', FL_CHILD_THEME_URL . '/style.css', array(), wp_get_theme()->get('Version') );
}
add_action( 'wp_enqueue_scripts', 'enqueue_bb_child_theme_style', 1000 );

以上是关于php 海狸主题 - CSS版本缓存的主要内容,如果未能解决你的问题,请参考以下文章