Passed
Push — master ( b27a71...2f3772 )
by SILENT
02:18
created
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.
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( 'All Episodes', 'strip' ),
26
+				'title_li'      => esc_html_e('All Episodes', '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.
content-link.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,20 +12,20 @@
 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' ) ); ?>
15
+				$categories_list = get_the_category_list(__(', ', 'strip')); ?>
16 16
 
17 17
 		</header><!-- .entry-header -->
18 18
 
19 19
 		<footer class="entry-meta">
20 20
 			<?php strip_entry_meta(); ?>
21 21
 
22
-			<span class="entry-format"><a href="<?php echo esc_url( get_post_format_link( 'link' ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'All %s posts', 'strip' ), get_post_format_string( 'link' ) ) ); ?>"><?php echo esc_html( get_post_format_string( 'link' ) ); ?></a></span>
22
+			<span class="entry-format"><a href="<?php echo esc_url(get_post_format_link('link')); ?>" title="<?php echo esc_attr(sprintf(__('All %s posts', 'strip'), get_post_format_string('link'))); ?>"><?php echo esc_html(get_post_format_string('link')); ?></a></span>
23 23
 
24
-			<?php edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?>
24
+			<?php edit_post_link(__('Edit', 'strip'), '<span class="edit-link">', '</span>'); ?>
25 25
 		</footer><!-- .entry-meta -->
26 26
 
27 27
 		<div class="entry-content">
28
-			<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'strip' ) ); ?>
28
+			<?php the_content(__('Continue reading <span class="meta-nav">&rarr;</span>', 'strip')); ?>
29 29
 
30 30
 			</div><!-- .entry-content -->
31 31
 		</div><!-- .entry-wrap -->
Please login to merge, or discard this patch.
content-quote.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,19 +12,19 @@
 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' ) ); ?>
15
+				$categories_list = get_the_category_list(__(', ', 'strip')); ?>
16 16
 
17 17
 		</header><!-- .entry-header -->
18 18
 
19 19
 		<footer class="entry-meta">
20 20
 
21
-			<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>
21
+			<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>
22 22
 
23
-	<?php edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?>
23
+	<?php edit_post_link(__('Edit', 'strip'), '<span class="edit-link">', '</span>'); ?>
24 24
 		</footer><!-- .entry-meta -->
25 25
 
26 26
 		<div class="entry-content">
27
-	<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'strip' ) ); ?>
27
+	<?php the_content(__('Continue reading <span class="meta-nav">&rarr;</span>', 'strip')); ?>
28 28
 
29 29
 		</div><!-- .entry-content -->
30 30
 		</div><!-- .entry-wrap -->
Please login to merge, or discard this patch.
content-aside.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,20 +12,20 @@
 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' ) ); ?>
15
+				$categories_list = get_the_category_list(__(', ', 'strip')); ?>
16 16
 
17 17
 		</header><!-- .entry-header -->
18 18
 
19 19
 		<footer class="entry-meta">
20 20
 			<?php strip_entry_meta(); ?>
21 21
 
22
-			<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>
22
+			<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>
23 23
 
24
-			<?php edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?>
24
+			<?php edit_post_link(__('Edit', 'strip'), '<span class="edit-link">', '</span>'); ?>
25 25
 		</footer><!-- .entry-meta -->
26 26
 
27 27
 		<div class="entry-content">
28
-			<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'strip' ) ); ?>
28
+			<?php the_content(__('Continue reading <span class="meta-nav">&rarr;</span>', 'strip')); ?>
29 29
 
30 30
 		</div><!-- .entry-content -->
31 31
 		</div><!-- .entry-wrap -->
Please login to merge, or discard this patch.
comments.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
  * the visitor has not yet entered the password we will
19 19
  * return early without loading the comments.
20 20
  */
