在WordPress主题中,您如何有条件地包含ie8及以下的脚本?这主要是为各种html5 / css3功能应用polyfill。我看到wp有$ is_IE变量,它可以用作条件,只包含IE的脚本。有没有办法只为某些版本的IE添加脚本而不是全部?这很简单,有些HTML即条件注释,但我想将这些脚本全部包含在我的函数文件中。
HTML中特定版本的条件:
<!--[if lt IE 9]> <script src="iepolyfill.min.js"></script> <![endif]-->
WP中所有IE的条件:
global $is_IE;
if ( $is_IE ) {
wp_enqueue_script( 'iepolyfill', bloginfo('stylesheet_directory').'/js/iepolyfill.min.js' );
}
我环顾四周,主要只查找有关wp后端的条件脚本的详细信息。
有什么建议吗?
答案 0 :(得分:71)
适用于WordPress 4.2 +
使用wp_script_add_data
将脚本包装在条件注释中:
wp_enqueue_script( 'html5shiv', '//cdn.jsdelivr.net/html5shiv/3.7.2/html5shiv.js' );
wp_script_add_data( 'html5shiv', 'conditional', 'lt IE 9' );
wp_enqueue_script( 'respond', get_template_directory_uri() . '/js/respond.min.js' );
wp_script_add_data( 'respond', 'conditional', 'lt IE 9' );
请确保在调用wp_script_add_data
之前注册脚本(注册由上面的wp_enqueue_script
处理),并且传递给wp_script_add_data
的第一个参数与您传递的第一个参数匹配你注册了脚本。
对于WordPress 4.1
您今天可以使用script_loader_tag
filter将条件注释中包含的脚本排入队列。这是一个示例实现:
wp_enqueue_script( 'html5shiv', '//cdn.jsdelivr.net/html5shiv/3.7.2/html5shiv.js', array(), '3.7.2', false );
add_filter( 'script_loader_tag', function( $tag, $handle ) {
if ( $handle === 'html5shiv' ) {
$tag = "<!--[if lt IE 9]>$tag<![endif]-->";
}
return $tag;
}, 10, 2 );
如果您想以相同的方式包含多个脚本,可以使用以下内容:
// Conditional polyfills
$conditional_scripts = array(
'html5shiv' => '//cdn.jsdelivr.net/html5shiv/3.7.2/html5shiv.js',
'html5shiv-printshiv' => '//cdn.jsdelivr.net/html5shiv/3.7.2/html5shiv-printshiv.js',
'respond' => '//cdn.jsdelivr.net/respond/1.4.2/respond.min.js'
);
foreach ( $conditional_scripts as $handle => $src ) {
wp_enqueue_script( $handle, $src, array(), '', false );
}
add_filter( 'script_loader_tag', function( $tag, $handle ) use ( $conditional_scripts ) {
if ( array_key_exists( $handle, $conditional_scripts ) ) {
$tag = "<!--[if lt IE 9]>$tag<![endif]-->";
}
return $tag;
}, 10, 2 );
答案 1 :(得分:24)
wp_register_script()
。对于IE,条件标签非常有效。以下是如何在脚本中添加条件标记的示例,例如HTML5shiv:
global $wp_scripts;
wp_register_script(
'html5shiv',
get_bloginfo('template_url').'/assets/js/html5shiv.js',
array(),
'3.6.2'
);
$wp_scripts->add_data( 'html5shiv', 'conditional', 'lt IE 9' );
答案 2 :(得分:8)
WordPress 4.2及更高版本的解决方案
正确的方法是应用wp_enqueue_script,因为它是JavaScripts,而不是css样式。此外,最好使用get_bloginfo('stylesheet_url')来确保它也适用于Child Themes。
/**
* IE Fallbacks
*/
function load_IE_fallback() {
wp_register_script( 'ie_html5shiv', get_bloginfo('stylesheet_url'). '/js/html5shiv.min.js', __FILE__, false, '3.7.2' );
wp_enqueue_script( 'ie_html5shiv');
wp_script_add_data( 'ie_html5shiv', 'conditional', 'lt IE 9' );
wp_register_script( 'ie_respond', get_bloginfo('stylesheet_url'). '/js/respond.min.js', __FILE__, false, '1.4.2' );
wp_enqueue_script( 'ie_respond');
wp_script_add_data( 'ie_respond', 'conditional', 'lt IE 9' );
}
add_action( 'wp_enqueue_scripts', 'load_IE_fallback' );
答案 3 :(得分:6)
使用从CDN加载的脚本更新WordPress 4.7.3:
add_action( 'wp_enqueue_scripts', 'load_IE_fallback' );
function load_IE_fallback() {
wp_register_script( 'ie_html5shiv', 'https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js', '', '3.7.3', false );
wp_register_script( 'ie_respond', 'https://oss.maxcdn.com/respond/1.4.2/respond.min.js', '', '1.4.2', false );
wp_enqueue_script( 'ie_html5shiv');
wp_enqueue_script( 'ie_respond');
wp_script_add_data( 'ie_html5shiv', 'conditional', 'lt IE 9' );
wp_script_add_data( 'ie_respond', 'conditional', 'lt IE 9' );
}
答案 4 :(得分:2)
执行此操作的最佳方法是将脚本排入队列,然后使用wp_style_add_data()放置条件。此方法正在被twenty thirteen
等官方主题使用有一个与此相似的答案,但如果在错误的情况下,他会增加额外的费用。
wp_register_style( 'ie_html5shiv', get_template_directory_uri() . '/js/html5shiv.js' );
wp_enqueue_style( 'ie_html5shiv');
wp_style_add_data( 'ie_html5shiv', 'conditional', 'lt IE 9' );
wp_register_style( 'ie_respond', get_template_directory_uri() . '/js/respond.min.js' );
wp_enqueue_style( 'ie_respond');
wp_style_add_data( 'ie_respond', 'conditional', 'lt IE 9' );
答案 5 :(得分:1)
由于wordpress是一个PHP脚本,它可以通过$ _SERVER
访问服务器变量然后,您可以使用PHP PHP: If internet explorer 6, 7, 8 , or 9
搜索检测浏览器答案 6 :(得分:1)
尝试使用wp_style_add_data()
函数(在twentythirteen和twentyfourteen主题中正式使用:
wp_enqueue_style( 'iepolyfill', bloginfo( 'stylesheet_directory' ) . '/js/iepolyfill.min.js' );
wp_style_add_data( 'iepolyfill', 'conditional', 'if lt IE 9' );
更新:由于WordPress&gt; = 4.2.0,因此有一个以相同方式使用的功能。它被称为:
wp_script_add_data()