Created
May 29, 2016 11:09
-
-
Save rockschtar/f60f714c5b68cc31af4f266f9583d458 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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