21
-if ( post_password_required() ) {
21
+if (post_password_required()) {
22 22
 	return;
23 23
 }
24 24
 ?>
@@ -27,13 +27,13 @@  discard block
 block discarded – undo
27 27
 
28 28
 	<?php
29 29
 	// You can start editing here -- including this comment!
30
-	if ( have_comments() ) : ?>
30
+	if (have_comments()) : ?>
31 31
 		<h2 class="comments-title">
32 32
 			<?php
33 33
 				$comments_number = get_comments_number();
34
-			if ( '1' === $comments_number ) {
34
+			if ('1' === $comments_number) {
35 35
 				/* translators: %s: post title */
36
-				printf( esc_html_x( 'One Reply to &ldquo;%s&rdquo;', 'comments title', 'strip' ), get_the_title() );
36
+				printf(esc_html_x('One Reply to &ldquo;%s&rdquo;', 'comments title', 'strip'), get_the_title());
37 37
 			} else {
38 38
 				printf(
39 39
 					esc_attr(
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 							'strip'
47 47
 						)
48 48
 					),
49
-					number_format_i18n( $comments_number ),
49
+					number_format_i18n($comments_number),
50 50
 					get_the_title()
51 51
 				);
52 52
 			}
@@ -55,26 +55,26 @@  discard block
 block discarded – undo
55 55
 
56 56
 		<ol class="comment-list">
57 57
 			<?php
58
-				wp_list_comments( array(
58
+				wp_list_comments(array(
59 59
 					'avatar_size' => 96,
60 60
 					'style'       => 'ol',
61 61
 					'short_ping'  => true,
62
-					'reply_text'  => __( 'Reply', 'strip' ),
63
-				) );
62
+					'reply_text'  => __('Reply', 'strip'),
63
+				));
64 64
 			?>
65 65
 		</ol>
66 66
 
67
-		<?php the_comments_pagination( array(
68
-			'prev_text' => '<span class="screen-reader-text">' . __( 'Previous', 'strip' ) . '</span>',
69
-			'next_text' => '<span class="screen-reader-text">' . __( 'Next', 'strip' ) . '</span>',
70
-		) );
67
+		<?php the_comments_pagination(array(
68
+			'prev_text' => '<span class="screen-reader-text">' . __('Previous', 'strip') . '</span>',
69
+			'next_text' => '<span class="screen-reader-text">' . __('Next', 'strip') . '</span>',
70
+		));
71 71
 
72 72
 	endif; // Check for have_comments().
73 73
 
74 74
 	// If comments are closed and there are comments, let's leave a little note, shall we?
75
-	if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) : ?>
75
+	if ( ! comments_open() && get_comments_number() && post_type_supports(get_post_type(), 'comments')) : ?>
76 76
 
77
-		<p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'strip' ); ?></p>
77
+		<p class="no-comments"><?php esc_html_e('Comments are closed.', 'strip'); ?></p>
78 78
 	<?php
79 79
 	endif;
80 80
 
Please login to merge, or discard this patch.
content.php 2 patches
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -10,24 +10,24 @@  discard block
 block discarded – undo
10 10
 
11 11
 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
12 12
 	<div class="wrap">
13
-			<?php if ( '' !== get_the_post_thumbnail() && ! is_single() ) : ?>
14
-			<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'strip' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="<?php the_ID(); ?>" class="strip-featured-thumbnail">
15
-				<?php the_post_thumbnail( 'strip-featured-thumbnail' ); ?>
13
+			<?php if ('' !== get_the_post_thumbnail() && ! is_single()) : ?>
14
+			<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr(sprintf(__('Permalink to %s', 'strip'), the_title_attribute('echo=0'))); ?>" rel="<?php the_ID(); ?>" class="strip-featured-thumbnail">
15
+				<?php the_post_thumbnail('strip-featured-thumbnail'); ?>
16 16
 			</a>
17 17
 			<?php else : ?>
18
-				<?php the_post_thumbnail( 'strip-featured-thumbnail' ); ?>
18
+				<?php the_post_thumbnail('strip-featured-thumbnail'); ?>
19 19
 			<?php endif; ?>
20 20
 
21 21
 		<header class="entry-header">
22 22
 			<?php
