Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | public function __construct() |
||
17 | { |
||
18 | add_action('wp_default_scripts', [$this, 'dequeueJQueryMigrate']); |
||
|
|||
19 | |||
20 | if (defined('ICL_LANGUAGE_CODE')) { |
||
21 | // DO NOT LOAD WPML LANG SWITCHER CSS |
||
22 | define('ICL_DONT_LOAD_LANGUAGE_SELECTOR_CSS', true); |
||
23 | add_action('wp_head', [$this, 'dequeueSitepressJs'], 11); |
||
24 | } |
||
25 | } |
||
26 | |||
41 |