@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -add_action('after_setup_theme', function () { |
|
3 | +add_action('after_setup_theme', function() { |
|
4 | 4 | add_theme_support('title-tag'); |
5 | 5 | add_theme_support('post-thumbnails'); |
6 | 6 | |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | * Remove type attribute from link and script tags. |
9 | 9 | */ |
10 | 10 | global $wp_version; |
11 | - if ( version_compare( $wp_version, '5.3', '>=' ) ) { |
|
11 | + if (version_compare($wp_version, '5.3', '>=')) { |
|
12 | 12 | add_theme_support('html5', array('script', 'style')); |
13 | 13 | } |
14 | 14 | }); |