Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | public function init() |
||
20 | { |
||
21 | // Remove the WordPress version from the <head> tag |
||
22 | add_filter('the_generator', '__return_empty_string'); |
||
|
|||
23 | // remove really simple discovery link |
||
24 | remove_action('wp_head', 'rsd_link'); |
||
25 | |||
26 | // remove version from assets url. |
||
27 | add_filter('style_loader_src', [$this, 'remove_wp_ver_css_js'], 9999); |
||
28 | add_filter('script_loader_src', [$this, 'remove_wp_ver_css_js'], 9999); |
||
29 | } |
||
47 |