Passed
Push — master ( 1cbafb...ea49ac )
by SILENT
02:42
created
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   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -8,23 +8,23 @@  discard block
 block discarded – undo
8 8
 
9 9
 ?>
10 10
 
11
-<article id="post-<?php the_ID(); ?>" <?php post_class( 'clear' ); ?>>
11
+<article id="post-<?php the_ID(); ?>" <?php post_class('clear'); ?>>
12 12
 	<div class="entry-wrap wrap clear">
13 13
 
14 14
 	<?php
15
-	if ( '' !== get_the_post_thumbnail() ) :
16
-		the_post_thumbnail( 'strip-featured-image' );
15
+	if ('' !== get_the_post_thumbnail()) :
16
+		the_post_thumbnail('strip-featured-image');
17 17
 	endif;
18 18
 	?>
19 19
 
20 20
 	<header class="entry-header">
21 21
 		<?php
22
-			$categories_list = get_the_category_list( __( ', ', 'strip' ) );
22
+			$categories_list = get_the_category_list(__(', ', 'strip'));
23 23
 
24
-		if ( ! is_single() ) :
25
-			the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
24
+		if ( ! is_single()) :
25
+			the_title('<h1 class="entry-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h1>');
26 26
 		else :
27
-			the_title( '<h1 class="entry-title">', '</h1>' );
27
+			the_title('<h1 class="entry-title">', '</h1>');
28 28
 		endif;
29 29
 		?>
30 30
 	</header><!-- .entry-header -->
@@ -33,8 +33,8 @@  discard block
 block discarded – undo
33 33
 		<?php
34 34
 			the_content(sprintf(
35 35
 				/* translators: %s: Name of current post. */
36
-				esc_html( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'strip' ), array( 'span' => array( 'class' => array() ) ) ),
37
-				the_title( '<span class="screen-reader-text">"', '"</span>', false )
36
+				esc_html(__('Continue reading %s <span class="meta-nav">&rarr;</span>', 'strip'), array('span' => array('class' => array()))),
37
+				the_title('<span class="screen-reader-text">"', '"</span>', false)
38 38
 			));
39 39
 
40 40
 		?>
@@ -43,16 +43,16 @@  discard block
 block discarded – undo
43 43
 			<footer class="entry-meta">
44 44
 				<?php strip_entry_meta(); ?>
45 45
 
46
-				<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>
46
+				<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>
47 47
 
48
-				<?php edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?>
48
+				<?php edit_post_link(__('Edit', 'strip'), '<span class="edit-link">', '</span>'); ?>
49 49
 			</footer><!-- .entry-meta -->
50 50
 
51
-	<?php if ( has_excerpt() ) : ?>
51
+	<?php if (has_excerpt()) : ?>
52 52
 		<div class="entry-summary">
53
-	<?php do_action( 'strip_formatted_posts_excerpt_before' ); ?>
53
+	<?php do_action('strip_formatted_posts_excerpt_before'); ?>
54 54
 	<?php the_excerpt(); ?>
55
-	<?php do_action( 'strip_formatted_posts_excerpt_after' ); ?>
55
+	<?php do_action('strip_formatted_posts_excerpt_after'); ?>
56 56
 		</div><!-- .entry-caption -->
57 57
 	<?php endif; ?>
58 58
 
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.
inc/extras.php 1 patch
Spacing   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -14,30 +14,30 @@  discard block
 block discarded – undo
14 14
  * @param array $classes group-blog.
15 15
  * @return array
16 16
  */
