1 <?php
2
3 /**
4 * Vanilla Jetpack related enhancements.
5 *
6 * @author Nevma, http://www.nevma.gr, info@nevma.gr
7 *
8 * @license http://www.gnu.org/licenses/gpl-3.0.en.html GPLv3
9 */
10
11
12
13 /**
14 * Forces Jetpack to stop concatenating the CSS files of each features. This
15 * way only the CSS of the enabled Jetpack features will be included, while
16 * otherwise Jetpack is tricked into including all of them in the
17 * concatenated version.
18 *
19 * @return void
20 */
21
22 function vanilla_jetpack_stop_concatenating_css () {
23
24 add_filter( 'jetpack_implode_frontend_css', '__return_false' );
25
26 }
27
28 ?>
29