admin管理员组文章数量:1406308
/ has code that removes all the enqueued styles including those that may be coming from other plugins besides the ones from the active theme.
Is it possible to remove all enqueued assets from only the current active theme without hardcoding the theme name or when it is not known which theme is active?
i.e., achieve the result of
remove_action( 'wp_enqueue_scripts', 'twentynineteen_scripts' );
when twentynineteen theme is active
or
remove_action( 'wp_enqueue_scripts', 'twentytwenty_register_styles' );
remove_action( 'wp_enqueue_scripts', 'twentytwenty_register_scripts' );
when twentytwenty is active.
https://gelwp/articles/removing-all-enqueued-and-default-css-scripts-in-wordpress/ has code that removes all the enqueued styles including those that may be coming from other plugins besides the ones from the active theme.
Is it possible to remove all enqueued assets from only the current active theme without hardcoding the theme name or when it is not known which theme is active?
i.e., achieve the result of
remove_action( 'wp_enqueue_scripts', 'twentynineteen_scripts' );
when twentynineteen theme is active
or
remove_action( 'wp_enqueue_scripts', 'twentytwenty_register_styles' );
remove_action( 'wp_enqueue_scripts', 'twentytwenty_register_scripts' );
when twentytwenty is active.
Share Improve this question asked Nov 14, 2019 at 5:23 Sridhar KatakamSridhar Katakam 1552 silver badges23 bronze badges 1- WordPress doesn’t know whether scripts or styles were enqueue by a theme or plugin. You can’t even rely on the URL, because themes could enqueue external assets. What’s your ultimate goal here? If it’s a child theme, the just check the parent theme manually to find all the asset handles. – Jacob Peattie Commented Nov 14, 2019 at 7:10
1 Answer
Reset to default 2Here you go. I took this out of my mailoptin plugin. Adapt the code to your use case.
add_action('wp_enqueue_scripts', function () use ($wp_get_theme) {
global $wp_styles;
global $wp_scripts;
$wp_get_theme = wp_get_theme();
$child_theme = $wp_get_theme->get_stylesheet();
$parent_theme = $wp_get_theme->get_template();
foreach ($wp_scripts->registered as $key => $value) {
$src = $value->src;
if (strpos($src, "themes/$child_theme/") !== false || strpos($src, "themes/$parent_theme/") !== false) {
unset($wp_scripts->registered[$key]);
}
if (strpos($src, "/uploads/$child_theme/") !== false || strpos($src, "/uploads/$parent_theme/") !== false) {
unset($wp_scripts->registered[$key]);
}
}
}, 20);
本文标签: wp enqueue scriptHow to remove all enqueued assets from the active theme
版权声明:本文标题:wp enqueue script - How to remove all enqueued assets from the active theme? 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745002313a2637053.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论