23
-			$categories_list = get_the_category_list( __( ', ', 'strip' ) );
24
-			if ( $categories_list && strip_categorized_blog() ) {
23
+			$categories_list = get_the_category_list(__(', ', 'strip'));
24
+			if ($categories_list && strip_categorized_blog()) {
25 25
 				echo '<span class="categories-links">' . $categories_list . '</span>';
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 -->
@@ -35,14 +35,14 @@  discard block
 block discarded – undo
35 35
 		<footer class="entry-meta">
36 36
 			<?php strip_entry_meta(); ?>
37 37
 
38
-			<?php if ( ! post_password_required() && ( comments_open() || '0' !== get_comments_number() ) ) : ?>
39
-			<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'strip' ), __( '1 Comment', 'strip' ), __( '% Comments', 'strip' ) ); ?></span>
38
+			<?php if ( ! post_password_required() && (comments_open() || '0' !== get_comments_number())) : ?>
39
+			<span class="comments-link"><?php comments_popup_link(__('Leave a comment', 'strip'), __('1 Comment', 'strip'), __('% Comments', 'strip')); ?></span>
40 40
 			<?php endif; ?>
41 41
 
42
-			<?php edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?>
42
+			<?php edit_post_link(__('Edit', 'strip'), '<span class="edit-link">', '</span>'); ?>
43 43
 		</footer><!-- .entry-meta -->
44 44
 
45
-		<?php if ( is_search() ) : // Only display Excerpts for Search. ?>
45
+		<?php if (is_search()) : // Only display Excerpts for Search. ?>
46 46
 		<div class="entry-summary">
47 47
 			<?php the_excerpt(); ?>
48 48
 		</div><!-- .entry-summary -->
@@ -51,16 +51,16 @@  discard block
 block discarded – undo
51 51
 			<?php
52 52
 			the_content(sprintf(
53 53
 				/* translators: %s: Name of current post. */
54
-				esc_html( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'strip' ), array( 'span' => array( 'class' => array() ) ) ),
55
-				get_the_title( '<span class="screen-reader-text">"', '"</span>', false )
54
+				esc_html(__('Continue reading %s <span class="meta-nav">&rarr;</span>', 'strip'), array('span' => array('class' => array()))),
55
+				get_the_title('<span class="screen-reader-text">"', '"</span>', false)
56 56
 			));
57 57
 
58 58
 			wp_link_pages(array(
59
-				'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'strip' ) . '</span>',
59
+				'before'      => '<div class="page-links"><span class="page-links-title">' . __('Pages:', 'strip') . '</span>',
60 60
 				'after'       => '</div>',
61 61
 				'link_before' => '<span>',
62 62
 				'link_after'  => '</span>',
63
-				'pagelink'    => '<span class="screen-reader-text">' . __( 'Page', 'strip' ) . ' </span>%',
63
+				'pagelink'    => '<span class="screen-reader-text">' . __('Page', 'strip') . ' </span>%',
64 64
 				'separator'   => '<span class="screen-reader-text">, </span>',
65 65
 			));
66 66
 		?>
Please login to merge, or discard this patch.
Braces   +11 added lines, -4 removed lines patch added patch discarded remove patch
@@ -14,8 +14,11 @@  discard block
 block discarded – undo
14 14
 			<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'strip' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="<?php the_ID(); ?>" class="strip-featured-thumbnail">
15 15
 				<?php the_post_thumbnail( 'strip-featured-thumbnail' ); ?>
16 16
 			</a>
17
-			<?php else : ?>
18
-				<?php the_post_thumbnail( 'strip-featured-thumbnail' ); ?>
17
+			<?php else {
18
+	: ?>
19
+				<?php the_post_thumbnail( 'strip-featured-thumbnail' );
20
+}
21
+?>
19 22
 			<?php endif; ?>
20 23
 
21 24
 		<header class="entry-header">
@@ -26,8 +29,10 @@  discard block
 block discarded – undo
26 29
 			}
27 30
 			if ( ! is_single() ) :
28 31
 				the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
29
-			else :
32
+			else {
33
+				:
30 34
 					the_title( '<h1 class="entry-title">', '</h1>' );
35
+			}
31 36
 			endif;
32 37
 			?>
33 38
 		</header><!-- .entry-header -->
@@ -46,7 +51,8 @@  discard block
 block discarded – undo
46 51
 		<div class="entry-summary">
47 52
 			<?php the_excerpt(); ?>
48 53
 		</div><!-- .entry-summary -->
