Skip to content

Instantly share code, notes, and snippets.

@rockschtar
Created May 29, 2016 11:09
Show Gist options
  • Save rockschtar/f60f714c5b68cc31af4f266f9583d458 to your computer and use it in GitHub Desktop.
Save rockschtar/f60f714c5b68cc31af4f266f9583d458 to your computer and use it in GitHub Desktop.
<?php
add_action('wp_print_styles', function () {
wp_dequeue_style('colormag_style');
}, 1000);
add_action('wp_head', function () {
$content = file_get_contents(get_stylesheet_directory() . '/style-inline.css');
$content = str_replace('{stylesheet_dir}', get_stylesheet_directory_uri(), $content);
$css_minify = new \MatthiasMullie\Minify\CSS();
$css_minify->add($content); ?>
<style type="text/css">
<?php echo $css_minify->minify(); ?>
</style><?php
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment