| 1 |
<?php |
| 2 |
namespace Kibo\PhastPlugins\PhastPress\Compat; |
| 3 |
|
| 4 |
class BurstStatistics { |
| 5 |
public function setup() { |
| 6 |
if (!class_exists('burst_statistics')) { |
| 7 |
return; |
| 8 |
} |
| 9 |
|
| 10 |
add_filter('wp_enqueue_scripts', function () { |
| 11 |
wp_scripts()->add_data('burst', 'phast_no_defer', true); |
| 12 |
wp_scripts()->add_data('burst-timeme', 'phast_no_defer', true); |
| 13 |
}); |
| 14 |
} |
| 15 |
} |
| 16 |
|