/ 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.
Here 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);