Completed
Push — master ( 9dcb5c...798f54 )
by SILENT
02:32
created
content-gallery.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,8 +28,10 @@
 block discarded – undo
28 28
 
29 29
 	if ( ! is_single() ) :
30 30
 		the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
31
-	else :
31
+	else {
32
+		:
32 33
 					the_title( '<h1 class="entry-title">', '</h1>' );
34
+	}
33 35
 	endif; ?>
34 36
 
35 37
 		<div class="entry-content clear">
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
  */
8 8
 
9 9
 // Access global variable directly to set content_width.
10
-if ( isset( $GLOBALS['content_width'] ) ) {
10
+if (isset($GLOBALS['content_width'])) {
11 11
 	$GLOBALS['content_width'] = 1920;
12 12
 }
13 13
 ?>
@@ -15,22 +15,22 @@  discard block
 block discarded – undo
15 15
 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
16 16
 	<div class="entry-wrap wrap clear">
17 17
 
18
-<?php if ( '' !== get_the_post_thumbnail() ) :
19
-	the_post_thumbnail( 'strip-featured-thumbnail' );
18
+<?php if ('' !== get_the_post_thumbnail()) :
19
+	the_post_thumbnail('strip-featured-thumbnail');
20 20
 endif; ?>
21 21
 
22 22
 		<header class="entry-header">
23 23
 	<?php
24
-				$categories_list = get_the_category_list( __( ', ', 'strip' ) );
24
+				$categories_list = get_the_category_list(__(', ', 'strip'));
25 25
 
26
-	if ( ! is_single() ) :
27
-		the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
26
+	if ( ! is_single()) :
27
+		the_title('<h1 class="entry-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h1>');
28 28
 	else :
29
-					the_title( '<h1 class="entry-title">', '</h1>' );
29
+					the_title('<h1 class="entry-title">', '</h1>');
30 30
 	endif; ?>
31 31
 
32 32
 		<div class="entry-content clear">
33
-	<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'strip' ) ); ?>
33
+	<?php the_content(__('Continue reading <span class="meta-nav">&rarr;</span>', 'strip')); ?>
34 34
 
35 35
 		</div><!-- .entry-content -->
36 36
 		</header><!-- .entry-header -->
@@ -38,16 +38,16 @@  discard block
 block discarded – undo
38 38
 		<footer class="entry-meta">
39 39
 	<?php strip_entry_meta(); ?>
40 40
 
41
-			<span class="entry-format"><a href="<?php echo esc_url( get_post_format_link( 'gallery' ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'All %s posts', 'strip' ), get_post_format_string( 'gallery' ) ) ); ?>"><?php echo esc_html( get_post_format_string( 'gallery' ) ); ?></a></span>
41
+			<span class="entry-format"><a href="<?php echo esc_url(get_post_format_link('gallery')); ?>" title="<?php echo esc_attr(sprintf(__('All %s posts', 'strip'), get_post_format_string('gallery'))); ?>"><?php echo esc_html(get_post_format_string('gallery')); ?></a></span>
42 42
 
43
-	<?php edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?>
43
+	<?php edit_post_link(__('Edit', 'strip'), '<span class="edit-link">', '</span>'); ?>
44 44
 		</footer><!-- .entry-meta -->
45 45
 
46
-	<?php if ( has_excerpt() ) : ?>
46
+	<?php if (has_excerpt()) : ?>
47 47
 		<div class="entry-summary">
48
-	<?php do_action( 'strip_formatted_posts_excerpt_before' ); ?>
48
+	<?php do_action('strip_formatted_posts_excerpt_before'); ?>
49 49
 	<?php the_excerpt(); ?>
50
-	<?php do_action( 'strip_formatted_posts_excerpt_after' ); ?>
50
+	<?php do_action('strip_formatted_posts_excerpt_after'); ?>
51 51
 		</div><!-- .entry-caption -->
52 52
 	<?php endif; ?>
53 53
 
Please login to merge, or discard this patch.
footer.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -14,28 +14,28 @@  discard block
 block discarded – undo
14 14
 	<footer id="colophon" class="site-footer" role="contentinfo">
15 15
 
16 16
 <div class="entry-wrap wrap clear">
17
-	<?php if ( is_active_sidebar( 'first-footer-widget' ) || is_active_sidebar( 'second-footer-widget' ) || is_active_sidebar( 'third-footer-widget' ) || is_active_sidebar( 'fourth-footer-widget' ) ) : ?>
17
+	<?php if (is_active_sidebar('first-footer-widget') || is_active_sidebar('second-footer-widget') || is_active_sidebar('third-footer-widget') || is_active_sidebar('fourth-footer-widget')) : ?>
18 18
 	<div id="secondary" class="widget-area clear" role="complementary">
19 19
 		<div class="widget-area-wrapper">
20
-	<?php do_action( 'before_sidebar' ); ?>
21
-	<?php if ( is_active_sidebar( 'first-footer-widget' ) ) : ?>
20
+	<?php do_action('before_sidebar'); ?>
21
+	<?php if (is_active_sidebar('first-footer-widget')) : ?>
22 22
 				<div class="footer-widget-1">
23
-		<?php dynamic_sidebar( 'first-footer-widget' ); ?>
23
+		<?php dynamic_sidebar('first-footer-widget'); ?>
24 24
 				</div>
25 25
 	<?php endif; ?>
26
-	<?php if ( is_active_sidebar( 'second-footer-widget' ) ) : ?>
26
+	<?php if (is_active_sidebar('second-footer-widget')) : ?>
27 27
 				<div class="footer-widget-2">
28
-		<?php dynamic_sidebar( 'second-footer-widget' ); ?>
28
+		<?php dynamic_sidebar('second-footer-widget'); ?>
29 29
 				</div>
30 30
 	<?php endif; ?>
31
-	<?php if ( is_active_sidebar( 'third-footer-widget' ) ) : ?>
31
+	<?php if (is_active_sidebar('third-footer-widget')) : ?>
32 32
 				<div class="footer-widget-3">
33
-		<?php dynamic_sidebar( 'third-footer-widget' ); ?>
33
+		<?php dynamic_sidebar('third-footer-widget'); ?>
34 34
 				</div>
35 35
 	<?php endif; ?>
36
-	<?php if ( is_active_sidebar( 'fourth-footer-widget' ) ) : ?>
36
+	<?php if (is_active_sidebar('fourth-footer-widget')) : ?>
37 37
 				<div class="footer-widget-4">
38
-		<?php dynamic_sidebar( 'fourth-footer-widget' ); ?>
38
+		<?php dynamic_sidebar('fourth-footer-widget'); ?>
39 39
 				</div>
40 40
 	<?php endif; ?>
41 41
 		</div><!-- .widget-area-wrapper -->
@@ -44,13 +44,13 @@  discard block
 block discarded – undo
44 44
 			</div><!-- .entry-wrap -->
45 45
 
46 46
 		<div class="site-info">
47
-			&copy; <span class="site-name"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span> <?php
47
+			&copy; <span class="site-name"><a href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a></span> <?php
48 48
 			$from_year = 2013;
49
-			$this_year = (int) date( 'Y' );
50
-			echo esc_html( $from_year . (($from_year !== $this_year) ? '-' . $this_year : '') );?>
49
+			$this_year = (int) date('Y');
50
+			echo esc_html($from_year . (($from_year !== $this_year) ? '-' . $this_year : '')); ?>
51 51
 			<span class="sep"> | </span>
52
-	<?php do_action( 'strip_credits' ); ?>
53
-				<a href="<?php echo esc_url( __( 'https://github.com/SilentComics/Strip', 'strip' ) ); ?>"><?php printf( esc_html__( 'Theme: %1$s by %2$s.', 'strip' ), 'strip', 'Hoa' ); ?></a>
52
+	<?php do_action('strip_credits'); ?>
53
+				<a href="<?php echo esc_url(__('https://github.com/SilentComics/Strip', 'strip')); ?>"><?php printf(esc_html__('Theme: %1$s by %2$s.', 'strip'), 'strip', 'Hoa'); ?></a>
54 54
 		</div><!-- .site-info -->
55 55
 	</footer><!-- #colophon -->
56 56
 </div><!-- #page -->
Please login to merge, or discard this patch.
content-series.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -10,10 +10,10 @@  discard block
 block discarded – undo
10 10
 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
11 11
 
12 12
 	<div class="wrap">
