Completed
Push — master ( d28bf4...c0a80f )
by SILENT
01:56
created
inc/custom-header.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,8 +29,8 @@
 block discarded – undo
29 29
 		'admin-preview-callback' => 'strip_admin_header_image',
30 30
 	) ) );
31 31
 	/**
32
- * Register default header image
33
- */
32
+	 * Register default header image
33
+	 */
34 34
 	register_default_headers( array(
35 35
 		'default-image' => array(
36 36
 		'url'  			    => '%s/assets/images/Default-header.png',
Please login to merge, or discard this patch.
functions.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -81,8 +81,8 @@  discard block
 block discarded – undo
81 81
 		add_filter( 'the_content', 'filter_ptags_on_images' );
82 82
 
83 83
 		/**
84
-	 	* This theme uses wp_nav_menu() in one location.
85
-	 	*/
84
+		 * This theme uses wp_nav_menu() in one location.
85
+		 */
86 86
 		register_nav_menus(array(
87 87
 			'primary' => __( 'Primary Menu', 'strip' ),
88 88
 		));
@@ -101,8 +101,8 @@  discard block
 block discarded – undo
101 101
 		) );
102 102
 
103 103
 		/**
104
-	 * Enable support for Post Formats
105
-	 */
104
+		 * Enable support for Post Formats
105
+		 */
106 106
 		add_theme_support( 'post-formats', array(
107 107
 			'image',
108 108
 			'video',
@@ -121,9 +121,9 @@  discard block
 block discarded – undo
121 121
 	}
122 122
 
123 123
 	/**
124
-	* This theme styles the visual editor to resemble the theme style,
125
-	* specifically font, colors, icons, and column width.
126
-	*/
124
+	 * This theme styles the visual editor to resemble the theme style,
125
+	 * specifically font, colors, icons, and column width.
126
+	 */
127 127
 	add_editor_style( array( '/assets/css/editor-style.css', '/assets/fonts/fenix.css' ) );
128 128
 
129 129
 	// Indicate widget sidebars can use selective refresh in the Customizer.
@@ -417,8 +417,8 @@  discard block
 block discarded – undo
417 417
 		'query_var'	                 => true,
418 418
 		'rewrite'                    => array( 'slug' => 'story' ),
419 419
 		'show_in_rest'               => true,
420
-    'rest_base'                  => 'genre',
421
-    'rest_controller_class'      => 'WP_REST_Terms_Controller',
420
+	'rest_base'                  => 'genre',
421
+	'rest_controller_class'      => 'WP_REST_Terms_Controller',
422 422
 	);
423 423
 	register_taxonomy( 'story', array( 'comic' ), $args );
424 424
 	register_taxonomy_for_object_type( 'story', 'comic' );
Please login to merge, or discard this patch.
assets/admin.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -96,9 +96,9 @@
 block discarded – undo
96 96
 function strip_custom_dashboard_widgets() {
97 97
 	wp_add_dashboard_widget( 'strip_rss_dashboard_widget', __( 'SILENT COMICS blog', 'strip' ), 'strip_rss_dashboard_widget' );
98 98
 	/**
99
-	* Be sure to drop any other created Dashboard Widgets.
100
-	* in this function and they will all load.
101
-	*/
99
+	 * Be sure to drop any other created Dashboard Widgets.
100
+	 * in this function and they will all load.
101
+	 */
102 102
 }
103 103
 // removing the dashboard widgets.
104 104
 add_action( 'wp_dashboard_setup', 'disable_default_dashboard_widgets' );
Please login to merge, or discard this patch.