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
| /** | |
| * Unhook all action with some exception on wp_head and wp_footer | |
| */ | |
| function fr_unhook_wp_head_footer(){ | |
| global $wp_filter; // Where all the hooks and their actions are stored | |
| // Actions that should not be removed from the wp_head hook | |
| $wp_head_whitelist = array( 'wp_enqueue_scripts', 'wp_print_styles', 'wp_print_head_scripts' ); | |
| // Unhook actions from wp_head |
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 | |
| /** | |
| * ----------------------------------------------------------------------------------------- | |
| * Based on `https://github.com/mecha-cms/mecha-cms/blob/master/system/kernel/converter.php` | |
| * ----------------------------------------------------------------------------------------- | |
| */ | |
| // HTML Minifier | |
| function minify_html($input) { |
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 | |
| // specify your css-files and their order here | |
| $cssFiles = array( | |
| 'normalize.css', 'style.css', 'print.css', 'colorbox.css' | |
| ); | |
| // the file to write the compressed css to | |
| $minFileName = 'minified.css'; | |
| // thats all, just call this file in your browser and it will | |
| // build you a minimized css-file. then just link to this single |
NewerOlder