13
-		<?php if ( '' !== get_the_post_thumbnail() ) : ?>
13
+		<?php if ('' !== get_the_post_thumbnail()) : ?>
14 14
 
15
-			<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">
16
-				<?php the_post_thumbnail( 'strip-featured-thumbnail' ); ?>
15
+			<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">
16
+				<?php the_post_thumbnail('strip-featured-thumbnail'); ?>
17 17
 			</a>
18 18
 		<?php endif; ?>
19 19
 
@@ -24,17 +24,17 @@  discard block
 block discarded – undo
24 24
 		<header class="entry-header">
25 25
 
26 26
 			<?php
27
-			edit_post_link( __( 'Edit Comic', 'strip' ), '<span class="edit-link">', '</span>' );
27
+			edit_post_link(__('Edit Comic', 'strip'), '<span class="edit-link">', '</span>');
28 28
 
29
-			if ( ! is_single() ) :
30
-				the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
29
+			if ( ! is_single()) :
30
+				the_title('<h1 class="entry-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h1>');
31 31
 			else :
32
-					the_title( '<h1 class="entry-title">', '</h1>' );
32
+					the_title('<h1 class="entry-title">', '</h1>');
33 33
 			endif; ?>
34 34
 
35 35
 	</header><!-- .entry-header -->
36 36
 
37
-	<?php if ( is_search() ) : // Only display Excerpts for Search — implement search for custom taxonomies. ?>
37
+	<?php if (is_search()) : // Only display Excerpts for Search — implement search for custom taxonomies. ?>
38 38
 
39 39
 		<div class="entry-summary">
40 40
 			<?php the_excerpt(); ?>
Please login to merge, or discard this patch.
Braces   +8 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,8 +28,10 @@  discard block
 block discarded – undo
28 28
 
29 29
 			if ( ! is_single() ) :
30 30
 				the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
31
-			else :
31
+			else {
32
+				:
32 33
 					the_title( '<h1 class="entry-title">', '</h1>' );
34
+			}
33 35
 			endif; ?>
34 36
 
35 37
 	</header><!-- .entry-header -->
@@ -40,10 +42,13 @@  discard block
 block discarded – undo
40 42
 			<?php the_excerpt(); ?>
41 43
 		</div><!-- .entry-summary -->
42 44
 
43
-		<?php else : ?>
45
+		<?php else {
46
+	: ?>
44 47
 
45 48
 	<div class="entry-comic">
46
-		<?php the_content(); ?>
49
+		<?php the_content();
50
+}
51
+?>
47 52
 
48 53
 		<?php endif; ?>
49 54
 		</div><!-- .entry-content -->
Please login to merge, or discard this patch.
header.php 1 patch
Spacing   +11 added lines, -11 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">
@@ -34,17 +34,17 @@  discard block
 block discarded – undo
34 34
 	<header id="branding" class="site-header" role="banner">
35 35
 
36 36
 		<div class="site-branding">
37
-			<?php get_template_part( '/assets/inline', 'logo.svg' ); // remove or replace by your own custom svg logo. ?>
37
+			<?php get_template_part('/assets/inline', 'logo.svg'); // remove or replace by your own custom svg logo. ?>
38 38
 			<?php strip_the_custom_logo(); ?>
39
-				<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>
39
+				<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>
40 40
 	</div><!-- .site-branding -->
41 41
 
42
-		<?php if ( has_nav_menu( 'primary' ) ) : ?>
42
+		<?php if (has_nav_menu('primary')) : ?>
43 43
 		<nav id="site-navigation" class="main-navigation clear" role="navigation">
44
-			<button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false"><?php esc_attr_e( 'discover', 'strip' ); ?></button>
45
-			<div><a class="skip-link screen-reader-text" href="#content"><?php esc_attr_e( 'Skip to content', 'strip' ); ?></a></div>
44
+			<button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false"><?php esc_attr_e('discover', 'strip'); ?></button>
45
+			<div><a class="skip-link screen-reader-text" href="#content"><?php esc_attr_e('Skip to content', 'strip'); ?></a></div>
46 46
 
47
-			<?php wp_nav_menu( array( 'theme_location' => 'primary', 'container_class' => 'wrap' ) ); ?>
47
+			<?php wp_nav_menu(array('theme_location' => 'primary', 'container_class' => 'wrap')); ?>
48 48
 		</nav><!-- #site-navigation -->
49 49
 		<?php endif; ?>
50 50
 
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,7 +6,7 @@  discard block
 block discarded – undo
6 6
  * @subpackage Strip
7 7
  */
8 8
 
9
-get_header( 'lite' );
9
+get_header('lite');
10 10
 $content_width = 1920;
11 11
 ?>
12 12
 	<div id="primary" class="content-area image-attachment">
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 
15 15
 	<?php
16 16
 	// Start the loop.
17
-	while ( have_posts() ) :
17
+	while (have_posts()) :
18 18
 		the_post(); ?>
19 19
 
20 20
 			<article id="post-<?php the_ID(); ?>">
@@ -30,9 +30,9 @@  discard block
 block discarded – undo
30 30
 					 *
31 31
 					 * @param string $image_size Image size. Default 'full'.
32 32
 					 */
33
-					$image_size = apply_filters( 'strip_attachment_size', 'full' );
33
+					$image_size = apply_filters('strip_attachment_size', 'full');
34 34
 
35
-					echo wp_get_attachment_image( get_the_ID(), $image_size );
35
+					echo wp_get_attachment_image(get_the_ID(), $image_size);
36 36
 
37 37
 					?>
38 38
 
@@ -41,18 +41,18 @@  discard block
 block discarded – undo
41 41
 		<?php // image navigation. ?>
42 42
 <nav role="navigation" id="image-navigation" class="image-navigation">
43 43
 
44
-				<div class="previous"><?php previous_image_link( false, __( '<span class="meta-nav">&larr;</span> <span class="text-nav">Previous panel</span>', 'strip' ) ); ?></div>
45
-				<div class="next"><?php next_image_link( false, __( '<span class="meta-nav">&rarr;</span> <span class="text-nav">Next panel</span>', 'strip' ) ); ?></div>
44
+				<div class="previous"><?php previous_image_link(false, __('<span class="meta-nav">&larr;</span> <span class="text-nav">Previous panel</span>', 'strip')); ?></div>
45
+				<div class="next"><?php next_image_link(false, __('<span class="meta-nav">&rarr;</span> <span class="text-nav">Next panel</span>', 'strip')); ?></div>
46 46
 
47 47
 				<nav class="post-parent-title">
