Created
November 29, 2017 18:42
-
-
Save glueckpress/b12903d030c58ac6c9587c7a91454e54 to your computer and use it in GitHub Desktop.
[WordPress][WP Rocket] Print values of minify options as HTML comments to wp_footer().
This file contains 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 | |
/** | |
* Quick and dirty addition to: | |
* https://github.com/wp-media/wp-rocket-helpers/tree/master/wp-rocket-debug-helper | |
*/ | |
add_action( 'wp_footer', function () { | |
if ( ! function_exists( 'get_rocket_option' ) ) { | |
return; | |
} | |
printf( '<!-- Minify CSS: %s -->', var_export( get_rocket_option( 'minify_css' ), true ) ) . PHP_EOL; | |
printf( '<!-- Minify JS: %s -->', var_export( get_rocket_option( 'minify_js' ), true ) ) . PHP_EOL; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment