“当我跑步时”;主题检查“,建议不要使用CDN。我以这种方式使用引导CDN
function underscore_bootstrap_wp_scripts() {
/* bootstrap and font awesome and animate css */
wp_enqueue_style( \'bootstrap_cdn\', \'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css\' );
wp_enqueue_style( \'fontawesome_cdn\', \'https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css\' );
/* default underscores styles */
wp_enqueue_style( \'underscore_bootstrap_wp-style\', get_stylesheet_uri() );
/* bootstrap js */
wp_enqueue_script(\'bootstrap_js_cdn\', \'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js\',array(\'jquery\'),\'\',true);
/* default underscores js */
//wp_enqueue_script( \'underscore_bootstrap_wp-navigation\', get_template_directory_uri() . \'/js/navigation.js\', array(), \'20151215\', true );
wp_enqueue_script( \'underscore_bootstrap_wp-skip-link-focus-fix\', get_template_directory_uri() . \'/js/skip-link-focus-fix.js\', array(), \'20151215\', true );
/* my stylesheet and js */
wp_enqueue_style( \'custom_style_css\', get_template_directory_uri(). \'/css/main.css\' );
wp_enqueue_script(\'custom_js\', get_template_directory_uri(). \'/js/main.js\',array(\'jquery\',\'bootstrap_js_cdn\'),\'\',true);
if ( is_singular() && comments_open() && get_option( \'thread_comments\' ) ) {
wp_enqueue_script( \'comment-reply\' );
}
}
“The”;主题检查“;插件显示-
建议:在代码maxcdn中找到CDN的URL。bootstrapcdn。com/font真棒。您不应该从CDN加载CSS或Javascript资源,请将它们与主题捆绑在一起。
建议:在代码maxcdn中找到CDN的URL。bootstrapcdn。com/引导程序。您不应该从CDN加载CSS或Javascript资源,请将它们与主题捆绑在一起。