48
-					<?php printf( '<a href="%s" class="post-parent-title">%s</a>',
49
-						esc_url( get_permalink( $post->post_parent ) ),
50
-						esc_html( get_the_title( $post->post_parent ) )
48
+					<?php printf('<a href="%s" class="post-parent-title">%s</a>',
49
+						esc_url(get_permalink($post->post_parent)),
50
+						esc_html(get_the_title($post->post_parent))
51 51
 					); ?>
52 52
 				</nav>
53 53
 </nav><!-- #image-navigation --><!-- #image-navigation -->
54 54
 
55
-		<?php if ( has_excerpt() ) : ?>
55
+		<?php if (has_excerpt()) : ?>
56 56
 					<div class="entry-caption">
57 57
 		<?php the_excerpt(); ?>
58 58
 					</div><!-- .entry-caption -->
@@ -74,4 +74,4 @@  discard block
 block discarded – undo
74 74
 		</div><!-- #content -->
75 75
 	</div><!-- #primary -->
76 76
 
77
-<?php get_footer( 'lite' ); ?>
77
+<?php get_footer('lite'); ?>
Please login to merge, or discard this patch.
content-comic.php 2 patches
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -7,12 +7,12 @@  discard block
 block discarded – undo
7 7
  */
8 8
 
9 9
 ?>
10
-<article id="post-<?php the_ID(); ?>" <?php post_class( 'clear' ); ?>>
10
+<article id="post-<?php the_ID(); ?>" <?php post_class('clear'); ?>>
11 11
 	<div class="entry-wrap wrap clear">
12
-		<?php if ( '' !== get_the_post_thumbnail() ) : ?>
12
+		<?php if ('' !== get_the_post_thumbnail()) : ?>
13 13
 
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' ); ?>
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 endif; ?>
18 18
 
@@ -24,36 +24,36 @@  discard block
 block discarded – undo
24 24
 
25 25
 			<?php // calls each series by get_the_terms, custom taxonomy "story" instead of WP native category.
26 26
 
27
-			$terms = get_the_terms( $post->ID, 'story' );
27
+			$terms = get_the_terms($post->ID, 'story');
28 28
 
29
-			foreach ( $terms as $term ) {
29
+			foreach ($terms as $term) {
30 30
 				// The $term is an object, so we don't need to specify the $taxonomy.
31
-				$term_link = get_term_link( $term );
31
+				$term_link = get_term_link($term);
32 32
 				// If there was an error, continue to the next term.
33
-				if ( is_wp_error( $term_link ) ) {
33
+				if (is_wp_error($term_link)) {
34 34
 					continue;
35 35
 				}
36 36
 
37 37
 				// We successfully got a link. Print it out. ?>
38 38
 		<nav class="categories-links">
39
-				<?php printf( '<a href="%s" class="categories-links">%s</a>',
40
-					esc_url( $term_link ) ,
41
-					esc_html( $term->name )
39
+				<?php printf('<a href="%s" class="categories-links">%s</a>',
40
+					esc_url($term_link),
41
+					esc_html($term->name)
42 42
 				);
43 43
 			} ?>
44 44
 	  </nav>
45 45
 
46
-		<?php	edit_post_link( __( 'Edit Comic', 'strip' ), '<span class="edit-link">', '</span>' );
46
+		<?php	edit_post_link(__('Edit Comic', 'strip'), '<span class="edit-link">', '</span>');
47 47
 
48
-		if ( ! is_single() ) :
49
-			the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
48
+		if ( ! is_single()) :
49
+			the_title('<h1 class="entry-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h1>');
50 50
 			else :
51
-					the_title( '<h1 class="entry-title">', '</h1>' );
51
+					the_title('<h1 class="entry-title">', '</h1>');
52 52
 			endif; ?>
53 53
 
54 54
 	</header><!-- .entry-header -->
55 55
 
56
-	<?php if ( is_search() ) : // Only display Excerpts for Search — implement search for custom taxonomies. ?>
56
+	<?php if (is_search()) : // Only display Excerpts for Search — implement search for custom taxonomies. ?>
57 57
 
58 58
 		<div class="entry-summary">
59 59
 
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 		<?php else : ?>
64 64
 
65 65
 	<div class="entry-comic">
66
-		<?php the_content( __( 'Continue watching <span class="meta-nav">&rarr;</span>', 'strip' ) ); ?>
66
+		<?php the_content(__('Continue watching <span class="meta-nav">&rarr;</span>', 'strip')); ?>
67 67
 
68 68
 			<?php endif; ?>
69 69
 		</div><!-- .entry-content -->
Please login to merge, or discard this patch.
Braces   +8 added lines, -3 removed lines patch added patch discarded remove patch
@@ -47,8 +47,10 @@  discard block
 block discarded – undo
47 47
 
48 48
 		if ( ! is_single() ) :
49 49
 			the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
50
-			else :
50
+			else {
51
+				:
51 52
 					the_title( '<h1 class="entry-title">', '</h1>' );
53
+			}
52 54
 			endif; ?>
53 55
 
54 56
 	</header><!-- .entry-header -->
@@ -60,10 +62,13 @@  discard block
 block discarded – undo
60 62
 			<?php the_excerpt(); ?>
61 63
 		</div><!-- .entry-summary -->
62 64
 
63
-		<?php else : ?>
65
+		<?php else {
66
+	: ?>
64 67
 
65 68
 	<div class="entry-comic">
66
-		<?php the_content( __( 'Continue watching <span class="meta-nav">&rarr;</span>', 'strip' ) ); ?>
69
+		<?php the_content( __( 'Continue watching <span class="meta-nav">&rarr;</span>', 'strip' ) );
70
+}
71
+?>
67 72
 
68 73
 			<?php endif; ?>
69 74
 		</div><!-- .entry-content -->
Please login to merge, or discard this patch.
functions.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -81,8 +81,8 @@  discard block
 block discarded – undo
81 81
 		add_filter( 'the_content', 'filter_ptags_on_images' );
82 82
 
83 83
 		/**
84
-	 	* This theme uses wp_nav_menu() in one location.
85
-	 	*/
84
+		 * This theme uses wp_nav_menu() in one location.
85
+		 */
86 86
 		register_nav_menus(array(
87 87
 			'primary' => __( 'Primary Menu', 'strip' ),
88 88
 		));
@@ -100,8 +100,8 @@  discard block
 block discarded – undo
100 100
 		) );
101 101
 
102 102
 		/**
103
-	 * Enable support for Post Formats
104
-	 */
103
+		 * Enable support for Post Formats
104
+		 */
105 105
 		add_theme_support( 'post-formats', array(
106 106
 			'aside',
107 107
 			'image',
@@ -122,9 +122,9 @@  discard block
 block discarded – undo
122 122
 	}
123 123
 
124 124
 	/**
125
-	* This theme styles the visual editor to resemble the theme style,
126
-	* specifically font, colors, icons, and column width.
127
-	*/
125
+	 * This theme styles the visual editor to resemble the theme style,
126
+	 * specifically font, colors, icons, and column width.
127
+	 */
128 128
 	add_editor_style( array( '/assets/css/editor-style.css', '/assets/fonts/fenix.css' ) );
129 129
 
130 130
 	// Indicate widget sidebars can use selective refresh in the Customizer.
Please login to merge, or discard this patch.
Spacing   +199 added lines, -199 removed lines patch added patch discarded remove patch
@@ -9,11 +9,11 @@  discard block
 block discarded – undo
9 9
  */
10 10
 
11 11
 // Set the content width based on the theme's design and stylesheet.
12
-if ( ! isset( $content_width ) ) {
12
+if ( ! isset($content_width)) {
13 13
 	$content_width = 1920;
14 14
 } /* pixels */
15 15
 
16
-if ( ! function_exists( 'strip_setup' ) ) :
16
+if ( ! function_exists('strip_setup')) :
17 17
 	/**
18 18
 	 * Sets up theme defaults and registers support for various WordPress features.
19 19
 	 *
@@ -28,31 +28,31 @@  discard block
 block discarded – undo
28 28
 * adding custom login css
29 29
 * changing text in footer of admin
30 30
 */
31
-		require_once( 'assets/admin.php' );
31
+		require_once('assets/admin.php');
32 32
 		/**
33 33
 * Make theme available for translation
34 34
 * Translations can be filed in the /languages/ directory
35 35
 * If you're building a theme based on strip, use a find and replace
36 36
 * to change 'strip' to the name of your theme in all the template files
37 37
 */
38
-		load_theme_textdomain( 'strip', get_template_directory() . '/languages' );
38
+		load_theme_textdomain('strip', get_template_directory() . '/languages');
39 39
 
40 40
 		/**
41 41
 * Add default posts and comments RSS feed links to head
42 42
 */
43
-		add_theme_support( 'automatic-feed-links' );
43
+		add_theme_support('automatic-feed-links');
44 44
 
45 45
 		/**
46 46
 * Enable support for title-tag. Allows themes to add document title tag to HTML <head> (since version 4.1.).
47 47
 */
48
-		add_theme_support( 'title-tag' );
48
+		add_theme_support('title-tag');
49 49
 
50 50
 		/**
51 51
 * Enable support for custom logo.
52 52
 *
53 53
 * @since strip 1.0
54 54
 */
55
-		add_theme_support( 'custom-logo', array(
55
+		add_theme_support('custom-logo', array(
56 56
 			'height'      => 156,
57 57
 			'width'       => 312,
58 58
 			'flex-height' => true,
@@ -65,10 +65,10 @@  discard block
 block discarded – undo
65 65
 *
66 66
 * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
67 67
 */
68
-		add_theme_support( 'post-thumbnails' );
69
-		add_image_size( 'stri-featured-image', 1920, 960, true );
70
-		add_image_size( 'strip-medium', 624, 312, true ); // cropped.
71
-		add_image_size( 'strip-thumbnail', 312, 156, true ); // cropped.
68
+		add_theme_support('post-thumbnails');
69
+		add_image_size('stri-featured-image', 1920, 960, true);
70
+		add_image_size('strip-medium', 624, 312, true); // cropped.
71
+		add_image_size('strip-thumbnail', 312, 156, true); // cropped.
72 72
 
73 73
 		/**
74 74
 		 * See https://css-tricks.com/snippets/wordpress/remove-paragraph-tags-from-around-images/
@@ -76,34 +76,34 @@  discard block
 block discarded – undo
76 76
 		 *
77 77
 		 * @param $strings $content filter_ptags_on_images.
78 78
 		 */
79
-		function filter_ptags_on_images( $content ) {
80
-			return preg_replace( '/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $content );
79
+		function filter_ptags_on_images($content) {
80
+			return preg_replace('/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $content);
81 81
 		}
82
-		add_filter( 'the_content', 'filter_ptags_on_images' );
82
+		add_filter('the_content', 'filter_ptags_on_images');
83 83
 
84 84
 		/**
85 85
 	 	* This theme uses wp_nav_menu() in one location.
86 86
 	 	*/
87 87
 		register_nav_menus(array(
88
-			'primary' => __( 'Primary Menu', 'strip' ),
88
+			'primary' => __('Primary Menu', 'strip'),
89 89
 		));
90 90
 
91 91
 		/*
92 92
 		* Switch default core markup for search form, comment form, and comments
93 93
 		* to output valid HTML5.
94 94
 		*/
95
-		add_theme_support( 'html5', array(
95
+		add_theme_support('html5', array(
96 96
 			'search-form',
97 97
 			'comment-form',
98 98
 			'comment-list',
99 99
 			'gallery',
100 100
 			'caption',
101
-		) );
101
+		));
102 102
 
103 103
 		/**
104 104
 	 * Enable support for Post Formats
105 105
 	 */
106
-		add_theme_support( 'post-formats', array(
106
+		add_theme_support('post-formats', array(
107 107
 			'aside',
108 108
 			'image',
109 109
 			'video',
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 			'status',
114 114
 			'audio',
115 115
 			'chat',
116
-		) );
116
+		));
117 117
 
118 118
 		// Setup the WordPress core custom background feature.
119 119
 		add_theme_support('custom-background', apply_filters('strip_custom_background_args', array(
@@ -126,22 +126,22 @@  discard block
 block discarded – undo
126 126
 	* This theme styles the visual editor to resemble the theme style,
127 127
 	* specifically font, colors, icons, and column width.
128 128
 	*/
129
-	add_editor_style( array( '/assets/css/editor-style.css', '/assets/fonts/fenix.css' ) );
129
+	add_editor_style(array('/assets/css/editor-style.css', '/assets/fonts/fenix.css'));
130 130
 
131 131
 	// Indicate widget sidebars can use selective refresh in the Customizer.
132 132
 	// See https://make.wordpress.org/core/2016/03/22/implementing-selective-refresh-support-for-widgets/ for detail.
133
-	add_theme_support( 'customize-selective-refresh-widgets' );
133
+	add_theme_support('customize-selective-refresh-widgets');
134 134
 endif; // strip_setup.
135
-add_action( 'after_setup_theme', 'strip_setup' );
135
+add_action('after_setup_theme', 'strip_setup');
136 136
 
137 137
 /**
138 138
  * Register widgetized area and update sidebar with default widgets
139 139
  */
140 140
 function strip_widgets_init() {
141 141
 	register_sidebar(array(
142
-		'name'          => __( 'Main Sidebar', 'strip' ),
142
+		'name'          => __('Main Sidebar', 'strip'),
143 143
 		'id'            => 'sidebar',
144
-		'description'   => __( 'The main body widget area', 'strip' ),
144
+		'description'   => __('The main body widget area', 'strip'),
145 145
 		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
146 146
 		'after_widget'	=> '</aside>',
147 147
 		'before_title'	=> '<h2 class="widget-title">',
@@ -149,10 +149,10 @@  discard block
 block discarded – undo
149 149
 	));
150 150
 
151 151
 	// First footer widget area, located in the footer. Empty by default.
152
-	register_sidebar( array(
153
-		'name'          => __( 'First Footer Widget', 'strip' ),
152
+	register_sidebar(array(
153
+		'name'          => __('First Footer Widget', 'strip'),
154 154
 		'id'            => 'first-footer-widget',
155
-		'description'   => __( 'The first footer widget', 'strip' ),
155
+		'description'   => __('The first footer widget', 'strip'),
156 156
 		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
157 157
 		'after_widget'	=> '</aside>',
158 158
 		'before_title'	=> '<h3 class="widget-title">',
@@ -161,9 +161,9 @@  discard block
 block discarded – undo
161 161
 
162 162
 	// Second Footer Widget Area, located in the footer. Empty by default.
163 163
 	register_sidebar(array(
164
-		'name'          => __( 'Second Footer Widget', 'strip' ),
164
+		'name'          => __('Second Footer Widget', 'strip'),
165 165
 		'id'            => 'second-footer-widget',
166
-		'description'   => __( 'The second footer widget', 'strip' ),
166
+		'description'   => __('The second footer widget', 'strip'),
167 167
 		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
168 168
 		'after_widget'	=> '</aside>',
169 169
 		'before_title'	=> '<h3 class="widget-title">',
@@ -172,9 +172,9 @@  discard block
 block discarded – undo
172 172
 
173 173
 	// Third Footer Widget Area, located in the footer. Empty by default.
174 174
 	register_sidebar(array(
175
-		'name'          => __( 'Third Footer Widget', 'strip' ),
175
+		'name'          => __('Third Footer Widget', 'strip'),
176 176
 		'id'            => 'third-footer-widget',
177
-		'description'   => __( 'The third footer widget', 'strip' ),
177
+		'description'   => __('The third footer widget', 'strip'),
178 178
 		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
179 179
 		'after_widget'	=> '</aside>',
180 180
 		'before_title'	=> '<h3 class="widget-title">',
@@ -183,9 +183,9 @@  discard block
 block discarded – undo
183 183
 
184 184
 	// Fourth Footer Widget Area, located in the footer. Empty by default.
185 185
 	register_sidebar(array(
186
-		'name'           => __( 'Fourth Footer Widget', 'strip' ),
186
+		'name'           => __('Fourth Footer Widget', 'strip'),
187 187
 		'id'             => 'fourth-footer-widget',
188
-		'description'    => __( 'The fourth footer widget', 'strip' ),
188
+		'description'    => __('The fourth footer widget', 'strip'),
189 189
 		'before_widget'  => '<aside id="%1$s" class="widget %2$s">',
190 190
 		'after_widget'	 => '</aside>',
191 191
 		'before_title'	 => '<h3 class="widget-title">',
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
 	));
194 194
 
195 195
 }
196
-add_action( 'widgets_init', 'strip_widgets_init' );
196
+add_action('widgets_init', 'strip_widgets_init');
197 197
 
198 198
 /**
199 199
  * Handles JavaScript detection.
@@ -205,47 +205,47 @@  discard block
 block discarded – undo
205 205
 function strip_javascript_detection() {
206 206
 	echo "<script>(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);</script>\n";
207 207
 }
208
-add_action( 'wp_head', 'strip_javascript_detection', 0 );
208
+add_action('wp_head', 'strip_javascript_detection', 0);
209 209
 
210 210
 /**
211 211
  * Enqueue_styles for custom fonts.
212 212
  */
213 213
 function strip_scripts() {
214 214
 	// add custom font here if any.
215
-	wp_enqueue_style( 'fenix', get_template_directory_uri() . '/assets/fonts/fenix.css', array(), null );
215
+	wp_enqueue_style('fenix', get_template_directory_uri() . '/assets/fonts/fenix.css', array(), null);
216 216
 
217
-	wp_enqueue_style( 'inconsolata', get_template_directory_uri() . '/assets/fonts/inconsolata.css', array(), null );
217
+	wp_enqueue_style('inconsolata', get_template_directory_uri() . '/assets/fonts/inconsolata.css', array(), null);
218 218
 
219 219
 	// Theme stylesheet.
220
-	wp_enqueue_style( 'strip-style', get_stylesheet_uri() );
220
+	wp_enqueue_style('strip-style', get_stylesheet_uri());
221 221
 
222 222
 	// Load the Internet Explorer specific stylesheet. Conditional stylesheet — tested and works with IE9 on Windows7.
223
-	wp_enqueue_style( 'strip-ie', get_template_directory_uri() . 'assets/css/ie.css', array( 'strip-style' ), '20160305' );
224
-	wp_style_add_data( 'strip-ie', 'conditional', 'lt IE 10' );
223
+	wp_enqueue_style('strip-ie', get_template_directory_uri() . 'assets/css/ie.css', array('strip-style'), '20160305');
224
+	wp_style_add_data('strip-ie', 'conditional', 'lt IE 10');
225 225
 
226
-	if ( has_nav_menu( 'primary' ) ) {
227
-		wp_enqueue_script( 'strip-navigation', get_template_directory_uri() . '/assets/js/min/navigation-min.js', array(), '20120206', true );
226
+	if (has_nav_menu('primary')) {
227
+		wp_enqueue_script('strip-navigation', get_template_directory_uri() . '/assets/js/min/navigation-min.js', array(), '20120206', true);
228 228
 	}
229 229
 
230 230
 	// Load the html5 shiv.
231
-	wp_enqueue_script( 'strip-html5', get_template_directory_uri() . '/assets/js/min/html5-min.js', array(), '3.7.3' );
232
-	wp_script_add_data( 'strip-html5', 'conditional', 'lt IE 9' );
231
+	wp_enqueue_script('strip-html5', get_template_directory_uri() . '/assets/js/min/html5-min.js', array(), '3.7.3');
232
+	wp_script_add_data('strip-html5', 'conditional', 'lt IE 9');
233 233
 
234
-	wp_enqueue_script( 'strip-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/min/skip-link-focus-fix-min.js', array(), '20130115', true );
234
+	wp_enqueue_script('strip-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/min/skip-link-focus-fix-min.js', array(), '20130115', true);
235 235
 
236 236
 	// toggle comments js.
237
-	wp_enqueue_script( 'strip-toggle-comments', get_template_directory_uri() . '/assets/js/min/toggle-comments-min.js', array( 'jquery' ), '20160401', false );
237
+	wp_enqueue_script('strip-toggle-comments', get_template_directory_uri() . '/assets/js/min/toggle-comments-min.js', array('jquery'), '20160401', false);
238 238
 
239
-	if ( is_single() && comments_open() && get_option( 'thread_comments' ) ) {
240
-		wp_enqueue_script( 'comment-reply' );
239
+	if (is_single() && comments_open() && get_option('thread_comments')) {
240
+		wp_enqueue_script('comment-reply');
241 241
 
242
-		if ( is_single() && wp_attachment_is_image() ) {
243
-			wp_enqueue_script( 'strip-keyboard-image-navigation', get_template_directory_uri() . '/assets/js/min/keyboard-image-navigation-min.js', array( 'jquery' ), '20120202' );
242
+		if (is_single() && wp_attachment_is_image()) {
243
+			wp_enqueue_script('strip-keyboard-image-navigation', get_template_directory_uri() . '/assets/js/min/keyboard-image-navigation-min.js', array('jquery'), '20120202');
244 244
 		}
245 245
 	}
246 246
 }
247 247
 
248
-add_action( 'wp_enqueue_scripts', 'strip_scripts' );
248
+add_action('wp_enqueue_scripts', 'strip_scripts');
249 249
 
250 250
 /**
251 251
  * Implement the Custom Header feature.
@@ -279,25 +279,25 @@  discard block
 block discarded – undo
279 279
  * @link https://css-tricks.com/snippets/wordpress/get-the-first-image-from-a-post/
280 280
  * see https://gist.github.com/SilentComics/0a7ea47942eb759dbb48eac2b7be1bbc
281 281
  */
282
-function get_first_image( $size = 'thumbnail' ) {
282
+function get_first_image($size = 'thumbnail') {
283 283
 	global $post;
284 284
 	$first_img = '';
285
-	preg_match_all( '/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', do_shortcode( $post->post_content, 'gallery' ), $matches );
286
-	  $first_img = isset( $matches[1][0] ) ? $matches[1][0] : null;
285
+	preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', do_shortcode($post->post_content, 'gallery'), $matches);
286
+	  $first_img = isset($matches[1][0]) ? $matches[1][0] : null;
287 287
 
288
-	if ( empty( $first_img ) ) {
288
+	if (empty($first_img)) {
289 289
 			return get_template_directory_uri() . '/assets/images/empty.png'; // path to default image.
290 290
 	}
291 291
 
292 292
 	// Now we have the $first_img but we want the thumbnail of that image.
293
-	 $explode = explode( '.', $first_img );
294
-	 $count = count( $explode );
293
+	 $explode = explode('.', $first_img);
294
+	 $count = count($explode);
295 295
 	 $size = '-624x312'; // Our panel ratio (2:1) 312x156 for lighther page, 624x312 for retina; use add_image_size() and Force Regenerate Thumbnails plugin when changing sizes.
296
-	 $explode[ $count -2 ] = $explode[ $count -2 ] . '' . $size;
297
-	 $thumb_img = implode( '.', $explode );
296
+	 $explode[$count - 2] = $explode[$count - 2] . '' . $size;
297
+	 $thumb_img = implode('.', $explode);
298 298
 	 return $thumb_img;
299 299
 }
300
-	add_filter( 'get_first_image', 'thumbnail' );
300
+	add_filter('get_first_image', 'thumbnail');
301 301
 
302 302
 /**
303 303
  * Register Custom Post Type for comics
@@ -305,24 +305,24 @@  discard block
 block discarded – undo
305 305
 function comic_post_type() {
306 306
 
307 307
 	$labels = array(
308
-		'name'                       => _x( 'Comics', 'Post Type General Name', 'strip' ),
309
-		'singular_name'              => _x( 'Comic', 'Post Type Singular Name', 'strip' ),
310
-		'menu_name'                  => _x( 'Comics', 'admin menu', 'strip' ),
311
-		'name_admin_bar'             => _x( 'Comic', 'add new on admin bar', 'strip' ),
312
-		'parent_item_colon'	         => __( 'Parent Comic:', 'strip' ),
313
-		'all_items'                  => __( 'All Comics', 'strip' ),
314
-		'add_new_item'               => __( 'Add New Comic', 'strip' ),
315
-		'add_new'                    => __( 'Add New Comic', 'strip' ),
316
-		'new_item'                   => __( 'New Comic', 'strip' ),
317
-		'edit_item'                  => __( 'Edit Comic', 'strip' ),
318
-		'update_item'                => __( 'Update Comic', 'strip' ),
319
-		'view_item'                  => __( 'View Comic', 'strip' ),
320
-		'search_items'               => __( 'Search Item', 'strip' ),
321
-		'not_found'                  => __( 'No Comics found', 'strip' ),
322
-		'not_found_in_trash'         => __( 'No Comics found in Trash', 'strip' ),
323
-		'items_list'                 => __( 'Comics list', 'strip' ),
324
-		'items_list_navigation'      => __( 'Comics list navigation', 'strip' ),
325
-		'filter_items_list'          => __( 'Filter Comics list', 'strip' ),
308
+		'name'                       => _x('Comics', 'Post Type General Name', 'strip'),
309
+		'singular_name'              => _x('Comic', 'Post Type Singular Name', 'strip'),
310
+		'menu_name'                  => _x('Comics', 'admin menu', 'strip'),
311
+		'name_admin_bar'             => _x('Comic', 'add new on admin bar', 'strip'),
312
+		'parent_item_colon'	         => __('Parent Comic:', 'strip'),
313
+		'all_items'                  => __('All Comics', 'strip'),
314
+		'add_new_item'               => __('Add New Comic', 'strip'),
315
+		'add_new'                    => __('Add New Comic', 'strip'),
316
+		'new_item'                   => __('New Comic', 'strip'),
317
+		'edit_item'                  => __('Edit Comic', 'strip'),
318
+		'update_item'                => __('Update Comic', 'strip'),
319
+		'view_item'                  => __('View Comic', 'strip'),
320
+		'search_items'               => __('Search Item', 'strip'),
321
+		'not_found'                  => __('No Comics found', 'strip'),
322
+		'not_found_in_trash'         => __('No Comics found in Trash', 'strip'),
323
+		'items_list'                 => __('Comics list', 'strip'),
324
+		'items_list_navigation'      => __('Comics list navigation', 'strip'),
325
+		'filter_items_list'          => __('Filter Comics list', 'strip'),
326 326
 	);
327 327
 
328 328
 	$supports = array(
@@ -339,11 +339,11 @@  discard block
 block discarded – undo
339 339
 	);
340 340
 
341 341
 	$args = array(
342
-		'label'                      => __( 'Comic', 'strip' ),
343
-		'description'                => __( 'Publish Comics and Webcomics', 'strip' ),
342
+		'label'                      => __('Comic', 'strip'),
343
+		'description'                => __('Publish Comics and Webcomics', 'strip'),
344 344
 		'labels'                     => $labels,
345 345
 		'supports'                   => $supports,
346
-		'taxonomies'                 => array( 'story', 'story_term', 'draft' ),
346
+		'taxonomies'                 => array('story', 'story_term', 'draft'),
347 347
 		'hierarchical'               => true,
348 348
 		'public'                     => true,
349 349
 		'show_ui'                    => true,
@@ -356,40 +356,40 @@  discard block
 block discarded – undo
356 356
 		'has_archive'                => true,
357 357
 		'feeds'                      => true,
358 358
 		'exclude_from_search'        => false,
359
-		'rewrite'                    => array( 'slug' => 'stories', 'with_front' => true ),
359
+		'rewrite'                    => array('slug' => 'stories', 'with_front' => true),
360 360
 		'publicly_queryable'	     => true,
361 361
 		'capability_type'            => 'post',
362 362
 	);
363
-	register_post_type( 'comic', $args );
363
+	register_post_type('comic', $args);
364 364
 }
365 365
 
366 366
 // Hook into the 'init' action.
367
-add_action( 'init', 'comic_post_type', 0 ); // End of register_cpt_comic().
367
+add_action('init', 'comic_post_type', 0); // End of register_cpt_comic().
368 368
 
369 369
 	/**
370 370
 	 * Register Custom Taxonomy 'story'
371 371
 	 */
372 372
 function comic_story_taxonomy() {
373 373
 	$labels = array(
374
-		'name'                       => _x( 'Comic Story', 'Taxonomy General Name', 'strip' ),
375
-		'singular_name'              => _x( 'Comic Story', 'Taxonomy Singular Name', 'strip' ),
376
-		'menu_name'                  => __( 'Comic Stories', 'strip' ),
377
-		'all_items'                  => __( 'All Comic Stories', 'strip' ),
378
-		'parent_item'                => __( 'Parent Story', 'strip' ),
379
-		'parent_item_colon'          => __( 'Parent Story:', 'strip' ),
380
-		'new_item_name'              => __( 'New Comic Story', 'strip' ),
381
-		'add_new_item'               => __( 'Add New Story', 'strip' ),
382
-		'edit_item'                  => __( 'Edit Story', 'strip' ),
383
-		'update_item'                => __( 'Update Story', 'strip' ),
384
-		'view_item'                  => __( 'View Item', 'strip' ),
385
-		'separate_items_with_commas' => __( 'Separate stories with commas', 'strip' ),
386
-		'add_or_remove_items'        => __( 'Add or Remove Stories', 'strip' ),
387
-		'choose_from_most_used'      => __( 'Choose from the most used stories', 'strip' ),
388
-		'popular_items'              => __( 'Popular comic stories', 'strip' ),
389
-		'search_items'               => __( 'Search Stories', 'strip' ),
390
-		'not_found'                  => __( 'No comic Stories found', 'strip' ),
391
-		'items_list'                 => __( 'Comic Stories list', 'strip' ),
392
-		'items_list_navigation'      => __( 'Comic Stories list navigation', 'strip' ),
374
+		'name'                       => _x('Comic Story', 'Taxonomy General Name', 'strip'),
375
+		'singular_name'              => _x('Comic Story', 'Taxonomy Singular Name', 'strip'),
376
+		'menu_name'                  => __('Comic Stories', 'strip'),
377
+		'all_items'                  => __('All Comic Stories', 'strip'),
378
+		'parent_item'                => __('Parent Story', 'strip'),
379
+		'parent_item_colon'          => __('Parent Story:', 'strip'),
380
+		'new_item_name'              => __('New Comic Story', 'strip'),
381
+		'add_new_item'               => __('Add New Story', 'strip'),
382
+		'edit_item'                  => __('Edit Story', 'strip'),
383
+		'update_item'                => __('Update Story', 'strip'),
384
+		'view_item'                  => __('View Item', 'strip'),
385
+		'separate_items_with_commas' => __('Separate stories with commas', 'strip'),
386
+		'add_or_remove_items'        => __('Add or Remove Stories', 'strip'),
387
+		'choose_from_most_used'      => __('Choose from the most used stories', 'strip'),
388
+		'popular_items'              => __('Popular comic stories', 'strip'),
389
+		'search_items'               => __('Search Stories', 'strip'),
390
+		'not_found'                  => __('No comic Stories found', 'strip'),
391
+		'items_list'                 => __('Comic Stories list', 'strip'),
392
+		'items_list_navigation'      => __('Comic Stories list navigation', 'strip'),
393 393
 	);
394 394
 	$args = array(
395 395
 		'labels'                     => $labels,
@@ -401,14 +401,14 @@  discard block
 block discarded – undo
401 401
 		'show_in_nav_menus'          => true,
402 402
 		'show_tagcloud'              => true,
403 403
 		'query_var'	                 => true,
404
-		'rewrite'                    => array( 'slug' => 'story' ),
404
+		'rewrite'                    => array('slug' => 'story'),
405 405
 	);
406
-	register_taxonomy( 'story', array( 'comic' ), $args );
407
-	register_taxonomy_for_object_type( 'story', 'comic' );
406
+	register_taxonomy('story', array('comic'), $args);
407
+	register_taxonomy_for_object_type('story', 'comic');
408 408
 }
409 409
 
410 410
 // Hook into the 'init' action.
411
-add_action( 'init', 'comic_story_taxonomy', 0 );
411
+add_action('init', 'comic_story_taxonomy', 0);
412 412
 
413 413
 /**
414 414
  * Function strip rewrite rules.
@@ -417,31 +417,31 @@  discard block
 block discarded – undo
417 417
 	flush_rewrite_rules();
418 418
 }
419 419
 /* Flush rewrite rules for custom post types. */
420
-add_action( 'after_switch_theme', 'strip_rewrite_rules' );
420
+add_action('after_switch_theme', 'strip_rewrite_rules');
421 421
 
422 422
 // Add Print taxonomy, NOT hierarchical (like tags)
423 423
 // Register Custom Taxonomy.
424 424
 	$labels = array(
425
-		'name'                       => _x( 'Prints', 'Taxonomy General Name', 'strip' ),
426
-		'singular_name'              => _x( 'Print', 'Taxonomy Singular Name', 'strip' ),
427
-		'menu_name'                  => __( 'Print', 'strip' ),
428
-		'all_items'                  => __( 'All Prints', 'strip' ),
429
-		'parent_item'                => __( 'Parent Print', 'strip' ),
430
-		'parent_item_colon'          => __( 'Parent Print:', 'strip' ),
431
-		'new_item_name'              => __( 'New Print Name', 'strip' ),
432
-		'add_new_item'               => __( 'Add New Print', 'strip' ),
433
-		'edit_item'                  => __( 'Edit Print', 'strip' ),
434
-		'update_item'                => __( 'Update Pring', 'strip' ),
435
-		'view_item'                  => __( 'View Print', 'strip' ),
436
-		'separate_items_with_commas' => __( 'Separate prints with commas', 'strip' ),
437
-		'add_or_remove_items'        => __( 'Add or remove prints', 'strip' ),
438
-		'choose_from_most_used'      => __( 'Choose from the most used', 'strip' ),
439
-		'popular_items'              => __( 'Popular Prints', 'strip' ),
440
-		'search_items'               => __( 'Search Prints', 'strip' ),
441
-		'not_found'                  => __( 'Not Found', 'strip' ),
442
-		'no_terms'                   => __( 'No prints', 'strip' ),
443
-		'items_list'                 => __( 'Prints list', 'strip' ),
444
-		'items_list_navigation'      => __( 'Prints list navigation', 'strip' ),
425
+		'name'                       => _x('Prints', 'Taxonomy General Name', 'strip'),
426
+		'singular_name'              => _x('Print', 'Taxonomy Singular Name', 'strip'),
427
+		'menu_name'                  => __('Print', 'strip'),
428
+		'all_items'                  => __('All Prints', 'strip'),
429
+		'parent_item'                => __('Parent Print', 'strip'),
430
+		'parent_item_colon'          => __('Parent Print:', 'strip'),
431
+		'new_item_name'              => __('New Print Name', 'strip'),
432
+		'add_new_item'               => __('Add New Print', 'strip'),
433
+		'edit_item'                  => __('Edit Print', 'strip'),
434
+		'update_item'                => __('Update Pring', 'strip'),
435
+		'view_item'                  => __('View Print', 'strip'),
436
+		'separate_items_with_commas' => __('Separate prints with commas', 'strip'),
437
+		'add_or_remove_items'        => __('Add or remove prints', 'strip'),
438
+		'choose_from_most_used'      => __('Choose from the most used', 'strip'),
439
+		'popular_items'              => __('Popular Prints', 'strip'),
440
+		'search_items'               => __('Search Prints', 'strip'),
441
+		'not_found'                  => __('Not Found', 'strip'),
442
+		'no_terms'                   => __('No prints', 'strip'),
443
+		'items_list'                 => __('Prints list', 'strip'),
444
+		'items_list_navigation'      => __('Prints list navigation', 'strip'),
445 445
 	);
446 446
 
447 447
 	$args = array(
@@ -453,21 +453,21 @@  discard block
 block discarded – undo
453 453
 		'show_in_nav_menus'          => true,
454 454
 		'show_tagcloud'              => true,
455 455
 	);
456
-	register_taxonomy( 'print', array( 'comic' ), $args );
456
+	register_taxonomy('print', array('comic'), $args);
457 457
 
458 458
 	/*
459 459
 	* WooCommerce Hooks
460 460
 	* Layout
461 461
 	*/
462
-	remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 );
463
-	remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 );
464
-	remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 );
465
-	remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 );
466
-	remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
467
-	remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 );
462
+	remove_action('woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
463
+	remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
464
+	remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
465
+	remove_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 10);
466
+	remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20);
467
+	remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30);
468 468
 
469
-	add_action( 'woocommerce_before_main_content', 'strip_wrapper_start', 10 );
470
-	add_action( 'woocommerce_after_main_content', 'strip_wrapper_end', 10 );
469
+	add_action('woocommerce_before_main_content', 'strip_wrapper_start', 10);
470
+	add_action('woocommerce_after_main_content', 'strip_wrapper_end', 10);
471 471
 
472 472
 		 /**
473 473
 		  * WooCommerce wrapper
@@ -483,13 +483,13 @@  discard block
 block discarded – undo
483 483
 		echo '</section>';
484 484
 	}
485 485
 
486
-	add_action( 'after_setup_theme', 'woocommerce_support' );
486
+	add_action('after_setup_theme', 'woocommerce_support');
487 487
 	/**
488 488
 	 * Add WooCommerce support
489 489
 	 * https://docs.woothemes.com/document/third-party-custom-theme-compatibility/*
490 490
 	 */
491 491
 	function woocommerce_support() {
492
-		add_theme_support( 'woocommerce' );
492
+		add_theme_support('woocommerce');
493 493
 	}
494 494
 
495 495
 	/**
@@ -497,13 +497,13 @@  discard block
 block discarded – undo
497 497
 	 */
498 498
 	function wp_enqueue_woocommerce_style() {
499 499
 
500
-			wp_register_style( 'strip-woocommerce', get_template_directory_uri() . '/assets/css/woocommerce-min.css' );
501
-		if ( class_exists( 'woocommerce' ) ) {
502
-			wp_enqueue_style( 'strip-woocommerce' );
500
+			wp_register_style('strip-woocommerce', get_template_directory_uri() . '/assets/css/woocommerce-min.css');
501
+		if (class_exists('woocommerce')) {
502
+			wp_enqueue_style('strip-woocommerce');
503 503
 		}
504 504
 	}
505 505
 
506
-	add_action( 'wp_enqueue_scripts', 'wp_enqueue_woocommerce_style' );
506
+	add_action('wp_enqueue_scripts', 'wp_enqueue_woocommerce_style');
507 507
 
508 508
 	/**
509 509
 * Optimize WooCommerce Scripts
@@ -514,53 +514,53 @@  discard block
 block discarded – undo
514 514
 * @link https://gist.github.com/DevinWalker/7621777
515 515
 * @link http://dessky.com/blog/disable-woocommerce-scripts-and-styles/
516 516
 */
517
-	add_action( 'wp_enqueue_scripts', 'strip_manage_woocommerce_styles', 99 );
517
+	add_action('wp_enqueue_scripts', 'strip_manage_woocommerce_styles', 99);
518 518
 
519 519
 	/**
520 520
 	 * Remove some WooCommerce queries.
521 521
 	 */
522 522
 	function strip_manage_woocommerce_styles() {
523 523
 		// remove generator meta tag.
524
-		remove_action( 'wp_head', array( 'woocommerce', 'generator' ) ); // this line when used with $GLOBALS['woocommerce'] prompts an error when Woo is deactivated though.
524
+		remove_action('wp_head', array('woocommerce', 'generator')); // this line when used with $GLOBALS['woocommerce'] prompts an error when Woo is deactivated though.
525 525
 		// first check that woo exists to prevent fatal errors.
526
-		if ( function_exists( 'is_woocommerce' ) ) {
526
+		if (function_exists('is_woocommerce')) {
527 527
 			// dequeue scripts and styles, unless we're in the store.
528
-			if ( ! is_woocommerce() && ! is_page( 'store' ) && ! is_shop() && ! is_product_category() && ! is_product() && ! is_cart() && ! is_checkout() ) {
529
-				wp_dequeue_style( 'woocommerce_frontend_styles' );
530
-				wp_dequeue_style( 'woocommerce-general' );
531
-				wp_dequeue_style( 'woocommerce-layout' );
532
-				wp_dequeue_style( 'woocommerce-smallscreen' );
533
-				wp_dequeue_style( 'woocommerce_fancybox_styles' );
534
-				wp_dequeue_style( 'woocommerce_chosen_styles' );
535
-				wp_dequeue_style( 'woocommerce_prettyPhoto_css' );
536
-				wp_dequeue_style( 'select2' );
537
-				wp_dequeue_style( 'strip-woocommerce' ); // the theme's CSS overwrite.
538
-				wp_dequeue_script( 'wc-add-payment-method' );
539
-				wp_dequeue_script( 'wc-lost-password' );
540
-				wp_dequeue_script( 'wc_price_slider' );
541
-				wp_dequeue_script( 'wc-single-product' );
542
-				wp_dequeue_script( 'wc-add-to-cart' );
543
-				wp_dequeue_script( 'wc-cart-fragments' );
544
-				wp_dequeue_script( 'wc-credit-card-form' );
545
-				wp_dequeue_script( 'wc-checkout' );
546
-				wp_dequeue_script( 'wc-add-to-cart-variation' );
547
-				wp_dequeue_script( 'wc-single-product' );
548
-				wp_dequeue_script( 'wc-cart' );
549
-				wp_dequeue_script( 'wc-chosen' );
550
-				wp_dequeue_script( 'woocommerce' );
551
-				wp_dequeue_script( 'jquery-cookie' );
552
-				wp_dequeue_script( 'prettyPhoto' );
553
-				wp_dequeue_script( 'prettyPhoto-init' );
554
-				wp_dequeue_script( 'jquery-blockui' );
555
-				wp_dequeue_script( 'jquery-placeholder' );
556
-				wp_dequeue_script( 'jquery-payment' );
557
-				wp_dequeue_script( 'fancybox' );
558
-				wp_dequeue_script( 'jqueryui' );
528
+			if ( ! is_woocommerce() && ! is_page('store') && ! is_shop() && ! is_product_category() && ! is_product() && ! is_cart() && ! is_checkout()) {
529
+				wp_dequeue_style('woocommerce_frontend_styles');
530
+				wp_dequeue_style('woocommerce-general');
531
+				wp_dequeue_style('woocommerce-layout');
532
+				wp_dequeue_style('woocommerce-smallscreen');
533
+				wp_dequeue_style('woocommerce_fancybox_styles');
534
+				wp_dequeue_style('woocommerce_chosen_styles');
535
+				wp_dequeue_style('woocommerce_prettyPhoto_css');
536
+				wp_dequeue_style('select2');
537
+				wp_dequeue_style('strip-woocommerce'); // the theme's CSS overwrite.
538
+				wp_dequeue_script('wc-add-payment-method');
539
+				wp_dequeue_script('wc-lost-password');
540
+				wp_dequeue_script('wc_price_slider');
541
+				wp_dequeue_script('wc-single-product');
542
+				wp_dequeue_script('wc-add-to-cart');
543
+				wp_dequeue_script('wc-cart-fragments');
544
+				wp_dequeue_script('wc-credit-card-form');
545
+				wp_dequeue_script('wc-checkout');
546
+				wp_dequeue_script('wc-add-to-cart-variation');
547
+				wp_dequeue_script('wc-single-product');
548
+				wp_dequeue_script('wc-cart');
549
+				wp_dequeue_script('wc-chosen');
550
+				wp_dequeue_script('woocommerce');
551
+				wp_dequeue_script('jquery-cookie');
552
+				wp_dequeue_script('prettyPhoto');
553
+				wp_dequeue_script('prettyPhoto-init');
554
+				wp_dequeue_script('jquery-blockui');
555
+				wp_dequeue_script('jquery-placeholder');
556
+				wp_dequeue_script('jquery-payment');
557
+				wp_dequeue_script('fancybox');
558
+				wp_dequeue_script('jqueryui');
559 559
 			}
560 560
 		}
561 561
 	}
562 562
 
563
-	add_action( 'pre_get_posts', 'strip_set_posts_per_page' );
563
+	add_action('pre_get_posts', 'strip_set_posts_per_page');
564 564
 	/**
565 565
 	 * Set posts, WooCommerce products & comics number per archive page
566 566
 	 * Fixes 404 error on pagination due to CTP conflicting with WordPress posts_per_page default
@@ -568,14 +568,14 @@  discard block
 block discarded – undo
568 568
 	 *
569 569
 	 * @param string $query strip_set_posts_per_page.
570 570
 	 */
571
-	function strip_set_posts_per_page( $query ) {
572
-		if ( ( ! is_admin() ) && ( $query -> is_home() ) && ( $query ->is_search() ) ) {
573
-			$query->set( 'post_type', array( 'post', 'page', 'comic', 'posts_per_page', 12 ) );
571
+	function strip_set_posts_per_page($query) {
572
+		if (( ! is_admin()) && ($query -> is_home()) && ($query ->is_search())) {
573
+			$query->set('post_type', array('post', 'page', 'comic', 'posts_per_page', 12));
574 574
 		}
575
-		if ( ( ! is_admin() ) && ( $query->is_post_type_archive( 'product' ) ) && ( $query->taxonomy_exists( 'category' ) ) ) {
576
-			$query->set( 'posts_per_page', 4 );
577
-		} elseif ( ( ! is_admin() ) && ( $query->is_archive() ) && ( is_tax( 'story' ) ) ) {
578
-			$query->set( 'posts_per_page', 3 );
575
+		if (( ! is_admin()) && ($query->is_post_type_archive('product')) && ($query->taxonomy_exists('category'))) {
576
+			$query->set('posts_per_page', 4);
577
+		} elseif (( ! is_admin()) && ($query->is_archive()) && (is_tax('story'))) {
578
+			$query->set('posts_per_page', 3);
579 579
 		}
580 580
 		return $query;
581 581
 	}
@@ -587,32 +587,32 @@  discard block
 block discarded – undo
587 587
 	 * @param	string $post_id set_default_object_terms.
588 588
 	 * @param	string $post set_default_object_terms.
589 589
 	 */
590
-	function set_default_object_terms( $post_id, $post ) {
591
-		if ( 'publish' === $post->post_status && 'comic' === $post->post_type ) {
590
+	function set_default_object_terms($post_id, $post) {
591
+		if ('publish' === $post->post_status && 'comic' === $post->post_type) {
592 592
 			$defaults = array(
593
-			'story' => array( 'draft' ),
593
+			'story' => array('draft'),
594 594
 			);
595
-			$taxonomies = get_object_taxonomies( $post->post_type );
596
-			foreach ( (array) $taxonomies as $taxonomy ) {
597
-				$terms = get_the_terms( $post_id, $taxonomy );
598
-				if ( empty( $terms ) && array_key_exists( $taxonomy, $defaults ) ) {
599
-					wp_set_object_terms( $post_id, $defaults[ $taxonomy ], $taxonomy );
595
+			$taxonomies = get_object_taxonomies($post->post_type);
596
+			foreach ((array) $taxonomies as $taxonomy) {
597
+				$terms = get_the_terms($post_id, $taxonomy);
598
+				if (empty($terms) && array_key_exists($taxonomy, $defaults)) {
599
+					wp_set_object_terms($post_id, $defaults[$taxonomy], $taxonomy);
600 600
 				}
601 601
 			}
602 602
 		}
603 603
 	}
604
-	add_action( 'save_post', 'set_default_object_terms', 0, 2 );
604
+	add_action('save_post', 'set_default_object_terms', 0, 2);
605 605
 
606 606
 	/**
607 607
 	 * Remove jquery migrate $scripts for enhanced performance.
608 608
 	 *
609 609
 	 * @param strings $scripts remove_jquery_migrate.
610 610
 	 */
611
-	function remove_jquery_migrate( $scripts ) {
612
-		if ( is_admin() ) {
611
+	function remove_jquery_migrate($scripts) {
612
+		if (is_admin()) {
613 613
 			return;
614 614
 		}
615
-		 $scripts->remove( 'jquery' );
616
-		 $scripts->add( 'jquery', false, array( 'jquery-core' ), '1.10.2' );
615
+		 $scripts->remove('jquery');
616
+		 $scripts->add('jquery', false, array('jquery-core'), '1.10.2');
617 617
 	}
618
-		add_action( 'wp_default_scripts', 'remove_jquery_migrate' );
618
+		add_action('wp_default_scripts', 'remove_jquery_migrate');
Please login to merge, or discard this patch.
header-lite.php 1 patch
Spacing   +9 added lines, -9 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">
@@ -32,12 +32,12 @@  discard block
 block discarded – undo
32 32
 <div id="page" class="hfeed site">
33 33
 	<header id="masthead" class="site-header" role="banner">
34 34
 
35
-		<?php if ( has_nav_menu( 'primary' ) ) : ?>
35
+		<?php if (has_nav_menu('primary')) : ?>
36 36
 		<nav id="site-navigation" class="main-navigation clear" role="navigation">
37
-			<button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false"><?php esc_attr_e( 'discover', 'strip' ); ?></button>
38
-			<div><a class="skip-link screen-reader-text" href="#content"><?php esc_attr_e( 'Skip to content', 'strip' ); ?></a></div>
37
+			<button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false"><?php esc_attr_e('discover', 'strip'); ?></button>
38
+			<div><a class="skip-link screen-reader-text" href="#content"><?php esc_attr_e('Skip to content', 'strip'); ?></a></div>
39 39
 
40
-			<?php wp_nav_menu( array( 'theme_location' => 'primary', 'container_class' => 'wrap' ) ); ?>
40
+			<?php wp_nav_menu(array('theme_location' => 'primary', 'container_class' => 'wrap')); ?>
41 41
 		</nav><!-- #site-navigation -->
42 42
 		<?php endif; ?>
43 43
 
Please login to merge, or discard this patch.
single-comic.php 1 patch
Spacing   +9 added lines, -9 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( $post_type )  && is_single() ) {
10
-	get_header( 'lite' );
9
+if (post_type_exists($post_type) && is_single()) {
10
+	get_header('lite');
11 11
 } else {
12 12
 	get_header();
13 13
 }
@@ -18,16 +18,16 @@  discard block
 block discarded – undo
18 18
 
19 19
 	<?php
20 20
 	// Start the loop.
21
-	while ( have_posts() ) :
21
+	while (have_posts()) :
22 22
 		the_post();
23
-		if ( 'comic' === get_post_type() ) : ?>
23
+		if ('comic' === get_post_type()) : ?>
24 24
 
25 25
 			<div class="entry-comic">
26 26
 
27
-				<?php get_template_part( 'content-comic' ); ?>
27
+				<?php get_template_part('content-comic'); ?>
28 28
 
29
-				<?php strip_content_nav( 'nav-below' );
30
-				set_transient( 'story', $post_type );?>
29
+				<?php strip_content_nav('nav-below');
30
+				set_transient('story', $post_type); ?>
31 31
 
32 32
 			</div><!-- #entry-comic -->
33 33
 
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 
37 37
 				<?php
38 38
 					// If comments are open or we have at least one comment, load up the comment template.
39
-				if ( comments_open() || '0' !== get_comments_number() ) {
39
+				if (comments_open() || '0' !== get_comments_number()) {
40 40
 					comments_template();
41 41
 				}
42 42
 				?>
@@ -46,4 +46,4 @@  discard block
 block discarded – undo
46 46
 		</main><!-- #content -->
47 47
 	</section><!-- #primary -->
48 48
 
49
-<?php get_footer( 'lite' ); ?>
49
+<?php get_footer('lite'); ?>
Please login to merge, or discard this patch.