Completed
Branch master (7c3821)
by SILENT
02:40
created
inc/template-tags.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@
 block discarded – undo
190 190
  * @link https://core.trac.wordpress.org/ticket/27094
191 191
  *
192 192
  * @param bool         $in_same_term   Optional. Whether returned post should be in a same taxonomy term.
193
- * @param array|string $excluded_terms Optional. Array or comma-separated list of excluded term IDs.
193
+ * @param string $excluded_terms Optional. Array or comma-separated list of excluded term IDs.
194 194
  * @param bool         $start          Optional. Whether to retrieve first or last post.
195 195
  * @param string       $taxonomy       Optional. Taxonomy, if $in_same_term is true. Default 'category'.
196 196
  * @return mixed Array containing the boundary post object if successful, null otherwise.
Please login to merge, or discard this patch.
functions.php 1 patch
Indentation   +7 added lines, -7 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
 		));
@@ -100,8 +100,8 @@  discard block
 block discarded – undo
100 100
 		) );
101 101
 
102 102
 		/**
103
-	 * Enable support for Post Formats
104
-	 */
103
+		 * Enable support for Post Formats
104
+		 */
105 105
 		add_theme_support( 'post-formats', array(
106 106
 			'aside',
107 107
 			'image',
@@ -122,9 +122,9 @@  discard block
 block discarded – undo
122 122
 	}
123 123
 
124 124
 	/**
125
-	* This theme styles the visual editor to resemble the theme style,
126
-	* specifically font, colors, icons, and column width.
127
-	*/
125
+	 * This theme styles the visual editor to resemble the theme style,
126
+	 * specifically font, colors, icons, and column width.
127
+	 */
128 128
 	add_editor_style( array( '/assets/css/editor-style.css', '/assets/fonts/fenix.css' ) );
129 129
 
130 130
 	// Indicate widget sidebars can use selective refresh in the Customizer.
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
@@ -95,9 +95,9 @@
 block discarded – undo
95 95
 function strip_custom_dashboard_widgets() {
96 96
 	wp_add_dashboard_widget( 'strip_rss_dashboard_widget', __( 'SILENT COMICS on tumblr', 'strip' ), 'strip_rss_dashboard_widget' );
97 97
 	/**
98
-	* Be sure to drop any other created Dashboard Widgets.
99
-	* in this function and they will all load.
100
-	*/
98
+	 * Be sure to drop any other created Dashboard Widgets.
99
+	 * in this function and they will all load.
100
+	 */
101 101
 }
102 102
 // removing the dashboard widgets.
103 103
 add_action( 'wp_dashboard_setup', 'disable_default_dashboard_widgets' );
Please login to merge, or discard this patch.