49
-		<?php else : ?>
54
+		<?php else {
55
+	: ?>
50 56
 		<div class="entry-content">
51 57
 			<?php
52 58
 			the_content(sprintf(
@@ -54,6 +60,7 @@  discard block
 block discarded – undo
54 60
 				esc_html( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'strip' ), array( 'span' => array( 'class' => array() ) ) ),
55 61
 				get_the_title( '<span class="screen-reader-text">"', '"</span>', false )
56 62
 			));
63
+}
57 64
 
58 65
 			wp_link_pages(array(
59 66
 				'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'strip' ) . '</span>',
Please login to merge, or discard this patch.
inc/template-tags.php 1 patch
Spacing   +71 added lines, -71 removed lines patch added patch discarded remove patch
@@ -13,104 +13,104 @@  discard block
 block discarded – undo
13 13
  * Add custom header image to header area
14 14
  */
15 15
 function strip_header_background() {
16
-	if ( get_header_image() ) {
17
-		$css = '.site-branding { background-image: url(' . esc_url( get_header_image() ) . '); }';
18
-		wp_add_inline_style( 'strip-style', $css );
16
+	if (get_header_image()) {
17
+		$css = '.site-branding { background-image: url(' . esc_url(get_header_image()) . '); }';
18
+		wp_add_inline_style('strip-style', $css);
19 19
 	}
20 20
 }
21
-add_action( 'wp_enqueue_scripts', 'strip_header_background', 11 );
21
+add_action('wp_enqueue_scripts', 'strip_header_background', 11);
22 22
 
23
-if ( ! function_exists( 'strip_content_nav' ) ) :
23
+if ( ! function_exists('strip_content_nav')) :
24 24
 
25 25
 	/**
26 26
 	 * Display navigation to next/previous pages when applicable
27 27
 	 *
28 28
 	 * @param $string $nav_id strip_content_nav.
29 29
 	 */
30
-	function strip_content_nav( $nav_id ) {
30
+	function strip_content_nav($nav_id) {
31 31
 		global $wp_query;
32 32
 		// Don't print empty markup on single pages if there's nowhere to navigate.
33 33
 		// Don't print empty markup in archives if there's only one page.
34
-		if ( $wp_query->max_num_pages < 2 && ( is_home() || is_archive() || is_search() ) ) {
34
+		if ($wp_query->max_num_pages < 2 && (is_home() || is_archive() || is_search())) {
35 35
 			return;
36 36
 		}
37 37
 
38
-		$nav_class = ( is_single() || is_tax( 'story' ) ) ? 'post-navigation' : 'paging-navigation' ;
38
+		$nav_class = (is_single() || is_tax('story')) ? 'post-navigation' : 'paging-navigation';
39 39
 
40 40
 		?> <div class="wrap clear">
41 41
 
42
-		<nav role="navigation" id="<?php echo esc_attr( $nav_id ); ?>" class="<?php echo esc_attr( $nav_class ); ?> clear">
43
-		<h1 class="screen-reader-text"><?php esc_html_e( 'Post navigation', 'strip' ); ?></h1>
42
+		<nav role="navigation" id="<?php echo esc_attr($nav_id); ?>" class="<?php echo esc_attr($nav_class); ?> clear">
43
+		<h1 class="screen-reader-text"><?php esc_html_e('Post navigation', 'strip'); ?></h1>
44 44
 
45
-		<?php  if ( 'comic' === get_post_type() && ( is_single() ) ) : // comics navigation links.
45
+		<?php  if ('comic' === get_post_type() && (is_single())) : // comics navigation links.
46 46
 
47 47
 			$nav_class .= ' navigation-comic'; ?>
48 48
 
49 49
 				<div class="navigation-comic">
50
-				<nav class="nav-first"><a href="<?php echo esc_url( first_comic_link() ); ?>"><?php esc_html_e( 'Start', 'strip' ); ?></a></nav>
51
-				<nav class="nav-previous"><?php previous_post_link( '%link', __( 'Previous', 'strip' ), true, '', 'story' ); ?></nav>
52
-				<nav class="nav-title"><?php the_title( '<h4 class="series-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h4>' ); ?></nav>
53
-				<nav class="nav-next"><?php next_post_link( '%link', __( 'Next', 'strip' ), true, '', 'story' ); ?></nav>
54
-				<nav class="nav-last"><a href="<?php echo esc_url( last_comic_link() ); ?>"><?php esc_html_e( 'Last', 'strip' ); ?></a></nav>
50
+				<nav class="nav-first"><a href="<?php echo esc_url(first_comic_link()); ?>"><?php esc_html_e('Start', 'strip'); ?></a></nav>
51
+				<nav class="nav-previous"><?php previous_post_link('%link', __('Previous', 'strip'), true, '', 'story'); ?></nav>
52
+				<nav class="nav-title"><?php the_title('<h4 class="series-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h4>'); ?></nav>
53
+				<nav class="nav-next"><?php next_post_link('%link', __('Next', 'strip'), true, '', 'story'); ?></nav>
54
+				<nav class="nav-last"><a href="<?php echo esc_url(last_comic_link()); ?>"><?php esc_html_e('Last', 'strip'); ?></a></nav>
55 55
 			</div><!-- .navigation-comic -->
56 56
 
57
-		<?php elseif ( is_single() ) : // navigation links for single posts. ?>
57
+		<?php elseif (is_single()) : // navigation links for single posts. ?>
58 58
 
59
-		<?php previous_post_link( '<div class="nav-previous">%link</div>', '<span class="meta-nav">' . _x( '&#8592;', 'Previous post link', 'strip' ) . '</span> %title' ); ?>
60
-		<?php next_post_link( '<div class="nav-next">%link</div>', '%title <span class="meta-nav">' . _x( '&#8594;', 'Next post link', 'strip' ) . '</span>' ); ?>
59
+		<?php previous_post_link('<div class="nav-previous">%link</div>', '<span class="meta-nav">' . _x('&#8592;', 'Previous post link', 'strip') . '</span> %title'); ?>
60
+		<?php next_post_link('<div class="nav-next">%link</div>', '%title <span class="meta-nav">' . _x('&#8594;', 'Next post link', 'strip') . '</span>'); ?>
61 61
 
62
-	<?php elseif ( $wp_query->max_num_pages > 1 && ( is_home() || is_archive() || is_search() ) ) : // navigation links for blog, archive, and search pages. ?>
62
+	<?php elseif ($wp_query->max_num_pages > 1 && (is_home() || is_archive() || is_search())) : // navigation links for blog, archive, and search pages. ?>
63 63
 
64
-		<?php if ( get_next_posts_link() ) : ?>
65
-		<div class="nav-previous-page"><?php next_posts_link( __( 'Older posts', 'strip' ) ); ?></div>
64
+		<?php if (get_next_posts_link()) : ?>
65
+		<div class="nav-previous-page"><?php next_posts_link(__('Older posts', 'strip')); ?></div>
66 66
 		<?php endif; ?>
67 67
 
68
-		<?php if ( get_previous_posts_link() ) : ?>
69
-		<div class="nav-next-page"><?php previous_posts_link( __( 'Recent posts', 'strip' ) ); ?></div>
68
+		<?php if (get_previous_posts_link()) : ?>
69
+		<div class="nav-next-page"><?php previous_posts_link(__('Recent posts', 'strip')); ?></div>
70 70
 			<?php endif; ?>
71 71
 
72 72
 		<?php endif; ?>
73 73
 
74 74
 				</div><!-- .entry-wrap -->
75
-			</nav><!-- #<?php echo esc_attr( $nav_id ); ?> -->
75
+			</nav><!-- #<?php echo esc_attr($nav_id); ?> -->
76 76
 			<?php
77 77
 	}
78 78
 endif; // strip_content_nav.
79 79
 
80
-if ( ! function_exists( 'strip_entry_meta' ) ) :
80
+if ( ! function_exists('strip_entry_meta')) :
81 81
 	/**
82 82
 	 * Prints HTML with meta information for the current post-date/time and author.
83 83
 	 */
84 84
 	function strip_entry_meta() {
85
-		if ( is_sticky() && is_home() ) {
85
+		if (is_sticky() && is_home()) {
86 86
 			printf(
87
-				wp_kses( '<span class="featured-post"><a href="%1$s" title="%2$s" rel="bookmark">Sticky</a></span>', 'strip' ),
88
-				esc_url( get_permalink() ),
89
-				esc_attr( get_the_time() )
87
+				wp_kses('<span class="featured-post"><a href="%1$s" title="%2$s" rel="bookmark">Sticky</a></span>', 'strip'),
88
+				esc_url(get_permalink()),
89
+				esc_attr(get_the_time())
90 90
 			);
91 91
 		}
92 92
 
93
-		if ( 'post' === get_post_type() ) {
93
+		if ('post' === get_post_type()) {
94 94
 			printf(
95
-				__( '<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' ),
96
-				esc_url( get_permalink() ),
97
-				esc_attr( get_the_time() ),
98
-				esc_attr( get_the_date( 'c' ) ),
95
+				__('<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'),
96
+				esc_url(get_permalink()),
97
+				esc_attr(get_the_time()),
98
+				esc_attr(get_the_date('c')),
99 99
 				get_the_date(),
100
-				esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
101
-				esc_attr( sprintf( __( 'View all posts by %s', 'strip' ), get_the_author() ) ),
100
+				esc_url(get_author_posts_url(get_the_author_meta('ID'))),
101
+				esc_attr(sprintf(__('View all posts by %s', 'strip'), get_the_author())),
102 102
 				get_the_author()
103 103
 			);
104 104
 		}
105 105
 
106
-		$tags_list = get_the_tag_list( '', _x( ', ', 'Used between list items, there is a space after the comma.', 'strip' ) );
107
-		if ( $tags_list ) {
108
-			printf( '<span class="tags-links">' . esc_html( '%1$s', 'strip' ) . '</span>', $tags_list ); // WPCS: XSS OK.
106
+		$tags_list = get_the_tag_list('', _x(', ', 'Used between list items, there is a space after the comma.', 'strip'));
107
+		if ($tags_list) {
108
+			printf('<span class="tags-links">' . esc_html('%1$s', 'strip') . '</span>', $tags_list); // WPCS: XSS OK.
109 109
 		}
110 110
 	}
111 111
 endif;
112 112
 
113
-if ( ! function_exists( 'strip_term_description' ) ) :
113
+if ( ! function_exists('strip_term_description')) :
114 114
 	/**
115 115
 	 * Display optional term description for category, tag and custom taxonomy pages.
116 116
 	 *
@@ -120,8 +120,8 @@  discard block
 block discarded – undo
120 120
 		// Show an optional term description.
121 121
 		$term_description = term_description();
122 122
 
123
-		if ( is_post_type_archive( 'comic' ) || is_category() || is_tag() || is_tax( 'story' ) && ! empty( $term_description ) ) :
124
-			printf( '<div class="taxonomy-description">%s</div>', $term_description, 'strip' ); // WPCS: XSS OK.
123
+		if (is_post_type_archive('comic') || is_category() || is_tag() || is_tax('story') && ! empty($term_description)) :
124
+			printf('<div class="taxonomy-description">%s</div>', $term_description, 'strip'); // WPCS: XSS OK.
125 125
 			endif;
126 126
 	}
127 127
 endif; // ends check for strip_term_description.
@@ -132,25 +132,25 @@  discard block
 block discarded – undo
132 132
  * @return bool
133 133
  */
134 134
 function strip_categorized_blog() {
135
-	$category_count = get_transient( 'strip_categories' );
135
+	$category_count = get_transient('strip_categories');
136 136
 
137
-	if ( false === $category_count ) {
137
+	if (false === $category_count) {
138 138
 		// Create an array of all the categories that are attached to posts.
139
-		$categories = get_categories( array(
139
+		$categories = get_categories(array(
140 140
 			'fields'     => 'ids',
141 141
 			'hide_empty' => 1,
142 142
 			// We only need to know if there is more than one category.
143 143
 			'number'     => 2,
144
-		) );
144
+		));
145 145
 
146 146
 		// Count the number of categories that are attached to the posts.
147
-		$category_count = count( $categories );
147
+		$category_count = count($categories);
148 148
 
149
-		set_transient( 'strip_categories', $category_count );
149
+		set_transient('strip_categories', $category_count);
150 150
 	}
151 151
 
152 152
 	// Allow viewing case of 0 or 1 categories in post preview.
153
-	if ( is_preview() ) {
153
+	if (is_preview()) {
154 154
 		return true;
155 155
 	}
156 156
 
@@ -162,16 +162,16 @@  discard block
 block discarded – undo
162 162
  * Flush out the transients used in strip_categorized_blog.
163 163
  */
164 164
 function strip_category_transient_flusher() {
165
-	if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
165
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
166 166
 		return;
167 167
 	}
168 168
 	// Like, beat it. Dig?
169
-	delete_transient( 'strip_categories' );
169
+	delete_transient('strip_categories');
170 170
 }
171
-add_action( 'edit_category', 'strip_category_transient_flusher' );
172
-add_action( 'save_post',     'strip_category_transient_flusher' );
171
+add_action('edit_category', 'strip_category_transient_flusher');
172
+add_action('save_post', 'strip_category_transient_flusher');
173 173
 
174
-if ( ! function_exists( 'strip_the_custom_logo' ) ) :
174
+if ( ! function_exists('strip_the_custom_logo')) :
175 175
 	/**
176 176
 	 * Displays the optional custom logo.
177 177
 	 *
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
 	 * @since strip 1.0
181 181
 	 */
182 182
 	function strip_the_custom_logo() {
183
-		if ( function_exists( 'the_custom_logo' ) ) {
183
+		if (function_exists('the_custom_logo')) {
184 184
 			the_custom_logo();
185 185
 		}
186 186
 	}
@@ -196,10 +196,10 @@  discard block
 block discarded – undo
196 196
  * @param string $taxonomy       Optional. Taxonomy, if $in_same_term is true. Default 'category'.
197 197
  * @return mixed Array containing the boundary post object if successful, null otherwise.
198 198
  */
199
-function get_comic_boundary_post( $in_same_term = false, $start = true, $taxonomy = 'category' ) {
199
+function get_comic_boundary_post($in_same_term = false, $start = true, $taxonomy = 'category') {
200 200
 	global $post;
201
-	setup_postdata( $post );
202
-	if ( ! taxonomy_exists( $taxonomy ) ) {
201
+	setup_postdata($post);
202
+	if ( ! taxonomy_exists($taxonomy)) {
203 203
 		return null;
204 204
 	}
205 205
 
@@ -213,37 +213,37 @@  discard block
 block discarded – undo
213 213
 	);
214 214
 
215 215
 	$term_array = array();
216
-	if ( $in_same_term ) {
217
-		if ( $in_same_term ) {
218
-			$term_array = wp_get_object_terms( $post->ID, $taxonomy, array( 'fields' => 'ids' ) );
216
+	if ($in_same_term) {
217
+		if ($in_same_term) {
218
+			$term_array = wp_get_object_terms($post->ID, $taxonomy, array('fields' => 'ids'));
219 219
 		}
220
-		$query_args['tax_query'] = array( array(
220
+		$query_args['tax_query'] = array(array(
221 221
 			'taxonomy' => $taxonomy,
222
-			'terms' => array_merge( $term_array ),
222
+			'terms' => array_merge($term_array),
223 223
 		),
224 224
 		);
225 225
 	}
226 226
 
227 227
 	$get_posts = new wp_query;
228
-	return $get_posts -> query( $query_args );
228
+	return $get_posts -> query($query_args);
229 229
 }
230 230
 
231 231
 /**
232 232
  * Link to the first comic post in same term
233 233
  */
234 234
 function first_comic_link() {
235
-	$first = get_comic_boundary_post( true, true, 'story' );
236
-	apply_filters( 'the_title', $first[0]->post_title );
235
+	$first = get_comic_boundary_post(true, true, 'story');
236
+	apply_filters('the_title', $first[0]->post_title);
237 237
 
238
-	echo esc_html( get_permalink( $first[0]->ID ) );
238
+	echo esc_html(get_permalink($first[0]->ID));
239 239
 }
240 240
 
241 241
 /**
242 242
  * Link to the last comic post in same term
243 243
  */
244 244
 function last_comic_link() {
245
-	$last = get_comic_boundary_post( true, false, 'story' );
246
-	apply_filters( 'the_title', $last[0]->post_title );
245
+	$last = get_comic_boundary_post(true, false, 'story');
246
+	apply_filters('the_title', $last[0]->post_title);
247 247
 
248
-	echo esc_html( get_permalink( $last[0]->ID ) );
248
+	echo esc_html(get_permalink($last[0]->ID));
249 249
 }
Please login to merge, or discard this patch.