I\'am stuck in catching enqueued style(我被困在捕捉排队风格中)。我尝试优化网站的PageSpeed。站点使用插件WPBakery Visual Composer
像WYSIWYG 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 );