Skip to content

Instantly share code, notes, and snippets.

@nikola0203
Last active February 18, 2020 09:35
Show Gist options
  • Save nikola0203/dfa292e4e497419e337db8080fb2cf78 to your computer and use it in GitHub Desktop.
Save nikola0203/dfa292e4e497419e337db8080fb2cf78 to your computer and use it in GitHub Desktop.
Minify CSS with PHP
// Get CSS
$css = get_option( 'css' );
// Remove comments
$buffer = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $css);
// Remove space after colons
$buffer = str_replace(': ', ':', $buffer);
// Remove whitespace
$buffer = str_replace(array("\r\n", "\r", "\n", "\t", ' ', ' ', ' '), '', $buffer);
// Display CSS
if ( $buffer ) {
?>
<style type="text/css"><?php echo $buffer; ?></style>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment