Passed
Push — master ( 1cbafb...ea49ac )
by SILENT
02:42
created
archive-comic.php 2 patches
Spacing   +13 added lines, -13 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
 					<h3 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
 					</h3>
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,8 +60,8 @@  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;
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 
74 74
 	<?php else : ?>
75 75
 
76
-	<?php get_template_part( 'no-results', 'archive-comic' ); ?>
76
+	<?php get_template_part('no-results', 'archive-comic'); ?>
77 77
 
78 78
 	<?php endif;
79 79
 			wp_reset_postdata(); ?>
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,9 +71,12 @@
 block discarded – undo
71 71
 								<?php the_posts_pagination(); ?>
72 72
 				</div>
73 73
 
74
-	<?php else : ?>
74
+	<?php else {
75
+	: ?>
75 76
 
76
-	<?php get_template_part( 'no-results', 'archive-comic' ); ?>
77
+	<?php get_template_part( 'no-results', 'archive-comic' );
78
+}
79
+?>
77 80
 
78 81
 	<?php endif;
79 82
 			wp_reset_postdata(); ?>
Please login to merge, or discard this patch.
inc/template-tags.php 1 patch
Spacing   +56 added lines, -56 removed lines patch added patch discarded remove patch
@@ -12,47 +12,47 @@  discard block
 block discarded – undo
12 12
  * Add custom header image to header area
13 13
  */
