PluginProbe
Lawwwing | Textos legales web y Banner de cookies / trunk
Lawwwing | Textos legales web y Banner de cookies vtrunk
1.5.3 trunk 1.0.0 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.2 1.0.20 1.0.21 1.0.22 1.0.23 1.0.24 1.0.26 1.0.27 1.0.28 1.0.29 1.0.3 All 59 releases
ibamu / integrations / wp_rocket.php

wp_rocket.php in Lawwwing | Textos legales web y Banner de cookies trunk, at integrations/wp_rocket.php

21 lines 684 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * WPRocket exclude script from minification
4 * See: https://docs.wp-rocket.me/article/976-exclude-files-from-defer-js#exclude-files-and-domains
5 */
6 add_filter('rocket_defer_inline_exclusions', function($inline_exclusions_list) {
7 $inline_exclusions_list[] = 'cdn.lawwwing.com';
8 return $inline_exclusions_list;
9 });
10
11 add_filter('rocket_excluded_inline_js_content', function($inline_exclusions_list) {
12 $inline_exclusions_list[] = 'cdn.lawwwing.com';
13 return $inline_exclusions_list;
14 });
15
16 add_filter('rocket_minify_excluded_external_js', function($excluded_external_js) {
17 $excluded_external_js[] = 'cdn.lawwwing.com';
18 return $excluded_external_js;
19 });
20 ?>
21