Can't catch enqueued style

时间:2017-02-24 作者:user3013494

I\'am stuck in catching enqueued style(我被困在捕捉排队风格中)。我尝试优化网站的PageSpeed。站点使用插件WPBakery Visual ComposerWYSIWYG editor. 每个块都支持Google字体,其中添加了wp_enqueue_style, 但没有add_action, 打个电话就行了wp_enqueue_style. 在我的functions.php, 当我尝试退出此样式的队列,用JS加载此字体时,我在队列样式列表中没有看到此样式。我调用此代码,但在列表中看不到id

function inspect_styles() {
        global $wp_styles;
        print_r($wp_styles->queue);
        print_r($wp_styles->registered);
}
add_action( \'wp_print_scripts\', \'inspect_styles\' );
样式id自动生成-可能这就是原因?

wp_enqueue_style( \'vc_google_fonts_\' . vc_build_safe_css_class( $google_fonts_data[\'values\'][\'font_family\'] ), \'//fonts.googleapis.com/css?family=\' . $google_fonts_data[\'values\'][\'font_family\'] . $subsets );

1 个回复
SO网友:Nuno Sarmento

这里是一个很好的开始,你肯定会找到你的答案-https://wpbakery.atlassian.net/wiki/pages/viewpage.action?pageId=524319

相关推荐

更新页面(update-core.php)和插件页面(plugins.php)恢复到主页

我在Wordpress网站的管理视图中收到通知,我有一个网站和插件的可用更新(在我的网络管理仪表板中,在“插件”和“更新”旁边的红色圆圈中有“1”)。。。但当我尝试同时转到“更新”页和;插件页面,是否显示主页?此时的URL为http:///wp-admin/network/update-core.php/和http:///wp-admin/plugins.php/分别地因此,我永远无法到达真正的更新页面,也无法更新我的Wordpress或插件。如何显示更新或插件页面?