Passed
Push — development ( 95a828...f02a5c )
by
unknown
08:19
created
functions.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -9,23 +9,23 @@
 block discarded – undo
9 9
 defined( 'ABSPATH' ) || exit;
10 10
 
11 11
 $spurs_includes = array(
12
-	'/theme-settings.php',                  // Initialize theme default settings.
13
-	'/theme-wrapper.php',                   // Load theme wrapper.
14
-	'/setup.php',                           // Theme setup and custom theme supports.
15
-	'/widgets.php',                         // Register widget area.
16
-	'/enqueue.php',                         // Enqueue scripts and styles.
17
-	'/template-tags.php',                   // Custom template tags.
18
-	'/pagination.php',                      // Custom pagination.
19
-	'/load-more.php',                      // Custom Load More.
20
-	'/hooks.php',                           // Custom hooks.
21
-	'/extras.php',                          // Custom functions that act independently of the theme templates.
22
-	'/customizer.php',                      // Customizer additions.
23
-	'/custom-comments.php',                 // Custom comments.
24
-	'/jetpack.php',                         // Jetpack compatibility.
25
-	'/bootstrap-wp-navwalker.php',          // custom WordPress nav walker.
26
-	'/woocommerce.php',                     // WooCommerce functions.
27
-	'/editor.php',                          // Editor functions.
28
-	'/cleanup.php',                          // Editor functions.
12
+	'/theme-settings.php', // Initialize theme default settings.
13
+	'/theme-wrapper.php', // Load theme wrapper.
14
+	'/setup.php', // Theme setup and custom theme supports.
15
+	'/widgets.php', // Register widget area.
16
+	'/enqueue.php', // Enqueue scripts and styles.
17
+	'/template-tags.php', // Custom template tags.
18
+	'/pagination.php', // Custom pagination.
19
+	'/load-more.php', // Custom Load More.
20
+	'/hooks.php', // Custom hooks.
21
+	'/extras.php', // Custom functions that act independently of the theme templates.
22
+	'/customizer.php', // Customizer additions.
23
+	'/custom-comments.php', // Custom comments.
24
+	'/jetpack.php', // Jetpack compatibility.
25
+	'/bootstrap-wp-navwalker.php', // custom WordPress nav walker.
26
+	'/woocommerce.php', // WooCommerce functions.
27
+	'/editor.php', // Editor functions.
28
+	'/cleanup.php', // Editor functions.
29 29
 );
30 30
 
31 31
 foreach ( $spurs_includes as $file ) {
Please login to merge, or discard this patch.
wrapper.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 	</div>
25 25
 
26 26
 <?php
27
-if( 'pagination' === get_theme_mod( 'spurs_pagination' ) ){
27
+if ( 'pagination' === get_theme_mod( 'spurs_pagination' ) ) {
28 28
 	spurs_pagination();
29 29
 } else {
30 30
 	spurs_load_more();
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 	</div>
25 25
 
26 26
 <?php
27
-if( 'pagination' === get_theme_mod( 'spurs_pagination' ) ){
27
+if( 'pagination' === get_theme_mod( 'spurs_pagination' ) ) {
28 28
 	spurs_pagination();
29 29
 } else {
30 30
 	spurs_load_more();
Please login to merge, or discard this patch.