17
-function strip_body_classes( $classes ) {
17
+function strip_body_classes($classes) {
18 18
 	// Adds a class of group-blog to blogs with more than 1 published author.
19
-	if ( is_multi_author() ) {
19
+	if (is_multi_author()) {
20 20
 		$classes[] = 'group-blog';
21 21
 	}
22 22
 
23 23
 	return $classes;
24 24
 }
25
-add_filter( 'body_class', 'strip_body_classes' );
25
+add_filter('body_class', 'strip_body_classes');
26 26
 
27 27
 /**
28 28
  * Disable emojis introduced in WordPress 4.2.
29 29
  */
30 30
 function disable_emojis() {
31
-	remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
32
-	remove_action( 'admin_print_scripts', 'print_emoji_detection_script' );
33
-	remove_action( 'wp_print_styles', 'print_emoji_styles' );
34
-	remove_action( 'admin_print_styles', 'print_emoji_styles' );
35
-	remove_filter( 'the_content_feed', 'wp_staticize_emoji' );
36
-	remove_filter( 'comment_text_rss', 'wp_staticize_emoji' );
37
-	remove_filter( 'wp_mail', 'wp_staticize_emoji_for_email' );
38
-	add_filter( 'tiny_mce_plugins', 'disable_emojis_tinymce' );
39
-	add_filter( 'wp_resource_hints', 'disable_emojis_remove_dns_prefetch', 10, 2 );
40
-} add_action( 'init', 'disable_emojis' );
31
+	remove_action('wp_head', 'print_emoji_detection_script', 7);
32
+	remove_action('admin_print_scripts', 'print_emoji_detection_script');
33
+	remove_action('wp_print_styles', 'print_emoji_styles');
34
+	remove_action('admin_print_styles', 'print_emoji_styles');
35
+	remove_filter('the_content_feed', 'wp_staticize_emoji');
36
+	remove_filter('comment_text_rss', 'wp_staticize_emoji');
37
+	remove_filter('wp_mail', 'wp_staticize_emoji_for_email');
38
+	add_filter('tiny_mce_plugins', 'disable_emojis_tinymce');
39
+	add_filter('wp_resource_hints', 'disable_emojis_remove_dns_prefetch', 10, 2);
40
+} add_action('init', 'disable_emojis');
41 41
 
42 42
 /**
43 43
  * Filter function used to remove the tinymce emoji plugin.
@@ -45,9 +45,9 @@  discard block
 block discarded – undo
45 45
  * @param array $plugins disable_emojis_tinymce.
46 46
  * @return array Difference betwen the two arrays.
47 47
  */
48
-function disable_emojis_tinymce( $plugins ) {
49
-	if ( is_array( $plugins ) ) {
50
-		return array_diff( $plugins, array( 'wpemoji' ) );
48
+function disable_emojis_tinymce($plugins) {
49
+	if (is_array($plugins)) {
50
+		return array_diff($plugins, array('wpemoji'));
51 51
 	} return array();
52 52
 }
53 53
 	/**
@@ -57,10 +57,10 @@  discard block
 block discarded – undo
57 57
 	 * @param string $relation_type The relation type the URLs are printed for.
58 58
 	 * @return array Difference betwen the two arrays.
59 59
 	 */
60
-function disable_emojis_remove_dns_prefetch( $urls, $relation_type ) {
61
-	if ( 'dns-prefetch' !== $relation_type ) { /** This filter is documented in wp-includes/formatting.php */
62
-		$emoji_svg_url = apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/2/svg/' );
63
-		$urls = array_diff( $urls, array( $emoji_svg_url ) );
60
+function disable_emojis_remove_dns_prefetch($urls, $relation_type) {
61
+	if ('dns-prefetch' !== $relation_type) { /** This filter is documented in wp-includes/formatting.php */
62
+		$emoji_svg_url = apply_filters('emoji_svg_url', 'https://s.w.org/images/core/emoji/2/svg/');
63
+		$urls = array_diff($urls, array($emoji_svg_url));
64 64
 	}
65 65
 	return $urls; }
66 66
 
@@ -70,22 +70,22 @@  discard block
 block discarded – undo
70 70
 	 * @since    1.1.3
71 71
 	 * @link: http://cubiq.org/clean-up-and-optimize-wordpress-for-your-next-theme
72 72
 	 */
73
-			remove_action( 'wp_head', 'wp_generator' );					// WP Version.
74
-			remove_action( 'wp_head', 'wlwmanifest_link' );
75
-			remove_action( 'wp_head', 'rsd_link' );
76
-			remove_action( 'wp_head', 'rel_canonical', 10, 0 );
77
-			remove_action( 'wp_head', 'wp_shortlink_wp_head', 10, 0 );
73
+			remove_action('wp_head', 'wp_generator'); // WP Version.
74
+			remove_action('wp_head', 'wlwmanifest_link');
75
+			remove_action('wp_head', 'rsd_link');
76
+			remove_action('wp_head', 'rel_canonical', 10, 0);
77
+			remove_action('wp_head', 'wp_shortlink_wp_head', 10, 0);
78 78
 
79
-			remove_action( 'wp_head', 'parent_post_rel_link', 10, 0 );// Parent rel link.
80
-			remove_action( 'wp_head', 'start_post_rel_link', 10, 0 );	// Start post rel link.
81
-			remove_action( 'wp_head', 'index_rel_link' );
79
+			remove_action('wp_head', 'parent_post_rel_link', 10, 0); // Parent rel link.
80
+			remove_action('wp_head', 'start_post_rel_link', 10, 0); // Start post rel link.
81
+			remove_action('wp_head', 'index_rel_link');
82 82
 
83
-			remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0 ); // Adjacent post rel link.
83
+			remove_action('wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0); // Adjacent post rel link.
84 84
 
85
-			add_filter( 'the_generator', '__return_false' );
85
+			add_filter('the_generator', '__return_false');
86 86
 
87
-			remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
88
-			remove_action( 'wp_print_styles', 'print_emoji_styles' );
87
+			remove_action('wp_head', 'print_emoji_detection_script', 7);
88
+			remove_action('wp_print_styles', 'print_emoji_styles');
89 89
 	/**
90 90
 	 * Cleanup head remove rss version
91 91
 	 *
@@ -100,8 +100,8 @@  discard block
 block discarded – undo
100 100
 	 * @param array $headers remove x pingback.
101 101
 	 * @since    1.1.3
102 102
 	 */
103
-function strip_remove_x_pingback( $headers ) {
104
-	unset( $headers['X-Pingback'] );
103
+function strip_remove_x_pingback($headers) {
104
+	unset($headers['X-Pingback']);
105 105
 	return $headers;
106 106
 }
107 107
 
@@ -112,9 +112,9 @@  discard block
 block discarded – undo
112 112
 	 */
113 113
 function strip_remove_comments_inline_styles() {
114 114
 	global $wp_widget_factory;
115
-	if ( has_filter( 'wp_head', 'wp_widget_recent_comments_style' ) ) {
116
-		remove_filter( 'wp_head', 'wp_widget_recent_comments_style' );
115
+	if (has_filter('wp_head', 'wp_widget_recent_comments_style')) {
116
+		remove_filter('wp_head', 'wp_widget_recent_comments_style');
117 117
 	}
118 118
 
119
-	remove_action( 'wp_head', array( $wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 'recent_comments_style' ) );
119
+	remove_action('wp_head', array($wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 'recent_comments_style'));
120 120
 }
Please login to merge, or discard this patch.
taxonomy-story-name.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,8 +58,10 @@
 block discarded – undo
58 58
 	) ); ?>
59 59
 </div>
60 60
 
61
-<?php else :
61
+<?php else {
62
+	:
62 63
 	get_template_part( 'no-results', 'archive-comic' );
64
+}
63 65
 endif; ?>
64 66
 
65 67
 		</main><!-- #content -->
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -14,13 +14,13 @@  discard block
 block discarded – undo
14 14
 
15 15
 	<header class="page-header">
16 16
 
17
-	<h1 class="page-title"><?php single_term_title( 'All episodes: ' ); ?></h1>
17
+	<h1 class="page-title"><?php single_term_title('All episodes: '); ?></h1>
18 18
 
19 19
 	<?php
20 20
 	// Show an optional term description.
21 21
 	$term_description = term_description();
22
-	if ( ! empty( $term_description ) ) :
23
-		printf( '<div class="taxonomy-description">%s</div>', $term_description, 'strip' ); // WPCS: XSS OK.
22
+	if ( ! empty($term_description)) :
23
+		printf('<div class="taxonomy-description">%s</div>', $term_description, 'strip'); // WPCS: XSS OK.
24 24
 endif;
25 25
 ?>
26 26
 
@@ -36,30 +36,30 @@  discard block
 block discarded – undo
36 36
 	'order'           => 'ASC', // It is either ASC or DESC, standing for ascendant or descendant order.
37 37
 	);
38 38
 
39
-	$loop = new WP_Query( $args );
39
+	$loop = new WP_Query($args);
40 40
 	// Start the loop.
41
-	if ( $loop->have_posts() ) :
41
+	if ($loop->have_posts()) :
42 42
 		$i = 1;
43
-		while ( $loop->have_posts() && $i < 3 ) : $loop->the_post(); // 3 sets the posts per page. @link https://digwp.com/2009/12/limit-posts-without-plugin/
43
+		while ($loop->have_posts() && $i < 3) : $loop->the_post(); // 3 sets the posts per page. @link https://digwp.com/2009/12/limit-posts-without-plugin/
44 44
 
45
-			get_template_part( 'content-series' ); ?>
45
+			get_template_part('content-series'); ?>
46 46
 
47 47
 				<?php  $i++;
48 48
 endwhile;
49 49
 		wp_reset_postdata(); ?>
50 50
 
51 51
 <div class="wrap">
52
-	<?php the_posts_pagination( array(
53
-		'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'strip' ) . ' </span>',
54
-		'prev_text' => __( 'Previous', 'strip' ), // In case you want to change the previous link text.
55
-		'next_text' => __( 'Next', 'strip' ), // In case you want to change the next link text.
52
+	<?php the_posts_pagination(array(
53
+		'before_page_number' => '<span class="meta-nav screen-reader-text">' . __('Page', 'strip') . ' </span>',
54
+		'prev_text' => __('Previous', 'strip'), // In case you want to change the previous link text.
55
+		'next_text' => __('Next', 'strip'), // In case you want to change the next link text.
56 56
 		'type' => 'title', // How you want the return value to be formatted.
57 57
 		'add_fragment' => '#result', // Your anchor.
58
-	) ); ?>
58
+	)); ?>
59 59
 </div>
60 60
 
61 61
 <?php else :
62
-	get_template_part( 'no-results', 'archive-comic' );
62
+	get_template_part('no-results', 'archive-comic');
63 63
 endif; ?>
64 64
 
65 65
 		</main><!-- #content -->
Please login to merge, or discard this patch.
image.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -6,14 +6,14 @@  discard block
 block discarded – undo
6 6
  * @subpackage Strip
7 7
  */
8 8
 
9
-get_header( 'lite' );
9
+get_header('lite');
10 10
 ?>
11 11
 	<div id="primary" class="content-area image-attachment">
12 12
 		<div id="content" class="site-content" role="main">
13 13
 
14 14
 	<?php
15 15
 	// Start the loop.
16
-	while ( have_posts() ) :
16
+	while (have_posts()) :
17 17
 		the_post(); ?>
18 18
 
19 19
 			<article id="post-<?php the_ID(); ?>">
@@ -29,9 +29,9 @@  discard block
 block discarded – undo
29 29
 					 *
30 30
 					 * @param string $image_size Image size. Default 'full'.
31 31
 					 */
32
-					$image_size = apply_filters( 'strip_attachment_size', 'full' );
32
+					$image_size = apply_filters('strip_attachment_size', 'full');
33 33
 
34
-					echo wp_get_attachment_image( get_the_ID(), $image_size );
34
+					echo wp_get_attachment_image(get_the_ID(), $image_size);
35 35
 
36 36
 					?>
37 37
 
@@ -40,18 +40,18 @@  discard block
 block discarded – undo
40 40
 		<?php // image navigation. ?>
41 41
 <nav role="navigation" id="image-navigation" class="image-navigation">
42 42
 
43
-				<div class="previous"><?php previous_image_link( false, __( '<span class="meta-nav">&larr;</span> <span class="text-nav">Previous panel</span>', 'strip' ) ); ?></div>
44
-				<div class="next"><?php next_image_link( false, __( '<span class="meta-nav">&rarr;</span> <span class="text-nav">Next panel</span>', 'strip' ) ); ?></div>
43
+				<div class="previous"><?php previous_image_link(false, __('<span class="meta-nav">&larr;</span> <span class="text-nav">Previous panel</span>', 'strip')); ?></div>
44
+				<div class="next"><?php next_image_link(false, __('<span class="meta-nav">&rarr;</span> <span class="text-nav">Next panel</span>', 'strip')); ?></div>
45 45
 
46 46
 				<nav class="post-parent-title">
47
-					<?php printf( '<a href="%s" class="post-parent-title">%s</a>',
48
-						esc_url( get_permalink( $post->post_parent ) ),
49
-						esc_html( get_the_title( $post->post_parent ) )
47
+					<?php printf('<a href="%s" class="post-parent-title">%s</a>',
48
+						esc_url(get_permalink($post->post_parent)),
49
+						esc_html(get_the_title($post->post_parent))
50 50
 					); ?>
51 51
 				</nav>
52 52
 </nav><!-- #image-navigation -->
53 53
 
54
-		<?php if ( has_excerpt() ) : ?>
54
+		<?php if (has_excerpt()) : ?>
55 55
 					<div class="entry-caption">
56 56
 		<?php the_excerpt(); ?>
57 57
 					</div><!-- .entry-caption -->
@@ -66,4 +66,4 @@  discard block
 block discarded – undo
66 66
 		</div><!-- #content -->
67 67
 	</div><!-- #primary -->
68 68
 
69
-<?php get_footer( 'lite' ); ?>
69
+<?php get_footer('lite'); ?>
Please login to merge, or discard this patch.
archive-story.php 2 patches
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.
Spacing   +21 added lines, -21 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,34 +29,34 @@  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'     => 12, // 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="three-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();
58 58
 					echo '" class="thumbnail-wrapper">';
59
-					the_post_thumbnail( 'strip-medium' );
59
+					the_post_thumbnail('strip-medium');
60 60
 
61 61
 					echo '</a>';
62 62
 
@@ -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.
single.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -13,20 +13,20 @@
 block discarded – undo
13 13
 		<section id="primary">
14 14
 			<main id="content" role="main">
15 15
 
16
-		<?php while ( have_posts() ) : the_post(); ?>
16
+		<?php while (have_posts()) : the_post(); ?>
17 17
 
18
-			<?php get_template_part( 'content', get_post_format() ); ?>
18
+			<?php get_template_part('content', get_post_format()); ?>
19 19
 
20 20
 			<?php
21 21
 				// If comments are open or we have at least one comment, load up the comment template.
22
-			if ( comments_open() || '0' !== get_comments_number() ) :
22
+			if (comments_open() || '0' !== get_comments_number()) :
23 23
 				comments_template();
24 24
 			endif;
25 25
 
26
-			the_post_navigation( array(
27
-				'prev_text' => '<span class="screen-reader-text">' . __( 'Previous Post', 'strip' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . esc_html_x( '&larr;', 'Previous post link', 'strip' ) . '</span> %title</span>',
28
-				'next_text' => '<span class="screen-reader-text">' . __( 'Next Post', 'strip' ) . '</span> %title <span aria-hidden="true" class="nav-subtitle">' . esc_html_x( '&rarr;', 'Next post link', 'strip' ) . '</span> </span>',
29
-			) );
26
+			the_post_navigation(array(
27
+				'prev_text' => '<span class="screen-reader-text">' . __('Previous Post', 'strip') . '</span><span aria-hidden="true" class="nav-subtitle">' . esc_html_x('&larr;', 'Previous post link', 'strip') . '</span> %title</span>',
28
+				'next_text' => '<span class="screen-reader-text">' . __('Next Post', 'strip') . '</span> %title <span aria-hidden="true" class="nav-subtitle">' . esc_html_x('&rarr;', 'Next post link', 'strip') . '</span> </span>',
29
+			));
30 30
 
31 31
 		endwhile; // end of the loop. ?>
32 32
 
Please login to merge, or discard this patch.