Completed
Pull Request — master (#2)
by
unknown
02:36
created
assets/admin.php 2 patches
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.
Spacing   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -27,20 +27,20 @@  discard block
 block discarded – undo
27 27
 function disable_default_dashboard_widgets() {
28 28
 	global $wp_meta_boxes;
29 29
 	// unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now'] );    // Right Now Widget.
30
-	unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_activity'] );        // Activity Widget.
31
-	unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments'] ); // Comments Widget.
32
-	unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links'] );  // Incoming Links Widget.
33
-	unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins'] );         // Plugins Widget.
30
+	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_activity']); // Activity Widget.
31
+	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']); // Comments Widget.
32
+	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']); // Incoming Links Widget.
33
+	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']); // Plugins Widget.
34 34
 
35
-	unset( $wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press'] );       // Quick Press Widget.
36
-	unset( $wp_meta_boxes['dashboard']['side']['core']['dashboard_recent_drafts'] );     // Recent Drafts Widget.
37
-	unset( $wp_meta_boxes['dashboard']['side']['core']['dashboard_primary'] );           // WordPress related feed.
38
-	unset( $wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary'] );         //
35
+	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']); // Quick Press Widget.
36
+	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_recent_drafts']); // Recent Drafts Widget.
37
+	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']); // WordPress related feed.
38
+	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']); //
39 39
 
40 40
 	// remove plugin dashboard boxes
41
-	unset( $wp_meta_boxes['dashboard']['normal']['core']['yoast_db_widget'] );           // Yoast's SEO Plugin Widget.
42
-	unset( $wp_meta_boxes['dashboard']['normal']['core']['rg_forms_dashboard'] );        // Gravity Forms Plugin Widget.
43
-	unset( $wp_meta_boxes['dashboard']['normal']['core']['bbp-dashboard-right-now'] );   // bbPress Plugin Widget.
41
+	unset($wp_meta_boxes['dashboard']['normal']['core']['yoast_db_widget']); // Yoast's SEO Plugin Widget.
42
+	unset($wp_meta_boxes['dashboard']['normal']['core']['rg_forms_dashboard']); // Gravity Forms Plugin Widget.
43
+	unset($wp_meta_boxes['dashboard']['normal']['core']['bbp-dashboard-right-now']); // bbPress Plugin Widget.
44 44
 
45 45
 	/*
46 46
 	Have more plugin widgets you'd like to remove?
@@ -63,27 +63,27 @@  discard block
 block discarded – undo
63 63
  * RSS Dasboars Widget
64 64
  */
65 65
 function strip_rss_dashboard_widget() {
66
-	if ( function_exists( 'fetch_feed' ) ) {
67
-		$feed = fetch_feed( 'https://silent-comics.tumblr.com/rss/' );// specify the source feed.
68
-		if ( is_wp_error( $feed ) ) {
66
+	if (function_exists('fetch_feed')) {
67
+		$feed = fetch_feed('https://silent-comics.tumblr.com/rss/'); // specify the source feed.
68
+		if (is_wp_error($feed)) {
69 69
 			$limit = 0;
70 70
 			$items = 0;
71 71
 		} else {
72
-			$limit = $feed->get_item_quantity( 7 );                        // specify number of items.
73
-			$items = $feed->get_items( 0, $limit );                        // create an array of items.
72
+			$limit = $feed->get_item_quantity(7); // specify number of items.
73
+			$items = $feed->get_items(0, $limit); // create an array of items.
74 74
 		}
75 75
 	}
76
-	if ( 0 === $limit ) { echo '<div>The RSS Feed is either empty or unavailable.</div>'; // fallback message.
77
-	} else { foreach ( $items as $item ) { ?>
76
+	if (0 === $limit) { echo '<div>The RSS Feed is either empty or unavailable.</div>'; // fallback message.
77
+	} else { foreach ($items as $item) { ?>
78 78
 
79 79
 	<h4 style="margin-bottom: 0;">
80
-		<a href="<?php echo $item->get_permalink(); ?>" title="<?php echo mysql2date( __( 'j F Y @ g:i a', 'strip' ), $item->get_date( 'Y-m-d H:i:s' ) ); ?>" target="_blank">
80
+		<a href="<?php echo $item->get_permalink(); ?>" title="<?php echo mysql2date(__('j F Y @ g:i a', 'strip'), $item->get_date('Y-m-d H:i:s')); ?>" target="_blank">
81 81
 			<?php echo $item->get_title(); ?>
82 82
 		</a>
83 83
 	</h4>
84 84
 	<p style="margin-top: 0.5em;
85 85
 			  .inside { max-width: 240px;}">
86
-	<?php echo substr( $item->get_description(), 0, 600 ); ?>
86
+	<?php echo substr($item->get_description(), 0, 600); ?>
87 87
 	</p>
88 88
 	<?php }
89 89
 	}
@@ -93,16 +93,16 @@  discard block
 block discarded – undo
93 93
  * Calling all custom dashboard widgets.
94 94
  */
95 95
 function strip_custom_dashboard_widgets() {
96
-	wp_add_dashboard_widget( 'strip_rss_dashboard_widget', __( 'SILENT COMICS on tumblr', 'strip' ), 'strip_rss_dashboard_widget' );
96
+	wp_add_dashboard_widget('strip_rss_dashboard_widget', __('SILENT COMICS on tumblr', 'strip'), 'strip_rss_dashboard_widget');
97 97
 	/**
98 98
 	* Be sure to drop any other created Dashboard Widgets.
99 99
 	* in this function and they will all load.
100 100
 	*/
101 101
 }
102 102
 // removing the dashboard widgets.
103
-add_action( 'wp_dashboard_setup', 'disable_default_dashboard_widgets' );
103
+add_action('wp_dashboard_setup', 'disable_default_dashboard_widgets');
104 104
 // adding any custom widgets.
105
-add_action( 'wp_dashboard_setup', 'strip_custom_dashboard_widgets' );
105
+add_action('wp_dashboard_setup', 'strip_custom_dashboard_widgets');
106 106
 
107 107
 
108 108
 /************* CUSTOM LOGIN PAGE *****************/
@@ -113,10 +113,10 @@  discard block
 block discarded – undo
113 113
  * See http://codex.wordpress.org/Plugin_API/Action_Reference/login_enqueue_scripts.
114 114
  */
115 115
 function strip_login_css() {
116
-	 wp_enqueue_style( 'strip_login_css', get_template_directory_uri() . '/assets/css/login.css', false );
116
+	 wp_enqueue_style('strip_login_css', get_template_directory_uri() . '/assets/css/login.css', false);
117 117
 
118 118
 	// Enqueue custom font to the login form.
119
-	wp_enqueue_style( 'inconsolata', get_template_directory_uri() . '/assets/fonts/inconsolata.css', array(), null );
119
+	wp_enqueue_style('inconsolata', get_template_directory_uri() . '/assets/fonts/inconsolata.css', array(), null);
120 120
 }
121 121
 
122 122
 /**
@@ -129,14 +129,14 @@  discard block
 block discarded – undo
129 129
 	 * Changing the alt text on the logo to show your site name.
130 130
 	 */
131 131
 function strip_login_title() {
132
-	return get_option( 'blogname' ); }
132
+	return get_option('blogname'); }
133 133
 
134 134
 // calling it only on the login page.
135
-add_action( 'login_enqueue_scripts', 'strip_login_css', 10 );
135
+add_action('login_enqueue_scripts', 'strip_login_css', 10);
136 136
 // Add custom font to the login form.
137
-add_action( 'login_enqueue_scripts', 'inconsolata.css', 10 );
138
-add_filter( 'login_headerurl', 'strip_login_url' );
139
-add_filter( 'login_headertitle', 'strip_login_title' );
137
+add_action('login_enqueue_scripts', 'inconsolata.css', 10);
138
+add_filter('login_headerurl', 'strip_login_url');
139
+add_filter('login_headertitle', 'strip_login_title');
140 140
 
141 141
 
142 142
 /************* CUSTOMIZE ADMIN *******************/
@@ -153,10 +153,10 @@  discard block
 block discarded – undo
153 153
  */
154 154
 function strip_custom_admin_footer() {
155 155
 	?>
156
-	<span id="footer-thankyou"><a href="<?php echo esc_url( __( 'http://silent-comics.com/', 'strip' ) ); ?>"><?php printf( esc_html__( 'Developed by %s', 'strip' ), 'Silent Comics' ); ?></a>
156
+	<span id="footer-thankyou"><a href="<?php echo esc_url(__('http://silent-comics.com/', 'strip')); ?>"><?php printf(esc_html__('Developed by %s', 'strip'), 'Silent Comics'); ?></a>
157 157
 			<span class="sep"> | </span>
158
-			<a href="<?php echo esc_url( __( 'https://github.com/SilentComics/Strip/', 'strip' ) ); ?>"><?php printf( esc_html__( 'Contribute on %s', 'strip' ), 'GitHub' ); ?></a>
158
+			<a href="<?php echo esc_url(__('https://github.com/SilentComics/Strip/', 'strip')); ?>"><?php printf(esc_html__('Contribute on %s', 'strip'), 'GitHub'); ?></a>
159 159
 <?php }
160 160
 
161 161
 // adding it to the admin area.
162
-add_filter( 'admin_footer_text', 'strip_custom_admin_footer' );
162
+add_filter('admin_footer_text', 'strip_custom_admin_footer');
Please login to merge, or discard this patch.
assets/inline-logo.svg.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,3 +1,3 @@
 block discarded – undo
1
-<a href="<?php echo esc_url( site_url( '/' ) ); ?>" class="logo"><object type="image/svg+xml" data="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOTggOTkiPjxzdHlsZT4uc3R5bGUwe2ZpbGw6ICMwMDA7fTpob3ZlciB7ZmlsbDogI0ZGNzM2OTt9PC9zdHlsZT4gPHBhdGggZD0iTTE1LjQgNDQuMmMtNC4xIDAtNy4xLTMuMi03LjYtNy4xbC00LjEgMS4yYzEuMiA1LjkgNS44IDkuOSAxMS45IDkuOWM2LjYgMCAxMi01LjEgMTItMTEuOCBjMC02LjEtNC4yLTguNi05LjItMTAuN2wtMi41LTEuMWMtMi42LTEuMi02LTIuNy02LTZjMC0zLjUgMi45LTUuOSA2LjMtNS45YzMuMiAwIDUuMSAxLjUgNi42IDQuMWwzLjQtMi4yYy0yLTMuNy01LjYtNS45LTkuOS01LjkgYy01LjcgMC0xMC43IDMuOC0xMC43IDkuN2MwIDUuNSAzLjggNy43IDguMyA5LjhsMi4zIDFjMy41IDEuNiA3IDMuMSA3IDcuNkMyMy4zIDQxLjEgMTkuNSA0NC4yIDE1LjQgNDQuMnoiLz48cmVjdCB4PSI0Mi41IiB5PSI5LjQiIHdpZHRoPSI0LjMiIGhlaWdodD0iMzguMiIvPjxwb2x5Z29uIHBvaW50cz0iNjMuNiw5LjQgNjMuNiw0Ny41IDc4LjMsNDcuNSA3OC4zLDQzLjYgNjcuOCw0My42IDY3LjgsOS40Ii8+PHBvbHlnb24gcG9pbnRzPSIxMTEuNCwxMy4zIDExMS40LDkuNCA5MS42LDkuNCA5MS42LDQ3LjUgMTExLjQsNDcuNSAxMTEuNCw0My42IDk1LjksNDMuNiA5NS45LDI4LjYgMTExLDI4LjYgMTExLDI0LjcgOTUuOSwyNC43IDk1LjksMTMuMyIvPjxwb2x5Z29uIHBvaW50cz0iMTU3LjMsMzguOSAxMjc
1
+<a href="<?php echo esc_url(site_url('/')); ?>" class="logo"><object type="image/svg+xml" data="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOTggOTkiPjxzdHlsZT4uc3R5bGUwe2ZpbGw6ICMwMDA7fTpob3ZlciB7ZmlsbDogI0ZGNzM2OTt9PC9zdHlsZT4gPHBhdGggZD0iTTE1LjQgNDQuMmMtNC4xIDAtNy4xLTMuMi03LjYtNy4xbC00LjEgMS4yYzEuMiA1LjkgNS44IDkuOSAxMS45IDkuOWM2LjYgMCAxMi01LjEgMTItMTEuOCBjMC02LjEtNC4yLTguNi05LjItMTAuN2wtMi41LTEuMWMtMi42LTEuMi02LTIuNy02LTZjMC0zLjUgMi45LTUuOSA2LjMtNS45YzMuMiAwIDUuMSAxLjUgNi42IDQuMWwzLjQtMi4yYy0yLTMuNy01LjYtNS45LTkuOS01LjkgYy01LjcgMC0xMC43IDMuOC0xMC43IDkuN2MwIDUuNSAzLjggNy43IDguMyA5LjhsMi4zIDFjMy41IDEuNiA3IDMuMSA3IDcuNkMyMy4zIDQxLjEgMTkuNSA0NC4yIDE1LjQgNDQuMnoiLz48cmVjdCB4PSI0Mi41IiB5PSI5LjQiIHdpZHRoPSI0LjMiIGhlaWdodD0iMzguMiIvPjxwb2x5Z29uIHBvaW50cz0iNjMuNiw5LjQgNjMuNiw0Ny41IDc4LjMsNDcuNSA3OC4zLDQzLjYgNjcuOCw0My42IDY3LjgsOS40Ii8+PHBvbHlnb24gcG9pbnRzPSIxMTEuNCwxMy4zIDExMS40LDkuNCA5MS42LDkuNCA5MS42LDQ3LjUgMTExLjQsNDcuNSAxMTEuNCw0My42IDk1LjksNDMuNiA5NS45LDI4LjYgMTExLDI4LjYgMTExLDI0LjcgOTUuOSwyNC43IDk1LjksMTMuMyIvPjxwb2x5Z29uIHBvaW50cz0iMTU3LjMsMzguOSAxMjc
2 2
 uNSw3LjggMTI3LjUsNDcuNSAxMzEuOCw0Ny41IDEzMS44LDE4LjEgMTYxLjUsNDkuMiAxNjEuNSw5LjQgMTU3LjMsOS40Ii8+PHBvbHlnb24gcG9pbnRzPSIxNzUuMiwxMy4zIDE4NC40LDEzLjMgMTg0LjQsNDcuNSAxODguNyw0Ny41IDE4OC43LDEzLjMgMTk4LDEzLjMgMTk4LDkuNCAxNzUuMiw5LjQiLz48cGF0aCBkPSJNMTkuOSA5MC4zYzQgMCA4LjEtMS40IDExLjQtMy43di01LjNjLTMgMy03LjIgNS4xLTExLjUgNS4xYy04LjUgMC0xNS41LTcuNC0xNS41LTE1LjggYzAtOC40IDYuOS0xNS44IDE1LjQtMTUuOGM0LjQgMCA4LjYgMS45IDExLjYgNS4xdi01LjNjLTMuNC0yLjUtNy4xLTMuNy0xMS40LTMuN0M5IDUwLjkgMCA1OS44IDAgNzAuOEMwIDgxLjYgOS4xIDkwLjMgMTkuOSA5MC4zIHoiLz48cGF0aCBkPSJNMzYuNSA3MC43YzAgMTEgOSAxOS43IDE5LjkgMTkuN2MxMC45IDAgMTkuOS04LjcgMTkuOS0xOS43YzAtMTAuOS05LTE5LjgtMTkuOS0xOS44IEM0NS41IDUwLjkgMzYuNSA1OS43IDM2LjUgNzAuN3ogTTU2LjQgNTQuOEM2NS4yIDU0LjggNzIgNjIgNzIgNzAuNmMwIDguNi03IDE1LjgtMTUuNiAxNS44Yy04LjcgMC0xNS42LTcuMi0xNS42LTE1LjggQzQwLjggNjIgNDcuNyA1NC44IDU2LjQgNTQuOHoiLz48cG9seWdvbiBwb2ludHM9Ijc5LjMsODkuNyA4My42LDg5LjcgODguNSw2My45IDg4LjYsNjMuOSAxMDAuOSw5MS4yIDExMy4yLDYzLjkgMTEzLjMsNjMuOSAxMTguMiw4OS43IDEyMi41LDg5Lj
3 3
 cgMTE0LjgsNDkuNCAxMDAuOSw4MS40IDg3LDQ5LjQiLz48cmVjdCB4PSIxMjcuNSIgeT0iNTEuNSIgd2lkdGg9IjQuMyIgaGVpZ2h0PSIzOC4xIi8+PHBhdGggZD0iTTE1Ni45IDU0LjhjNC40IDAgOC42IDEuOSAxMS42IDUuMXYtNS4zYy0zLjQtMi41LTcuMS0zLjctMTEuNC0zLjdjLTEwLjkgMC0xOS45IDktMTkuOSAxOS45IGMwIDEwLjggOS4xIDE5LjYgMTkuOSAxOS42YzQgMCA4LjEtMS40IDExLjQtMy43di01LjNjLTMgMy03LjIgNS4xLTExLjUgNS4xYy04LjUgMC0xNS41LTcuNC0xNS41LTE1LjggQzE0MS42IDYyLjIgMTQ4LjQgNTQuOCAxNTYuOSA1NC44eiIvPjxwYXRoIGQ9Ik0xODUuNyA4Ni40Yy00LjEgMC03LjEtMy4yLTcuNi03LjFsLTQuMSAxLjJjMS4yIDUuOSA1LjggOS45IDExLjkgOS45YzYuNiAwIDEyLTUuMSAxMi0xMS44IGMwLTYuMS00LjItOC42LTkuMi0xMC43bC0yLjUtMS4xYy0yLjYtMS4yLTYtMi43LTYtNmMwLTMuNSAyLjktNS45IDYuMy01LjljMy4yIDAgNS4xIDEuNSA2LjYgNC4xbDMuNC0yLjJjLTItMy43LTUuNi01LjktOS45LTUuOSBjLTUuNyAwLTEwLjcgMy44LTEwLjcgOS43YzAgNS41IDMuOCA3LjcgOC4zIDkuOGwyLjMgMWMzLjUgMS42IDcgMy4xIDcgNy42QzE5My42IDgzLjMgMTg5LjggODYuNCAxODUuNyA4Ni40eiIvPjxyZWN0IHk9Ijk3IiB3aWR0aD0iMTk4IiBoZWlnaHQ9IjIiLz48cmVjdCB5PSIwIiB3aWR0aD0iMTk4IiBoZWlnaHQ9IjIiLz48L3N2Zz4="></object></a>
Please login to merge, or discard this patch.
content-image.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,8 +26,10 @@
 block discarded – undo
26 26
 
27 27
 			if ( ! is_single() ) :
28 28
 				the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
29
-			else :
29
+			else {
30
+				:
30 31
 					the_title( '<h1 class="entry-title">', '</h1>' );
32
+			}
31 33
 			endif;
32 34
 			?>
33 35
 			</header><!-- .entry-header -->
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
  */
9 9
 
10 10
 // Access global variable directly to set content_width.
11
-if ( isset( $GLOBALS['content_width'] ) ) {
11
+if (isset($GLOBALS['content_width'])) {
12 12
 	$GLOBALS['content_width'] = 1920;
13 13
 }
14 14
 ?>
@@ -19,36 +19,36 @@  discard block
 block discarded – undo
19 19
 
20 20
 		<header class="entry-header">
21 21
 			<?php
22
-				$categories_list = get_the_category_list( __( ', ', 'strip' ) );
23
-			if ( $categories_list && strip_categorized_blog() ) {
22
+				$categories_list = get_the_category_list(__(', ', 'strip'));
23
+			if ($categories_list && strip_categorized_blog()) {
24 24
 				echo '<span class="categories-links">' . $categories_list . '</span>';
25 25
 			}
26 26
 
27
-			if ( ! is_single() ) :
28
-				the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
27
+			if ( ! is_single()) :
28
+				the_title('<h1 class="entry-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h1>');
29 29
 			else :
30
-					the_title( '<h1 class="entry-title">', '</h1>' );
30
+					the_title('<h1 class="entry-title">', '</h1>');
31 31
 			endif;
32 32
 			?>
33 33
 			</header><!-- .entry-header -->
34 34
 
35
-					<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'strip' ) ); ?>
35
+					<?php the_content(__('Continue reading <span class="meta-nav">&rarr;</span>', 'strip')); ?>
36 36
 
37 37
 		</div><!-- .entry-attachment -->
38 38
 
39 39
 		<footer class="entry-meta">
40 40
 			<?php strip_entry_meta(); ?>
41 41
 
42
-			<span class="entry-format"><a href="<?php echo esc_url( get_post_format_link( 'image' ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'All %s posts', 'strip' ), get_post_format_string( 'image' ) ) ); ?>"><?php echo esc_html( get_post_format_string( 'image' ) ); ?></a></span>
42
+			<span class="entry-format"><a href="<?php echo esc_url(get_post_format_link('image')); ?>" title="<?php echo esc_attr(sprintf(__('All %s posts', 'strip'), get_post_format_string('image'))); ?>"><?php echo esc_html(get_post_format_string('image')); ?></a></span>
43 43
 
44
-			<?php edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?>
44
+			<?php edit_post_link(__('Edit', 'strip'), '<span class="edit-link">', '</span>'); ?>
45 45
 		</footer><!-- .entry-meta -->
46 46
 
47
-				<?php if ( has_excerpt() ) : ?>
47
+				<?php if (has_excerpt()) : ?>
48 48
 		<div class="entry-summary">
49
-			<?php do_action( 'strip_formatted_posts_excerpt_before' ); ?>
49
+			<?php do_action('strip_formatted_posts_excerpt_before'); ?>
50 50
 			<?php the_excerpt(); ?>
51
-			<?php do_action( 'strip_formatted_posts_excerpt_after' ); ?>
51
+			<?php do_action('strip_formatted_posts_excerpt_after'); ?>
52 52
 		</div><!-- .entry-caption -->
53 53
 		<?php endif; ?>
54 54
 
Please login to merge, or discard this patch.
searchform.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -7,10 +7,10 @@
 block discarded – undo
7 7
  */
8 8
 
9 9
 ?>
10
-<form role="search" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
10
+<form role="search" method="get" class="search-form" action="<?php echo esc_url(home_url('/')); ?>">
11 11
 	<label>
12
-		<span class="screen-reader-text"><?php echo esc_attr_x( 'Search for:', 'label', 'strip' ); ?></span>
13
-		<input type="search" class="search-field" placeholder="<?php echo esc_attr_x( 'Search?', 'placeholder', 'strip' ); ?>" value="<?php echo esc_attr( get_search_query() ); ?>" name="s" />
12
+		<span class="screen-reader-text"><?php echo esc_attr_x('Search for:', 'label', 'strip'); ?></span>
13
+		<input type="search" class="search-field" placeholder="<?php echo esc_attr_x('Search?', 'placeholder', 'strip'); ?>" value="<?php echo esc_attr(get_search_query()); ?>" name="s" />
14 14
 	</label>
15
-	<input type="submit" class="search-submit" value="<?php echo esc_attr_x( 'Search', 'submit button', 'strip' ); ?>">
15
+	<input type="submit" class="search-submit" value="<?php echo esc_attr_x('Search', 'submit button', 'strip'); ?>">
16 16
 </form>
Please login to merge, or discard this patch.
content-video.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,8 +30,10 @@
 block discarded – undo
30 30
 
31 31
 		if ( ! is_single() ) :
32 32
 			the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
33
-		else :
33
+		else {
34
+			:
34 35
 			the_title( '<h1 class="entry-title">', '</h1>' );
36
+		}
35 37
 		endif;
36 38
 		?>
37 39
 	</header><!-- .entry-header -->
Please login to merge, or discard this patch.
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -7,31 +7,31 @@  discard block
 block discarded – undo
7 7
  */
8 8
 
9 9
 // Access global variable directly to set content_width.
10
-if ( isset( $GLOBALS['content_width'] ) ) {
10
+if (isset($GLOBALS['content_width'])) {
11 11
 	$GLOBALS['content_width'] = 1920;
12 12
 }
13 13
 ?>
14 14
 
15
-<article id="post-<?php the_ID(); ?>" <?php post_class( 'clear' ); ?>>
15
+<article id="post-<?php the_ID(); ?>" <?php post_class('clear'); ?>>
16 16
 	<div class="entry-wrap wrap clear">
17 17
 
18 18
 	<?php
19
-	if ( '' !== get_the_post_thumbnail() ) :
20
-		the_post_thumbnail( 'strip-featured-thumbnail' );
19
+	if ('' !== get_the_post_thumbnail()) :
20
+		the_post_thumbnail('strip-featured-thumbnail');
21 21
 	endif;
22 22
 	?>
23 23
 
24 24
 	<header class="entry-header">
25 25
 		<?php
26
-			$categories_list = get_the_category_list( __( ', ', 'strip' ) );
27
-		if ( $categories_list && strip_categorized_blog() ) {
26
+			$categories_list = get_the_category_list(__(', ', 'strip'));
27
+		if ($categories_list && strip_categorized_blog()) {
28 28
 			echo '<span class="categories-links">' . $categories_list . '</span>';
29 29
 		}
30 30
 
31
-		if ( ! is_single() ) :
32
-			the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
31
+		if ( ! is_single()) :
32
+			the_title('<h1 class="entry-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h1>');
33 33
 		else :
34
-			the_title( '<h1 class="entry-title">', '</h1>' );
34
+			the_title('<h1 class="entry-title">', '</h1>');
35 35
 		endif;
36 36
 		?>
37 37
 	</header><!-- .entry-header -->
@@ -40,8 +40,8 @@  discard block
 block discarded – undo
40 40
 		<?php
41 41
 			the_content(sprintf(
42 42
 				/* translators: %s: Name of current post. */
43
-				esc_html( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'strip' ), array( 'span' => array( 'class' => array() ) ) ),
44
-				the_title( '<span class="screen-reader-text">"', '"</span>', false )
43
+				esc_html(__('Continue reading %s <span class="meta-nav">&rarr;</span>', 'strip'), array('span' => array('class' => array()))),
44
+				the_title('<span class="screen-reader-text">"', '"</span>', false)
45 45
 			));
46 46
 
47 47
 		?>
@@ -50,16 +50,16 @@  discard block
 block discarded – undo
50 50
 			<footer class="entry-meta">
51 51
 				<?php strip_entry_meta(); ?>
52 52
 
53
-				<span class="entry-format"><a href="<?php echo esc_url( get_post_format_link( 'video' ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'All %s posts', 'strip' ), get_post_format_string( 'video' ) ) ); ?>"><?php echo esc_html( get_post_format_string( 'video' ) ); ?></a></span>
53
+				<span class="entry-format"><a href="<?php echo esc_url(get_post_format_link('video')); ?>" title="<?php echo esc_attr(sprintf(__('All %s posts', 'strip'), get_post_format_string('video'))); ?>"><?php echo esc_html(get_post_format_string('video')); ?></a></span>
54 54
 
55
-				<?php edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?>
55
+				<?php edit_post_link(__('Edit', 'strip'), '<span class="edit-link">', '</span>'); ?>
56 56
 			</footer><!-- .entry-meta -->
57 57
 
58
-	<?php if ( has_excerpt() ) : ?>
58
+	<?php if (has_excerpt()) : ?>
59 59
 		<div class="entry-summary">
60
-	<?php do_action( 'strip_formatted_posts_excerpt_before' ); ?>
60
+	<?php do_action('strip_formatted_posts_excerpt_before'); ?>
61 61
 	<?php the_excerpt(); ?>
62
-	<?php do_action( 'strip_formatted_posts_excerpt_after' ); ?>
62
+	<?php do_action('strip_formatted_posts_excerpt_after'); ?>
63 63
 		</div><!-- .entry-caption -->
64 64
 	<?php endif; ?>
65 65
 
Please login to merge, or discard this patch.
archive-comic.php 2 patches
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -13,36 +13,36 @@  discard block
 block discarded – undo
13 13
 	<section id="primary"
14 14
 		<main id="content" role="main">
15 15
 
16
-			<?php if ( have_posts() ) : ?>
16
+			<?php if (have_posts()) : ?>
17 17
 
18 18
 				<header class="page-header">
19 19
 					<h1 class="page-title">
20 20
 						<?php
21 21
 							printf(
22
-								esc_html( 'STORIES %s', 'strip' ), '<span>' .
23
-								single_cat_title( '', false ) . '</span>'
22
+								esc_html('STORIES %s', 'strip'), '<span>' .
23
+								single_cat_title('', false) . '</span>'
24 24
 							);
25 25
 						?>
26 26
 					</h1>
27 27
 
28 28
 					<h2 class="taxonomy-description">
29
-						<a href="<?php echo esc_url( home_url( '/series/' ) ); ?>">
30
-						<?php '<span class="meta-nav"' . printf( esc_html_e( 'Series', 'strip' ) ) . '</span>'; ?>
29
+						<a href="<?php echo esc_url(home_url('/series/')); ?>">
30
+						<?php '<span class="meta-nav"' . printf(esc_html_e('Series', 'strip')) . '</span>'; ?>
31 31
 						</a>
32 32
 					</h2>
33 33
 
34 34
 					<h4 class="series-title">
35
-					<a href="<?php echo esc_url( home_url( '/story/exile/' ) ); ?>">ExIle</a></h4>
35
+					<a href="<?php echo esc_url(home_url('/story/exile/')); ?>">ExIle</a></h4>
36 36
 					<h4 class="series-title">
37
-					<a href="<?php echo esc_url( home_url( '/story/tofu/' ) ); ?>">Morning Tofu Chase</a></h4>
37
+					<a href="<?php echo esc_url(home_url('/story/tofu/')); ?>">Morning Tofu Chase</a></h4>
38 38
 					<h3 class="series-title">
39
-					<a href="<?php echo esc_url( home_url( '/story/sentient-drone/' ) ); ?>">Sentient Drone</a></h3>
39
+					<a href="<?php echo esc_url(home_url('/story/sentient-drone/')); ?>">Sentient Drone</a></h3>
40 40
 
41 41
 				<?php
42 42
 					// Show an optional term description.
43 43
 					$term_description = term_description();
44
-				if ( ! empty( $term_description ) ) :
45
-					'<div class="taxonomy-description"' . printf( esc_html( '%s', $term_description ) ) . '</div>';
44
+				if ( ! empty($term_description)) :
45
+					'<div class="taxonomy-description"' . printf(esc_html('%s', $term_description)) . '</div>';
46 46
 				endif;
47 47
 				?>
48 48
 			</header><!-- .page-header -->
@@ -60,18 +60,18 @@  discard block
 block discarded – undo
60 60
 		)
61 61
 	);
62 62
 
63
-while ( $comic->have_posts() ) : $comic->the_post();
64
-	get_template_part( 'content-comic' );
63
+while ($comic->have_posts()) : $comic->the_post();
64
+	get_template_part('content-comic');
65 65
 	// change to 'content' to style it like the blog entry page.
66 66
 		?>
67 67
 	<?php endwhile;
68 68
 						wp_reset_postdata(); ?>
69 69
 
70
-		<?php strip_content_nav( 'nav-below' ); ?>
70
+		<?php strip_content_nav('nav-below'); ?>
71 71
 
72 72
 	<?php else : ?>
73 73
 
74
-	<?php get_template_part( 'no-results', 'archive-comic' ); ?>
74
+	<?php get_template_part('no-results', 'archive-comic'); ?>
75 75
 
76 76
 	<?php endif;
77 77
 			wp_reset_postdata(); ?>
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,9 +69,12 @@
 block discarded – undo
69 69
 
70 70
 		<?php strip_content_nav( 'nav-below' ); ?>
71 71
 
72
-	<?php else : ?>
72
+	<?php else {
73
+	: ?>
73 74
 
74
-	<?php get_template_part( 'no-results', 'archive-comic' ); ?>
75
+	<?php get_template_part( 'no-results', 'archive-comic' );
76
+}
77
+?>
75 78
 
76 79
 	<?php endif;
77 80
 			wp_reset_postdata(); ?>
Please login to merge, or discard this patch.
content-page.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -11,18 +11,18 @@
 block discarded – undo
11 11
 <article id="post-<?php the_ID(); ?>" >
12 12
 	<div class="wrap">
13 13
 	<?php
14
-	if ( '' !== get_the_post_thumbnail() ) :
15
-		the_post_thumbnail( 'strip-featured-thumbnail' );
14
+	if ('' !== get_the_post_thumbnail()) :
15
+		the_post_thumbnail('strip-featured-thumbnail');
16 16
 	endif;
17 17
 	?>
18 18
 		<header class="entry-header">
19
-	<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
19
+	<?php the_title('<h1 class="entry-title">', '</h1>'); ?>
20 20
 		</header><!-- .entry-header -->
21 21
 
22 22
 	<footer class="entry-meta">
23 23
 	<?php strip_entry_meta(); ?>
24 24
 
25
-	<?php edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?>
25
+	<?php edit_post_link(__('Edit', 'strip'), '<span class="edit-link">', '</span>'); ?>
26 26
 		</footer><!-- .entry-meta -->
27 27
 
28 28
 		<div class="entry-content clear">
Please login to merge, or discard this patch.
content-quote.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@  discard block
 block discarded – undo
12 12
 	<div class="wrap">
13 13
 		<header class="entry-header">
14 14
 	<?php
15
-				$categories_list = get_the_category_list( __( ', ', 'strip' ) );
16
-	if ( $categories_list && strip_categorized_blog() ) {
15
+				$categories_list = get_the_category_list(__(', ', 'strip'));
16
+	if ($categories_list && strip_categorized_blog()) {
17 17
 				   echo '<span class="categories-links">' . $categories_list . '</span>';
18 18
 	}
19 19
 	?>
@@ -21,13 +21,13 @@  discard block
 block discarded – undo
21 21
 
22 22
 		<footer class="entry-meta">
23 23
 
24
-			<span class="entry-format"><a href="<?php echo esc_url( get_post_format_link( 'quote' ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'All %s posts', 'strip' ), get_post_format_string( 'quote' ) ) ); ?>"><?php echo esc_html( get_post_format_string( 'quote' ) ); ?></a></span>
24
+			<span class="entry-format"><a href="<?php echo esc_url(get_post_format_link('quote')); ?>" title="<?php echo esc_attr(sprintf(__('All %s posts', 'strip'), get_post_format_string('quote'))); ?>"><?php echo esc_html(get_post_format_string('quote')); ?></a></span>
25 25
 
26
-	<?php edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?>
26
+	<?php edit_post_link(__('Edit', 'strip'), '<span class="edit-link">', '</span>'); ?>
27 27
 		</footer><!-- .entry-meta -->
28 28
 
29 29
 		<div class="entry-content">
30
-	<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'strip' ) ); ?>
30
+	<?php the_content(__('Continue reading <span class="meta-nav">&rarr;</span>', 'strip')); ?>
31 31
 
32 32
 		</div><!-- .entry-content -->
33 33
 		</div><!-- .entry-wrap -->
Please login to merge, or discard this patch.
content-aside.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@  discard block
 block discarded – undo
12 12
 	<div class="wrap">
13 13
 		<header class="entry-header">
14 14
 			<?php
15
-				$categories_list = get_the_category_list( __( ', ', 'strip' ) );
16
-			if ( $categories_list && strip_categorized_blog() ) {
15
+				$categories_list = get_the_category_list(__(', ', 'strip'));
16
+			if ($categories_list && strip_categorized_blog()) {
17 17
 				echo '<span class="categories-links">' . $categories_list . '</span>';
18 18
 			}
19 19
 			?>
@@ -22,13 +22,13 @@  discard block
 block discarded – undo
22 22
 		<footer class="entry-meta">
23 23
 			<?php strip_entry_meta(); ?>
24 24
 
25
-			<span class="entry-format"><a href="<?php echo esc_url( get_post_format_link( 'aside' ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'All %s posts', 'strip' ), get_post_format_string( 'aside' ) ) ); ?>"><?php echo esc_html( get_post_format_string( 'aside' ) ); ?></a></span>
25
+			<span class="entry-format"><a href="<?php echo esc_url(get_post_format_link('aside')); ?>" title="<?php echo esc_attr(sprintf(__('All %s posts', 'strip'), get_post_format_string('aside'))); ?>"><?php echo esc_html(get_post_format_string('aside')); ?></a></span>
26 26
 
27
-			<?php edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?>
27
+			<?php edit_post_link(__('Edit', 'strip'), '<span class="edit-link">', '</span>'); ?>
28 28
 		</footer><!-- .entry-meta -->
29 29
 
30 30
 		<div class="entry-content">
31
-			<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'strip' ) ); ?>
31
+			<?php the_content(__('Continue reading <span class="meta-nav">&rarr;</span>', 'strip')); ?>
32 32
 
33 33
 		</div><!-- .entry-content -->
34 34
 		</div><!-- .entry-wrap -->
Please login to merge, or discard this patch.