wp_enqueue_style()不会消失

时间:2019-03-25 16:15:27

标签: wordpress wordpress-theming

我设置了一个子主题,并首先从父主题中加入了style.css文件,然后从子主题中对其进行了排队。

一切正常!

我想做的就是禁用对子样式表的调用,因此我从函数中删除了wp_enqueue_style('child-style',...)代码并保存了文件。

但是,每次我重新加载页面时,仍然会调用子主题样式。我已停止并启动服务器,但无济于事。

我正在使用XAMPP,我认为正在进行某种服务器端缓存,但是我不确定如何获取它来更新和刷新功能,而不调用子样式表。

有什么建议吗?

我尝试重命名我的函数,并且仅包括这样的父样式:

function worker401k_enqueue_parent_styles() {
    $parent_style = get_template_directory_uri();
    // Enque the Parent styles
    wp_enqueue_style( 'parent-style',
      get_template_directory_uri() . '/style.css',
      wp_get_theme()->get('Version'),
      'screen'
    );
}
// The third parameter is the priority
add_action( 'wp_enqueue_scripts', 'worker401k_enqueue_parent_styles', 10 );

我希望电话会消失,但不,它仍然存在!

http://localhost/wp_1/wp-content/themes/twentynineteen-child/style.css?ver = 0.0.1'type ='text / css'media ='all'/>

0 个答案:

没有答案