14 14
 function strip_header_background() {
15
-	if ( get_header_image() ) {
16
-		$css = '.site-branding { background-image: url(' . esc_url( get_header_image() ) . '); }';
17
-		wp_add_inline_style( 'strip-style', $css );
15
+	if (get_header_image()) {
16
+		$css = '.site-branding { background-image: url(' . esc_url(get_header_image()) . '); }';
17
+		wp_add_inline_style('strip-style', $css);
18 18
 	}
19 19
 }
20
-add_action( 'wp_enqueue_scripts', 'strip_header_background', 11 );
20
+add_action('wp_enqueue_scripts', 'strip_header_background', 11);
21 21
 
22
-if ( ! function_exists( 'strip_entry_meta' ) ) :
22
+if ( ! function_exists('strip_entry_meta')) :
23 23
 	/**
24 24
 	 * Prints HTML with meta information for the current post-date/time and author.
25 25
 	 */
26 26
 	function strip_entry_meta() {
27
-		if ( is_sticky() && is_home() ) {
27
+		if (is_sticky() && is_home()) {
28 28
 			printf(
29
-				wp_kses( '<span class="featured-post"><a href="%1$s" title="%2$s" rel="bookmark">Sticky</a></span>', 'strip' ),
30
-				esc_url( get_permalink() ),
31
-				esc_attr( get_the_time() )
29
+				wp_kses('<span class="featured-post"><a href="%1$s" title="%2$s" rel="bookmark">Sticky</a></span>', 'strip'),
30
+				esc_url(get_permalink()),
31
+				esc_attr(get_the_time())
32 32
 			);
33 33
 		}
34 34
 
35
-		if ( 'post' === get_post_type() ) {
35
+		if ('post' === get_post_type()) {
36 36
 			printf(
37
-				wp_kses_post( '<span class="entry-date"><a href="%1$s" title="%2$s" rel="bookmark"><time datetime="%3$s">%4$s</time></a></span><span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span>', 'strip' ),
38
-				esc_url( get_permalink() ),
39
-				esc_attr( get_the_time() ),
40
-				esc_attr( get_the_date( 'c' ) ),
37
+				wp_kses_post('<span class="entry-date"><a href="%1$s" title="%2$s" rel="bookmark"><time datetime="%3$s">%4$s</time></a></span><span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span>', 'strip'),
38
+				esc_url(get_permalink()),
39
+				esc_attr(get_the_time()),
40
+				esc_attr(get_the_date('c')),
41 41
 				get_the_date(),
42
-				esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
43
-				esc_attr( sprintf( __( 'View all posts by %s', 'strip' ), get_the_author() ) ),
42
+				esc_url(get_author_posts_url(get_the_author_meta('ID'))),
43
+				esc_attr(sprintf(__('View all posts by %s', 'strip'), get_the_author())),
44 44
 				get_the_author()
45 45
 			);
46 46
 		}
47 47
 
48
-		$tags_list = get_the_tag_list( '', _x( ', ', 'Used between list items, there is a space after the comma.', 'strip' ) );
49
-		if ( $tags_list ) {
50
-			printf( '<span class="tags-links">' . esc_html( '%1$s', 'strip' ) . '</span>', $tags_list ); // WPCS: XSS OK.
48
+		$tags_list = get_the_tag_list('', _x(', ', 'Used between list items, there is a space after the comma.', 'strip'));
49
+		if ($tags_list) {
50
+			printf('<span class="tags-links">' . esc_html('%1$s', 'strip') . '</span>', $tags_list); // WPCS: XSS OK.
51 51
 		}
52 52
 	}
53 53
 endif;
54 54
 
55
-if ( ! function_exists( 'strip_term_description' ) ) :
55
+if ( ! function_exists('strip_term_description')) :
56 56
 	/**
57 57
 	 * Display optional term description for category, tag and custom taxonomy pages.
58 58
 	 *
@@ -62,8 +62,8 @@  discard block
 block discarded – undo
62 62
 		// Show an optional term description.
63 63
 		$term_description = term_description();
64 64
 
65
-		if ( is_post_type_archive( 'comic' ) || is_category() || is_tag() || is_tax( 'story' ) && ! empty( $term_description ) ) :
66
-			printf( '<div class="taxonomy-description">%s</div>', $term_description, 'strip' ); // WPCS: XSS OK.
65
+		if (is_post_type_archive('comic') || is_category() || is_tag() || is_tax('story') && ! empty($term_description)) :
66
+			printf('<div class="taxonomy-description">%s</div>', $term_description, 'strip'); // WPCS: XSS OK.
67 67
 			endif;
68 68
 	}
69 69
 endif; // ends check for strip_term_description.
@@ -74,25 +74,25 @@  discard block
 block discarded – undo
74 74
  * @return bool
75 75
  */
76 76
 function strip_categorized_blog() {
77
-	$category_count = get_transient( 'strip_categories' );
77
+	$category_count = get_transient('strip_categories');
78 78
 
79
-	if ( false === $category_count ) {
79
+	if (false === $category_count) {
80 80
 		// Create an array of all the categories that are attached to posts.
81
-		$categories = get_categories( array(
81
+		$categories = get_categories(array(
82 82
 			'fields'     => 'ids',
83 83
 			'hide_empty' => 1,
84 84
 			// We only need to know if there is more than one category.
85 85
 			'number'     => 2,
86
-		) );
86
+		));
87 87
 
88 88
 		// Count the number of categories that are attached to the posts.
89
-		$category_count = count( $categories );
89
+		$category_count = count($categories);
90 90
 
91
-		set_transient( 'strip_categories', $category_count );
91
+		set_transient('strip_categories', $category_count);
92 92
 	}
93 93
 
94 94
 	// Allow viewing case of 0 or 1 categories in post preview.
95
-	if ( is_preview() ) {
95
+	if (is_preview()) {
96 96
 		return true;
97 97
 	}
98 98
 
@@ -103,16 +103,16 @@  discard block
 block discarded – undo
103 103
  * Flush out the transients used in strip_categorized_blog.
104 104
  */
105 105
 function strip_category_transient_flusher() {
106
-	if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
106
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
107 107
 		return;
108 108
 	}
109 109
 	// Like, beat it. Dig?
110
-	delete_transient( 'strip_categories' );
110
+	delete_transient('strip_categories');
111 111
 }
112
-add_action( 'edit_category', 'strip_category_transient_flusher' );
113
-add_action( 'save_post',     'strip_category_transient_flusher' );
112
+add_action('edit_category', 'strip_category_transient_flusher');
113
+add_action('save_post', 'strip_category_transient_flusher');
114 114
 
115
-if ( ! function_exists( 'strip_the_custom_logo' ) ) :
115
+if ( ! function_exists('strip_the_custom_logo')) :
116 116
 	/**
117 117
 	 * Displays the optional custom logo.
118 118
 	 *
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 	 * @since strip 1.0
122 122
 	 */
123 123
 	function strip_the_custom_logo() {
124
-		if ( function_exists( 'the_custom_logo' ) ) {
124
+		if (function_exists('the_custom_logo')) {
125 125
 			the_custom_logo();
126 126
 		}
127 127
 	}
@@ -131,13 +131,13 @@  discard block
 block discarded – undo
131 131
  * Display navigation to next/previous pages when applicable
132 132
  * TO DO clean up
133 133
  */
134
-if ( $wp_query->max_num_pages > 1 && ( is_home() || is_archive() || is_post_type_archive( 'comic' ) || is_search() ) ) : // navigation links for home, archive, and search pages
134
+if ($wp_query->max_num_pages > 1 && (is_home() || is_archive() || is_post_type_archive('comic') || is_search())) : // navigation links for home, archive, and search pages
135 135
 
136
-			the_posts_pagination( array(
137
-						'prev_text' => _x( '&#8592;', 'Previous page link', 'strip' ) . '<span class="screen-reader-text">' . __( 'Previous page', 'strip' ) . '</span>',
138
-						'next_text' => '<span class="screen-reader-text">' . __( 'Next page', 'strip' ) . '</span>' . _x( '&#8594;', 'Next post link', 'strip' ),
139
-						'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'strip' ) . ' </span>',
140
-					) ); 
136
+			the_posts_pagination(array(
137
+						'prev_text' => _x('&#8592;', 'Previous page link', 'strip') . '<span class="screen-reader-text">' . __('Previous page', 'strip') . '</span>',
138
+						'next_text' => '<span class="screen-reader-text">' . __('Next page', 'strip') . '</span>' . _x('&#8594;', 'Next post link', 'strip'),
139
+						'before_page_number' => '<span class="meta-nav screen-reader-text">' . __('Page', 'strip') . ' </span>',
140
+					)); 
141 141
 		 endif;
142 142
 
143 143
 /**
@@ -150,10 +150,10 @@  discard block
 block discarded – undo
150 150
  * @param string $taxonomy       Optional. Taxonomy, if $in_same_term is true. Default 'category'.
151 151
  * @return mixed Array containing the boundary post object if successful, null otherwise.
152 152
  */
153
-function get_comic_boundary_post( $in_same_term, $start, $taxonomy ) {
153
+function get_comic_boundary_post($in_same_term, $start, $taxonomy) {
154 154
 	global $post;
155
-	setup_postdata( $post );
156
-	if ( ! taxonomy_exists( $taxonomy ) ) {
155
+	setup_postdata($post);
156
+	if ( ! taxonomy_exists($taxonomy)) {
157 157
 		return null;
158 158
 	}
159 159
 
@@ -167,37 +167,37 @@  discard block
 block discarded – undo
167 167
 	);
168 168
 
169 169
 	$term_array = array();
170
-	if ( $in_same_term ) {
171
-		if ( $in_same_term ) {
172
-			$term_array = wp_get_object_terms( $post->ID, $taxonomy, array( 'fields' => 'ids' ) );
170
+	if ($in_same_term) {
171
+		if ($in_same_term) {
172
+			$term_array = wp_get_object_terms($post->ID, $taxonomy, array('fields' => 'ids'));
173 173
 		}
174
-		$query_args['tax_query'] = array( array(
174
+		$query_args['tax_query'] = array(array(
175 175
 			'taxonomy' => $taxonomy,
176
-			'terms' => array_merge( $term_array ),
176
+			'terms' => array_merge($term_array),
177 177
 		),
178 178
 		);
179 179
 	}
180 180
 
181 181
 	$get_posts = new wp_query;
182
-	return $get_posts -> query( $query_args );
182
+	return $get_posts -> query($query_args);
183 183
 }
184 184
 
185 185
 /**
186 186
  * Link to the first comic post in same term
187 187
  */
188 188
 function first_comic_link() {
189
-	$first = get_comic_boundary_post( true, true, 'story' );
190
-	apply_filters( 'the_title', $first[0]->post_title );
189
+	$first = get_comic_boundary_post(true, true, 'story');
190
+	apply_filters('the_title', $first[0]->post_title);
191 191
 
192
-	echo esc_html( get_permalink( $first[0]->ID ) );
192
+	echo esc_html(get_permalink($first[0]->ID));
193 193
 }
194 194
 
195 195
 /**
196 196
  * Link to the last comic post in same term
197 197
  */
198 198
 function last_comic_link() {
199
-	$last = get_comic_boundary_post( true, false, 'story' );
200
-	apply_filters( 'the_title', $last[0]->post_title );
199
+	$last = get_comic_boundary_post(true, false, 'story');
200
+	apply_filters('the_title', $last[0]->post_title);
201 201
 
202
-	echo esc_html( get_permalink( $last[0]->ID ) );
202
+	echo esc_html(get_permalink($last[0]->ID));
203 203
 }
Please login to merge, or discard this patch.
index.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -17,10 +17,10 @@  discard block
 block discarded – undo
17 17
 	<div id="primary" class="content-area">
18 18
 		<div id="content" class="site-content" role="main">
19 19
 
20
-		<?php if ( have_posts() ) : ?>
20
+		<?php if (have_posts()) : ?>
21 21
 
22 22
 	<?php /* Start the Loop */ ?>
23
-			<?php while ( have_posts() ) :
23
+			<?php while (have_posts()) :
24 24
 				the_post(); ?>
25 25
 
26 26
 				<?php
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 				* If you want to override this in a child theme, then include a file
32 32
 				* called content-___.php (where ___ is the Post Format name) and that will be used instead.
33 33
 				*/
34
-					get_template_part( 'content', get_post_format() );
34
+					get_template_part('content', get_post_format());
35 35
 				?>
36 36
 
37 37
 			<?php endwhile; ?>
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
 		<?php else : ?>
44 44
 
45
-			<?php get_template_part( 'no-results', 'index' ); ?>
45
+			<?php get_template_part('no-results', 'index'); ?>
46 46
 
47 47
 		<?php endif; ?>
48 48
 
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,9 +40,12 @@
 block discarded – undo
40 40
 					<?php the_posts_pagination(); ?>
41 41
 	</div>
42 42
 
43
-		<?php else : ?>
43
+		<?php else {
44
+	: ?>
44 45
 
45
-			<?php get_template_part( 'no-results', 'index' ); ?>
46
+			<?php get_template_part( 'no-results', 'index' );
47
+}
48
+?>
46 49
 
47 50
 		<?php endif; ?>
48 51
 
Please login to merge, or discard this patch.
search.php 2 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -11,17 +11,17 @@  discard block
 block discarded – undo
11 11
 	<section id="primary"
12 12
 	<main id="content" role="main">
13 13
 
14
-		<?php if ( have_posts() ) : ?>
14
+		<?php if (have_posts()) : ?>
15 15
 
16 16
 			<header class="page-header">
17
-				<h1 class="page-title"><?php printf( esc_html__( 'Search Results for: %s', 'strip' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
17
+				<h1 class="page-title"><?php printf(esc_html__('Search Results for: %s', 'strip'), '<span>' . get_search_query() . '</span>'); ?></h1>
18 18
 			</header><!-- .page-header -->
19 19
 
20 20
 			<?php /* Start the Loop */ ?>
21
-			<?php while ( have_posts() ) :
21
+			<?php while (have_posts()) :
22 22
 				the_post();
23 23
 
24
-				get_template_part( 'content', get_post_format() );
24
+				get_template_part('content', get_post_format());
25 25
 
26 26
 			endwhile;
27 27
 
@@ -31,15 +31,15 @@  discard block
 block discarded – undo
31 31
 
32 32
 <article id="post-0" class="no-results">
33 33
 	<header class="page-header">
34
-		<h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'strip' ); ?></h1>
34
+		<h1 class="page-title"><?php esc_html_e('Nothing Found', 'strip'); ?></h1>
35 35
 	</header><!-- .page-header -->
36 36
 <div class="entry-content">
37
-			<p> <?php esc_html_e( 'Bummer, I cannot find what you are looking for.
38
-				Would you like to search in the', 'strip' ); ?>
37
+			<p> <?php esc_html_e('Bummer, I cannot find what you are looking for.
38
+				Would you like to search in the', 'strip'); ?>
39 39
 
40
-			<a href="<?php echo esc_url( get_post_type_archive_link( 'comic' ) ); ?>">Comics Archive</a>? Great stuff there.</p>
40
+			<a href="<?php echo esc_url(get_post_type_archive_link('comic')); ?>">Comics Archive</a>? Great stuff there.</p>
41 41
 
42
-			<p><?php esc_html_e( 'Or do you prefer trying another search with different keywords?', 'strip' ); ?></p>
42
+			<p><?php esc_html_e('Or do you prefer trying another search with different keywords?', 'strip'); ?></p>
43 43
 
44 44
 			<?php get_search_form(); ?>
45 45
 
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,11 +27,14 @@
 block discarded – undo
27 27
 
28 28
 			the_posts_pagination();
29 29
 
30
-		else : ?>
30
+		else {
31
+			: ?>
31 32
 
32 33
 <article id="post-0" class="no-results">
33 34
 	<header class="page-header">
34
-		<h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'strip' ); ?></h1>
35
+		<h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'strip' );
36
+		}
37
+		?></h1>
35 38
 	</header><!-- .page-header -->
36 39
 <div class="entry-content">
37 40
 			<p> <?php esc_html_e( 'Bummer, I cannot find what you are looking for.
Please login to merge, or discard this patch.
home 2.php 2 patches
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -17,9 +17,9 @@  discard block
 block discarded – undo
17 17
 		<div class="wrap">
18 18
 			<header class="entry-header">
19 19
 				<h3 class="taxonomy-description">
20
-					<?php printf( '<a href="%s" class="post-parent-title">%s</a>',
21
-						esc_url( get_post_type_archive_link( 'comic' ) ),
22
-						esc_html( get_the_title() )
20
+					<?php printf('<a href="%s" class="post-parent-title">%s</a>',
21
+						esc_url(get_post_type_archive_link('comic')),
22
+						esc_html(get_the_title())
23 23
 					); ?>
24 24
 					</a></h3>
25 25
 				<h1 class="page-title"><?php the_title(); ?></h1>
@@ -29,29 +29,29 @@  discard block
 block discarded – undo
29 29
 
30 30
 			<?php
31 31
 			// get the correct paged figure on a Custom Page That Isn’t Static Home Page.
32
-			$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1; ?>
32
+			$paged = (get_query_var('paged')) ? get_query_var('paged') : 1; ?>
33 33
 
34 34
 
35 35
 		<?php
36 36
 
37 37
 					// Call and run loop in descending order.
38
-					$loop = new WP_Query( array(
38
+					$loop = new WP_Query(array(
39 39
 						'post_type'			     => 'comic',
40 40
 						'story'              => '', // add story term here if you want this template to only archive a specific story.
41 41
 						'posts_per_page'     => 6, // changes default Blog pages number "reading settings" set in dashboard.
42 42
 						'paged'              => $paged, // you absolutely need this.
43 43
 						'orderby'            => 'title', // order by title or date.
44 44
 						'order'              => 'ASC',
45
-					) );
45
+					));
46 46
 
47 47
 					// Start the loop.
48
-					if ( $loop->have_posts() ) :
49
-						while ( $loop->have_posts() ) :
48
+					if ($loop->have_posts()) :
49
+						while ($loop->have_posts()) :
50 50
 							$loop->the_post();
51 51
 			?>
52 52
 			<div class="two-column">
53
-				<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php printf( esc_html__( 'Permanent Link to %s', 'strip' ),the_title_attribute( 'echo=0' ) ); ?>"></a>
54
-				<?php if ( get_the_post_thumbnail() !== '' ) {
53
+				<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php printf(esc_html__('Permanent Link to %s', 'strip'), the_title_attribute('echo=0')); ?>"></a>
54
+				<?php if (get_the_post_thumbnail() !== '') {
55 55
 
56 56
 					echo '<a href="';
57 57
 					the_permalink();
@@ -66,12 +66,12 @@  discard block
 block discarded – undo
66 66
 	the_permalink();
67 67
 	echo '" class="thumbnail-wrapper">';
68 68
 	echo '<img src="';
69
-	echo esc_html( get_first_image( 'strip-medium', 'url' ) );
69
+	echo esc_html(get_first_image('strip-medium', 'url'));
70 70
 	echo '" alt="" />';
71 71
 	echo '</a>';
72 72
 } ?>
73 73
 
74
-<h2 class="series-title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php printf( esc_html__( 'Permanent Link to %s', 'strip' ), the_title_attribute( 'echo=0' ) ); ?>"><?php the_title(); ?></a></h2>
74
+<h2 class="series-title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php printf(esc_html__('Permanent Link to %s', 'strip'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2>
75 75
 
76 76
 			</div><!-- .column -->
77 77
 			<?php endwhile; ?>
@@ -82,23 +82,23 @@  discard block
 block discarded – undo
82 82
 
83 83
 		<?php
84 84
 				$big = 999999999; // need an unlikely integer.
85
-				$translated = __( 'Page', 'strip' ); // supply translatable string.
85
+				$translated = __('Page', 'strip'); // supply translatable string.
86 86
 
87
-				echo wp_kses_post( paginate_links( // Data validation: wp_kses_post see https://developer.wordpress.org/reference/functions/wp_kses_post/.
87
+				echo wp_kses_post(paginate_links( // Data validation: wp_kses_post see https://developer.wordpress.org/reference/functions/wp_kses_post/.
88 88
 					array(
89
-					'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
89
+					'base' => str_replace($big, '%#%', esc_url(get_pagenum_link($big))),
90 90
 					'format' => '?paged=%#%',
91
-					'current' => max( 1, get_query_var( 'paged', 1 ) ),
91
+					'current' => max(1, get_query_var('paged', 1)),
92 92
 					'total' => $loop->max_num_pages,
93 93
 					'before_page_number' => '<span class="screen-reader-text">' . $translated . ' </span>',
94
-					'prev_text' => esc_html__( 'Previous', 'strip' ), // If you want to change the previous link text.
95
-					'next_text' => esc_html__( 'Next', 'strip' ), // If you want to change the next link text.
94
+					'prev_text' => esc_html__('Previous', 'strip'), // If you want to change the previous link text.
95
+					'next_text' => esc_html__('Next', 'strip'), // If you want to change the next link text.
96 96
 					'type' => 'title', // How you want the return value to be formatted.
97 97
 					'add_fragment' => '#result', // Your anchor.
98
-				) ) );
98
+				) ));
99 99
 
100 100
 		else :
101
-			get_template_part( 'no-results', 'archive-comic' );
101
+			get_template_part('no-results', 'archive-comic');
102 102
 		endif; ?>
103 103
 
104 104
 				</div><!-- .wrap -->
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,8 +99,10 @@
 block discarded – undo
99 99
 					'add_fragment' => '#result', // Your anchor.
100 100
 				) ) );
101 101
 
102
-		else :
102
+		else {
103
+			:
103 104
 			get_template_part( 'no-results', 'archive-comic' );
105
+		}
104 106
 		endif; ?>
105 107
 
106 108
 				</div><!-- .wrap -->
Please login to merge, or discard this patch.
archive-titles.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 
15 15
 			<header class="entry-header">
16 16
 
17
-			<?php the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); ?>
17
+			<?php the_title('<h1 class="entry-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h1>'); ?>
18 18
 
19 19
 			<?php // call the series by title and list them. ?>
20 20
 
@@ -23,9 +23,9 @@  discard block
 block discarded – undo
23 23
 			<?php
24 24
 				$args = array(
25 25
 				'post_type'     => 'comic',
26
-				'title_li'      => esc_html_e( '', 'strip' ),
26
+				'title_li'      => esc_html_e('', 'strip'),
27 27
 				);
28
-				wp_list_pages( $args );
28
+				wp_list_pages($args);
29 29
 			?>
30 30
 			</h2>
31 31
 			<br>
Please login to merge, or discard this patch.
single-comic.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -6,8 +6,8 @@  discard block
 block discarded – undo
6 6
  * @subpackage Strip
7 7
  */
8 8
 
9
-if ( post_type_exists( 'comic' ) ) {
10
-	get_header( 'lite' );
9
+if (post_type_exists('comic')) {
10
+	get_header('lite');
11 11
 } else {
12 12
 	get_header();
13 13
 }
@@ -18,25 +18,25 @@  discard block
 block discarded – undo
18 18
 
19 19
 	<?php
20 20
 	// Start the loop.
21
-	while ( have_posts() ) : the_post(); ?>
21
+	while (have_posts()) : the_post(); ?>
22 22
 
23 23
 			<div class="entry-comic">
24 24
 
25
-				<?php get_template_part( 'content-comic' ); ?>
25
+				<?php get_template_part('content-comic'); ?>
26 26
 
27 27
 					<div class="wrap clear">
28 28
 
29
-						<h1 class="screen-reader-text"><?php esc_html_e( 'Post navigation', 'strip' ); ?></h1>
29
+						<h1 class="screen-reader-text"><?php esc_html_e('Post navigation', 'strip'); ?></h1>
30 30
 
31 31
 								<div class="navigation-comic">
32
-								<nav class="nav-first"><a href="<?php echo esc_url( first_comic_link() ); ?>"><?php esc_html_e( 'Start', 'strip' ); ?></a></nav>
33
-								<nav class="nav-previous"><?php previous_post_link( '%link', __( 'Previous', 'strip' ), true, '', 'story' ); ?></nav>
34
-								<nav class="nav-title"><?php the_title( '<h4 class="series-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h4>' ); ?></nav>
35
-								<nav class="nav-next"><?php next_post_link( '%link', __( 'Next', 'strip' ), true, '', 'story' ); ?></nav>
36
-								<nav class="nav-last"><a href="<?php echo esc_url( last_comic_link() ); ?>"><?php esc_html_e( 'Last', 'strip' ); ?></a></nav>
32
+								<nav class="nav-first"><a href="<?php echo esc_url(first_comic_link()); ?>"><?php esc_html_e('Start', 'strip'); ?></a></nav>
33
+								<nav class="nav-previous"><?php previous_post_link('%link', __('Previous', 'strip'), true, '', 'story'); ?></nav>
34
+								<nav class="nav-title"><?php the_title('<h4 class="series-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h4>'); ?></nav>
35
+								<nav class="nav-next"><?php next_post_link('%link', __('Next', 'strip'), true, '', 'story'); ?></nav>
36
+								<nav class="nav-last"><a href="<?php echo esc_url(last_comic_link()); ?>"><?php esc_html_e('Last', 'strip'); ?></a></nav>
37 37
 							</div><!-- .wrap -->
38 38
 
39
-						<?php set_transient( 'story', $comic );?>
39
+						<?php set_transient('story', $comic); ?>
40 40
 
41 41
 			</div><!-- #entry-comic -->
42 42
 
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 
45 45
 		<?php
46 46
 			// If comments are open or we have at least one comment, load up the comment template.
47
-		if ( comments_open() || '0' !== get_comments_number() ) :
47
+		if (comments_open() || '0' !== get_comments_number()) :
48 48
 			comments_template();
49 49
 		endif;
50 50
 
@@ -52,4 +52,4 @@  discard block
 block discarded – undo
52 52
 
53 53
 		</main><!-- #content -->
54 54
 	</section><!-- #primary -->
55
-<?php get_footer( 'lite' ); ?>
55
+<?php get_footer('lite'); ?>
Please login to merge, or discard this patch.
archive.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -14,25 +14,25 @@  discard block
 block discarded – undo
14 14
 	<main id="main" class="site-main" role="main">
15 15
 		<div class="wrap">
16 16
 	<?php
17
-	if ( have_posts() ) : ?>
17
+	if (have_posts()) : ?>
18 18
 
19 19
 		<header class="page-header">
20 20
 				<h1 class="page-title">
21 21
 			<?php
22
-			if ( is_author() && get_the_author_meta( 'description' ) ) {
22
+			if (is_author() && get_the_author_meta('description')) {
23 23
 													echo '<div class="author-index shorter">';
24
-													get_template_part( 'inc/author','box' );
24
+													get_template_part('inc/author', 'box');
25 25
 													echo '</div>';
26 26
 			} else {
27
-				the_archive_title( '<h1 class="page-title">', '</h1>' );
28
-				the_archive_description( '<div class="taxonomy-description">', '</div>' );
27
+				the_archive_title('<h1 class="page-title">', '</h1>');
28
+				the_archive_description('<div class="taxonomy-description">', '</div>');
29 29
 			}
30 30
 			?>
31 31
 		</h1>
32 32
 			</header><!-- .page-header -->
33 33
 
34 34
 			<?php /* Start the Loop */ ?>
35
-			<?php while ( have_posts() ) : the_post(); ?>
35
+			<?php while (have_posts()) : the_post(); ?>
36 36
 
37 37
 				<?php
38 38
 
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 					 * If you want to overload this in a child theme then include a file
42 42
 					 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
43 43
 					 */
44
-					get_template_part( 'content', get_post_format() );
44
+					get_template_part('content', get_post_format());
45 45
 				?>
46 46
 
47 47
 			<?php endwhile; ?>
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 
51 51
 		<?php else : ?>
52 52
 
53
-			<?php get_template_part( 'no-results', 'archive' ); ?>
53
+			<?php get_template_part('no-results', 'archive'); ?>
54 54
 
55 55
 		<?php endif; ?>
56 56
 
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,9 +48,12 @@
 block discarded – undo
48 48
 
49 49
 					<?php the_posts_pagination(); ?>
50 50
 
51
-		<?php else : ?>
51
+		<?php else {
52
+	: ?>
52 53
 
53
-			<?php get_template_part( 'no-results', 'archive' ); ?>
54
+			<?php get_template_part( 'no-results', 'archive' );
55
+}
56
+?>
54 57
 
55 58
 		<?php endif; ?>
56 59
 
Please login to merge, or discard this patch.
header.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -11,15 +11,15 @@  discard block
 block discarded – undo
11 11
 ?><!DOCTYPE html>
12 12
 <html <?php language_attributes(); ?> class="no-js">
13 13
 <head>
14
-<meta charset="<?php bloginfo( 'charset' ); ?>">
14
+<meta charset="<?php bloginfo('charset'); ?>">
15 15
 <meta http-equiv="X-UA-Compatible" content="IE=Edge">
16 16
 <meta name="viewport" content="width=device-width, initial-scale=1">
17
-<meta name="description" content="<?php if ( is_single() ) {
18
-	single_post_title( '', true );
17
+<meta name="description" content="<?php if (is_single()) {
18
+	single_post_title('', true);
19 19
 } else {
20
-	bloginfo( 'name' );
20
+	bloginfo('name');
21 21
 	echo ' - ';
22
-	bloginfo( 'description' );
22
+	bloginfo('description');
23 23
 }
24 24
 	?>" />
25 25
 <link rel="profile" href="http://gmpg.org/xfn/11">
@@ -35,18 +35,18 @@  discard block
 block discarded – undo
35 35
 	<header id="branding" class="site-header" role="banner">
36 36
 
37 37
 		<div class="site-branding">
38
-			<?php get_template_part( '/assets/inline-logo.svg' ); // remove or replace by your own custom svg logo. ?>
39
-			<?php get_template_part( 'template-parts/header/header', 'image' ); ?>
38
+			<?php get_template_part('/assets/inline-logo.svg'); // remove or replace by your own custom svg logo. ?>
39
+			<?php get_template_part('template-parts/header/header', 'image'); ?>
40 40
 			<?php strip_the_custom_logo(); ?>
41
-				<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
41
+				<h1 class="site-title"><a href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a></h1> <h2 class="site-description"><?php bloginfo('description'); ?></h2>
42 42
 	</div><!-- .site-branding -->
43 43
 
44
-		<?php if ( has_nav_menu( 'primary' ) ) : ?>
44
+		<?php if (has_nav_menu('primary')) : ?>
45 45
 		<nav id="site-navigation" class="main-navigation clear" role="navigation">
46
-			<button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false"><?php esc_attr_e( 'discover', 'strip' ); ?></button>
47
-			<div><a class="skip-link screen-reader-text" href="#content"><?php esc_attr_e( 'Skip to content', 'strip' ); ?></a></div>
46
+			<button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false"><?php esc_attr_e('discover', 'strip'); ?></button>
47
+			<div><a class="skip-link screen-reader-text" href="#content"><?php esc_attr_e('Skip to content', 'strip'); ?></a></div>
48 48
 
49
-			<?php wp_nav_menu( array( 'theme_location' => 'primary', 'container_class' => 'wrap' ) ); ?>
49
+			<?php wp_nav_menu(array('theme_location' => 'primary', 'container_class' => 'wrap')); ?>
50 50
 		</nav><!-- #site-navigation -->
51 51
 		<?php endif; ?>
52 52
 
Please login to merge, or discard this patch.