$css=str_replace('>','>',$css);// kses replaces lone '>' with >
$css=str_replace('>','>',$css);// kses replaces lone '>' with >
// Why both KSES and strip_tags? Because we just added some '>'.
// Why both KSES and strip_tags? Because we just added some '>'.
$css=strip_tags($css);// phpcs:ignore WordPress.WP.AlternativeFunctions.strip_tags_strip_tags -- scared to update this to wp_strip_all_tags since we're building a CSS file here.