Completed
Pull Request — master (#210)
by
unknown
04:22
created
inc/theme.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 });
Please login to merge, or discard this patch.