mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
12 lines
338 B
Text
12 lines
338 B
Text
add_filter('print_styles_array', 'custom_print_styles_array');
|
|
function custom_print_styles_array($styles){
|
|
$styles_to_remove = array('mailpoet_public');
|
|
if(is_array($styles) && count($styles) > 0){
|
|
foreach($styles as $key => $code){
|
|
if(in_array($code, $styles_to_remove)){
|
|
unset($styles[$key]);
|
|
}
|
|
}
|
|
}
|
|
return $styles;
|
|
}
|