Completed
Push — master ( 00b7c3...acd4de )
by SILENT
01:18
created
archive-story.php 1 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'              => 'DESC',
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( 'thumbnail' );
59
+					the_post_thumbnail('thumbnail');
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() );
69
+	echo esc_html(get_first_image());
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.
inc/jetpack.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 		'posts_per_page' => false,
24 24
 	));
25 25
 }
26
-add_action( 'after_setup_theme', 'strip_infinite_scroll_setup' );
26
+add_action('after_setup_theme', 'strip_infinite_scroll_setup');
27 27
 
28 28
 /**
29 29
  * Enables Jetpack's Infinite Scroll for home (blog)
@@ -32,6 +32,6 @@  discard block
 block discarded – undo
32 32
  * https://wordpress.org/support/topic/suppress-infinite-blog-with-woocommerce
33 33
  */
34 34
 function strip_jetpack_infinite_scroll_supported() {
35
-	return current_theme_supports( 'infinite-scroll' ) && ( is_admin() || is_home() || is_search() );
35
+	return current_theme_supports('infinite-scroll') && (is_admin() || is_home() || is_search());
36 36
 }
37
-add_filter( 'infinite_scroll_archive_supported', 'strip_jetpack_infinite_scroll_supported' );
37
+add_filter('infinite_scroll_archive_supported', 'strip_jetpack_infinite_scroll_supported');
Please login to merge, or discard this patch.
inc/custom-header.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
  * @package strip
19 19
  */
20 20
 function strip_custom_header_setup() {
21
-	add_theme_support( 'custom-header', apply_filters( 'strip_custom_header_args', array(
21
+	add_theme_support('custom-header', apply_filters('strip_custom_header_args', array(
22 22
 		'default-image'          => get_template_directory_uri() . '/assets/images/Default-header.png',
23 23
 		'default-text-color'     => '000',
24 24
 		'flex-height'            => true,
@@ -27,23 +27,23 @@  discard block
 block discarded – undo
27 27
 		'wp-head-callback'       => 'strip_header_style',
28 28
 		'admin-head-callback'    => 'strip_admin_header_style',
29 29
 		'admin-preview-callback' => 'strip_admin_header_image',
30
-	) ) );
30
+	)));
31 31
 	/**
32 32
  * Register default header image
33 33
  */
34
-	register_default_headers( array(
34
+	register_default_headers(array(
35 35
 		'default-image' => array(
36 36
 		'url'  			    => '%s/assets/images/Default-header.png',
37 37
 		'thumbnail_url' => '%s/assets/images/Default-header.png',
38
-		'description'   => _x( 'DefaultHeader', 'header image description', 'strip' ),
38
+		'description'   => _x('DefaultHeader', 'header image description', 'strip'),
39 39
 		),
40 40
 		)
41 41
 	);
42 42
 }
43 43
 
44
-add_action( 'after_setup_theme', 'strip_custom_header_setup' );
44
+add_action('after_setup_theme', 'strip_custom_header_setup');
45 45
 
46
-if ( ! function_exists( 'strip_header_style' ) ) :
46
+if ( ! function_exists('strip_header_style')) :
47 47
 /**
48 48
  * Styles the header image and text displayed on the blog
49 49
  *
@@ -55,24 +55,24 @@  discard block
 block discarded – undo
55 55
 $header_text_color = get_header_textcolor();
56 56
 
57 57
 	/* Header image. */
58
-$header_image = esc_url( get_header_image() );
58
+$header_image = esc_url(get_header_image());
59 59
 
60 60
 /* Start header styles. */
61 61
 	$style = '';
62 62
 
63 63
 	/* Site title styles. */
64
-	if ( display_header_text() ) {
64
+	if (display_header_text()) {
65 65
 		$style .= ".site-title, .site-title a, .site-description, .site-description a { color: #{$header_text_color} }";
66 66
 		$style .= ".site-title { border-color: #{$header_text_color} }";
67 67
 	}
68 68
 
69
-	if ( ! display_header_text() ) {
69
+	if ( ! display_header_text()) {
70 70
 		$style .= '.site-title, .site-title a, .site-description, .site-description a { clip: rect(1px, 1px, 1px, 1px); position: absolute; }';
71 71
 	}
72 72
 
73 73
 	/* Echo styles if it's not empty. */
74
-	if ( ! empty( $style ) ) {
75
-		echo "\n" . '<style type="text/css" id="custom-header-css">' . esc_attr( trim( $style ) ) . '</style>' . "\n";
74
+	if ( ! empty($style)) {
75
+		echo "\n" . '<style type="text/css" id="custom-header-css">' . esc_attr(trim($style)) . '</style>' . "\n";
76 76
 	}
77 77
 
78 78
 }
Please login to merge, or discard this patch.
functions.php 1 patch
Spacing   +206 added lines, -206 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,29 +28,29 @@  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
 		// Add default posts and comments RSS feed links to head.
41
-		add_theme_support( 'automatic-feed-links' );
41
+		add_theme_support('automatic-feed-links');
42 42
 
43 43
 		/**
44 44
 * Enable support for title-tag. Allows themes to add document title tag to HTML <head> (since version 4.1.).
45 45
 */
46
-		add_theme_support( 'title-tag' );
46
+		add_theme_support('title-tag');
47 47
 
48 48
 		/**
49 49
 * Enable support for custom logo.
50 50
 *
51 51
 * @since strip 1.0
52 52
 */
53
-		add_theme_support( 'custom-logo', array(
53
+		add_theme_support('custom-logo', array(
54 54
 			'height'      => 156,
55 55
 			'width'       => 312,
56 56
 			'flex-height' => true,
@@ -63,11 +63,11 @@  discard block
 block discarded – undo
63 63
 *
64 64
 * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
65 65
 */
66
-add_theme_support( 'post-thumbnails' );
67
-add_image_size( 'strip-featured-image', 1920, 480, true );
68
-add_image_size( 'strip-large', 1272, 636, true ); // cropped.
69
-add_image_size( 'strip-medium', 624, 312, true ); // cropped.
70
-add_image_size( 'strip-thumbnail', 312, 156, true ); // cropped.
66
+add_theme_support('post-thumbnails');
67
+add_image_size('strip-featured-image', 1920, 480, true);
68
+add_image_size('strip-large', 1272, 636, true); // cropped.
69
+add_image_size('strip-medium', 624, 312, true); // cropped.
70
+add_image_size('strip-thumbnail', 312, 156, true); // cropped.
71 71
 		/**
72 72
 		 * Remove paragraph tags around images.
73 73
 		 *
@@ -75,35 +75,35 @@  discard block
 block discarded – undo
75 75
 		 * @link https://css-tricks.com/snippets/wordpress/remove-paragraph-tags-from-around-images/
76 76
 		 * @see http://codex.wordpress.org/Function_Reference/wpautop gets the same result but removes line blocks: remove_filter( 'the_content', 'wpautop' );
77 77
 		 */
78
-		function filter_ptags_on_images( $img ) {
79
-			return preg_replace( '/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $img );
78
+		function filter_ptags_on_images($img) {
79
+			return preg_replace('/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $img);
80 80
 		}
81
-		add_filter( 'the_content', 'filter_ptags_on_images' );
81
+		add_filter('the_content', 'filter_ptags_on_images');
82 82
 
83 83
 		/**
84 84
 	 	* This theme uses wp_nav_menu() in one location.
85 85
 	 	*/
86 86
 		register_nav_menus(array(
87
-			'primary' => __( 'Primary Menu', 'strip' ),
87
+			'primary' => __('Primary Menu', 'strip'),
88 88
 		));
89 89
 
90 90
 		/*
91 91
 		* Switch default core markup for search form, comment form, and comments
92 92
 		* to output valid HTML5.
93 93
 		*/
94
-		add_theme_support( 'html5', array(
94
+		add_theme_support('html5', array(
95 95
 			'search-form',
96 96
 			'comment-form',
97 97
 			'comment-list',
98 98
 			'gallery',
99 99
 			'caption',
100 100
 			'widgets',
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
 			'image',
108 108
 			'video',
109 109
 			'quote',
@@ -111,35 +111,35 @@  discard block
 block discarded – undo
111 111
 			'gallery',
112 112
 			'audio',
113 113
 			'chat',
114
-		) );
114
+		));
115 115
 
116 116
 		// Setup the WordPress core custom background feature.
117 117
 		add_theme_support('custom-background', apply_filters('strip_custom_background_args', array(
118 118
 			'default-color' => 'ffffff',
119 119
 			'default-image' => '',
120
-		) ) );
120
+		)));
121 121
 	}
122 122
 
123 123
 	/**
124 124
 	* This theme styles the visual editor to resemble the theme style,
125 125
 	* specifically font, colors, icons, and column width.
126 126
 	*/
127
-	add_editor_style( array( '/assets/css/editor-style.css', '/assets/fonts/fenix.css' ) );
127
+	add_editor_style(array('/assets/css/editor-style.css', '/assets/fonts/fenix.css'));
128 128
 
129 129
 	// Indicate widget sidebars can use selective refresh in the Customizer.
130 130
 	// See https://make.wordpress.org/core/2016/03/22/implementing-selective-refresh-support-for-widgets/ for detail.
131
-	add_theme_support( 'customize-selective-refresh-widgets' );
131
+	add_theme_support('customize-selective-refresh-widgets');
132 132
 endif; // strip_setup.
133
-add_action( 'after_setup_theme', 'strip_setup' );
133
+add_action('after_setup_theme', 'strip_setup');
134 134
 
135 135
 /**
136 136
  * Register widgetized area and update sidebar with default widgets
137 137
  */
138 138
 function strip_widgets_init() {
139 139
 	register_sidebar(array(
140
-		'name'          => __( 'Main Sidebar', 'strip' ),
140
+		'name'          => __('Main Sidebar', 'strip'),
141 141
 		'id'            => 'sidebar',
142
-		'description'   => __( 'The main body widget area', 'strip' ),
142
+		'description'   => __('The main body widget area', 'strip'),
143 143
 		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
144 144
 		'after_widget'	=> '</aside>',
145 145
 		'before_title'	=> '<h2 class="widget-title">',
@@ -147,10 +147,10 @@  discard block
 block discarded – undo
147 147
 	));
148 148
 
149 149
 	// First footer widget area, located in the footer. Empty by default.
150
-	register_sidebar( array(
151
-		'name'          => __( 'First Footer Widget', 'strip' ),
150
+	register_sidebar(array(
151
+		'name'          => __('First Footer Widget', 'strip'),
152 152
 		'id'            => 'first-footer-widget',
153
-		'description'   => __( 'The first footer widget', 'strip' ),
153
+		'description'   => __('The first footer widget', 'strip'),
154 154
 		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
155 155
 		'after_widget'	=> '</aside>',
156 156
 		'before_title'	=> '<h3 class="widget-title">',
@@ -159,9 +159,9 @@  discard block
 block discarded – undo
159 159
 
160 160
 	// Second Footer Widget Area, located in the footer. Empty by default.
161 161
 	register_sidebar(array(
162
-		'name'          => __( 'Second Footer Widget', 'strip' ),
162
+		'name'          => __('Second Footer Widget', 'strip'),
163 163
 		'id'            => 'second-footer-widget',
164
-		'description'   => __( 'The second footer widget', 'strip' ),
164
+		'description'   => __('The second footer widget', 'strip'),
165 165
 		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
166 166
 		'after_widget'	=> '</aside>',
167 167
 		'before_title'	=> '<h3 class="widget-title">',
@@ -170,9 +170,9 @@  discard block
 block discarded – undo
170 170
 
171 171
 	// Third Footer Widget Area, located in the footer. Empty by default.
172 172
 	register_sidebar(array(
173
-		'name'          => __( 'Third Footer Widget', 'strip' ),
173
+		'name'          => __('Third Footer Widget', 'strip'),
174 174
 		'id'            => 'third-footer-widget',
175
-		'description'   => __( 'The third footer widget', 'strip' ),
175
+		'description'   => __('The third footer widget', 'strip'),
176 176
 		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
177 177
 		'after_widget'	=> '</aside>',
178 178
 		'before_title'	=> '<h3 class="widget-title">',
@@ -181,9 +181,9 @@  discard block
 block discarded – undo
181 181
 
182 182
 	// Fourth Footer Widget Area, located in the footer. Empty by default.
183 183
 	register_sidebar(array(
184
-		'name'           => __( 'Fourth Footer Widget', 'strip' ),
184
+		'name'           => __('Fourth Footer Widget', 'strip'),
185 185
 		'id'             => 'fourth-footer-widget',
186
-		'description'    => __( 'The fourth footer widget', 'strip' ),
186
+		'description'    => __('The fourth footer widget', 'strip'),
187 187
 		'before_widget'  => '<aside id="%1$s" class="widget %2$s">',
188 188
 		'after_widget'	 => '</aside>',
189 189
 		'before_title'	 => '<h3 class="widget-title">',
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
 	));
192 192
 
193 193
 }
194
-add_action( 'widgets_init', 'strip_widgets_init' );
194
+add_action('widgets_init', 'strip_widgets_init');
195 195
 
196 196
 /**
197 197
  * Handles JavaScript detection.
@@ -203,47 +203,47 @@  discard block
 block discarded – undo
203 203
 function strip_javascript_detection() {
204 204
 	echo "<script>(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);</script>\n";
205 205
 }
206
-add_action( 'wp_head', 'strip_javascript_detection', 0 );
206
+add_action('wp_head', 'strip_javascript_detection', 0);
207 207
 
208 208
 /**
209 209
  * Enqueue_styles for custom fonts.
210 210
  */
211 211
 function strip_scripts() {
212 212
 	// add custom font here if any.
213
-	wp_enqueue_style( 'fenix', get_template_directory_uri() . '/assets/fonts/fenix.css', array(), null );
213
+	wp_enqueue_style('fenix', get_template_directory_uri() . '/assets/fonts/fenix.css', array(), null);
214 214
 
215
-	wp_enqueue_style( 'inconsolata', get_template_directory_uri() . '/assets/fonts/inconsolata.css', array(), null );
215
+	wp_enqueue_style('inconsolata', get_template_directory_uri() . '/assets/fonts/inconsolata.css', array(), null);
216 216
 
217 217
 	// Theme stylesheet.
218
-	wp_enqueue_style( 'strip-style', get_stylesheet_uri() );
218
+	wp_enqueue_style('strip-style', get_stylesheet_uri());
219 219
 
220 220
 	// Load the Internet Explorer specific stylesheet. Conditional stylesheet — tested and works with IE9 on Windows7.
221
-	wp_enqueue_style( 'strip-ie', get_template_directory_uri() . '/assets/css/ie.css', array( 'strip-style' ), '20160305' );
222
-	wp_style_add_data( 'strip-ie', 'conditional', 'lt IE 10' );
221
+	wp_enqueue_style('strip-ie', get_template_directory_uri() . '/assets/css/ie.css', array('strip-style'), '20160305');
222
+	wp_style_add_data('strip-ie', 'conditional', 'lt IE 10');
223 223
 
224
-	if ( has_nav_menu( 'primary' ) ) {
225
-		wp_enqueue_script( 'strip-navigation', get_template_directory_uri() . '/assets/js/min/navigation-min.js', array(), '1.0', true );
224
+	if (has_nav_menu('primary')) {
225
+		wp_enqueue_script('strip-navigation', get_template_directory_uri() . '/assets/js/min/navigation-min.js', array(), '1.0', true);
226 226
 	}
227 227
 
228 228
 	// Load the html5 shiv.
229
-	wp_enqueue_script( 'strip-html5', get_template_directory_uri() . '/assets/js/min/html5-min.js', array(), '3.7.3' );
230
-	wp_script_add_data( 'strip-html5', 'conditional', 'lt IE 9' );
229
+	wp_enqueue_script('strip-html5', get_template_directory_uri() . '/assets/js/min/html5-min.js', array(), '3.7.3');
230
+	wp_script_add_data('strip-html5', 'conditional', 'lt IE 9');
231 231
 
232
-	wp_enqueue_script( 'strip-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/min/skip-link-focus-fix-min.js', array(), '1.0', true );
232
+	wp_enqueue_script('strip-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/min/skip-link-focus-fix-min.js', array(), '1.0', true);
233 233
 
234
-	if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
235
-		wp_enqueue_script( 'comment-reply' );
234
+	if (is_singular() && comments_open() && get_option('thread_comments')) {
235
+		wp_enqueue_script('comment-reply');
236 236
 
237 237
 			// toggle comments js.
238
-			wp_enqueue_script( 'strip-toggle-comments', get_template_directory_uri() . '/assets/js/min/toggle-comments-min.js', array( 'jquery' ), '1.2', true );
238
+			wp_enqueue_script('strip-toggle-comments', get_template_directory_uri() . '/assets/js/min/toggle-comments-min.js', array('jquery'), '1.2', true);
239 239
 
240
-		if ( is_single() && wp_attachment_is_image() ) {
241
-			wp_enqueue_script( 'strip-keyboard-image-navigation', get_template_directory_uri() . '/assets/js/min/keyboard-image-navigation-min.js', array( 'jquery' ), '20160412', true );
240
+		if (is_single() && wp_attachment_is_image()) {
241
+			wp_enqueue_script('strip-keyboard-image-navigation', get_template_directory_uri() . '/assets/js/min/keyboard-image-navigation-min.js', array('jquery'), '20160412', true);
242 242
 		}
243 243
 	}
244 244
 }
245 245
 
246
-add_action( 'wp_enqueue_scripts', 'strip_scripts' );
246
+add_action('wp_enqueue_scripts', 'strip_scripts');
247 247
 
248 248
 /**
249 249
  * Implement the Custom Header feature.
@@ -270,14 +270,14 @@  discard block
 block discarded – undo
270 270
  */
271 271
 require get_template_directory() . '/inc/jetpack.php';
272 272
 
273
-add_action( 'wp_enqueue_scripts', 'enqueue_royal_sliders' );
273
+add_action('wp_enqueue_scripts', 'enqueue_royal_sliders');
274 274
 /**
275 275
  * Register RoyalSLider
276 276
  */
277 277
 function enqueue_royal_sliders() {
278
-	if ( function_exists( 'register_new_royalslider_files' ) ) {
278
+	if (function_exists('register_new_royalslider_files')) {
279 279
 		// you could try this: if ( is_single() && is_archive() ) { but you don't really need it.
280
-			register_new_royalslider_files( 1 ); // 1 is RoyalSlider configuration number
280
+			register_new_royalslider_files(1); // 1 is RoyalSlider configuration number
281 281
 		// add } if use is_single etc.
282 282
 	}
283 283
 }
@@ -290,24 +290,24 @@  discard block
 block discarded – undo
290 290
  * @link https://gist.github.com/SilentComics/0a7ea47942eb759dbb48eac2b7be1bbc/
291 291
  */
292 292
 function get_first_image() {
293
-	$post  = get_post();
293
+	$post = get_post();
294 294
 	$first_img = '';
295
-	preg_match_all( '/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', do_shortcode( $post->post_content, 'gallery' ), $matches );
296
-	  $first_img = isset( $matches[1][0] ) ? $matches[1][0] : null;
295
+	preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', do_shortcode($post->post_content, 'gallery'), $matches);
296
+	  $first_img = isset($matches[1][0]) ? $matches[1][0] : null;
297 297
 
298
-	if ( empty( $first_img ) ) {
298
+	if (empty($first_img)) {
299 299
 			return get_template_directory_uri() . '/assets/images/empty.png'; // path to default image.
300 300
 	}
301 301
 
302 302
 		// Now we have the $first_img but we want the thumbnail of that image.
303
-		$explode = explode( '.', $first_img );
304
-		$count = count( $explode );
303
+		$explode = explode('.', $first_img);
304
+		$count = count($explode);
305 305
 		$size = '-624x312'; // Panel ratio (2:1) 312x156 for lighther page, 624x312 for retina; use add_image_size() and Force Regenerate Thumbnails plugin when changing sizes.
306
-		$explode[ $count -2 ] = $explode[ $count -2 ] . '' . $size;
307
-		$thumb_img = implode( '.', $explode );
306
+		$explode[$count - 2] = $explode[$count - 2] . '' . $size;
307
+		$thumb_img = implode('.', $explode);
308 308
 		return $thumb_img;
309 309
 }
310
-	add_filter( 'get_first_image', 'thumbnail' );
310
+	add_filter('get_first_image', 'thumbnail');
311 311
 
312 312
 /**
313 313
  * Register Custom Post Type for comics with REST API support
@@ -315,24 +315,24 @@  discard block
 block discarded – undo
315 315
 function comic_post_type() {
316 316
 
317 317
 	$labels = array(
318
-		'name'                       => _x( 'Comics', 'Post Type General Name', 'strip' ),
319
-		'singular_name'              => _x( 'Comic', 'Post Type Singular Name', 'strip' ),
320
-		'menu_name'                  => _x( 'Comics', 'admin menu', 'strip' ),
321
-		'name_admin_bar'             => _x( 'Comic', 'add new on admin bar', 'strip' ),
322
-		'parent_item_colon'	         => __( 'Parent Comic:', 'strip' ),
323
-		'all_items'                  => __( 'All Comics', 'strip' ),
324
-		'add_new_item'               => __( 'Add New Comic', 'strip' ),
325
-		'add_new'                    => __( 'Add New Comic', 'strip' ),
326
-		'new_item'                   => __( 'New Comic', 'strip' ),
327
-		'edit_item'                  => __( 'Edit Comic', 'strip' ),
328
-		'update_item'                => __( 'Update Comic', 'strip' ),
329
-		'view_item'                  => __( 'View Comic', 'strip' ),
330
-		'search_items'               => __( 'Search Item', 'strip' ),
331
-		'not_found'                  => __( 'No Comics found', 'strip' ),
332
-		'not_found_in_trash'         => __( 'No Comics found in Trash', 'strip' ),
333
-		'items_list'                 => __( 'Comics list', 'strip' ),
334
-		'items_list_navigation'      => __( 'Comics list navigation', 'strip' ),
335
-		'filter_items_list'          => __( 'Filter Comics list', 'strip' ),
318
+		'name'                       => _x('Comics', 'Post Type General Name', 'strip'),
319
+		'singular_name'              => _x('Comic', 'Post Type Singular Name', 'strip'),
320
+		'menu_name'                  => _x('Comics', 'admin menu', 'strip'),
321
+		'name_admin_bar'             => _x('Comic', 'add new on admin bar', 'strip'),
322
+		'parent_item_colon'	         => __('Parent Comic:', 'strip'),
323
+		'all_items'                  => __('All Comics', 'strip'),
324
+		'add_new_item'               => __('Add New Comic', 'strip'),
325
+		'add_new'                    => __('Add New Comic', 'strip'),
326
+		'new_item'                   => __('New Comic', 'strip'),
327
+		'edit_item'                  => __('Edit Comic', 'strip'),
328
+		'update_item'                => __('Update Comic', 'strip'),
329
+		'view_item'                  => __('View Comic', 'strip'),
330
+		'search_items'               => __('Search Item', 'strip'),
331
+		'not_found'                  => __('No Comics found', 'strip'),
332
+		'not_found_in_trash'         => __('No Comics found in Trash', 'strip'),
333
+		'items_list'                 => __('Comics list', 'strip'),
334
+		'items_list_navigation'      => __('Comics list navigation', 'strip'),
335
+		'filter_items_list'          => __('Filter Comics list', 'strip'),
336 336
 	);
337 337
 
338 338
 	$supports = array(
@@ -350,11 +350,11 @@  discard block
 block discarded – undo
350 350
 	);
351 351
 
352 352
 	$args = array(
353
-		'label'                      => __( 'Comic', 'strip' ),
354
-		'description'                => __( 'Publish Comics and Webcomics', 'strip' ),
353
+		'label'                      => __('Comic', 'strip'),
354
+		'description'                => __('Publish Comics and Webcomics', 'strip'),
355 355
 		'labels'                     => $labels,
356 356
 		'supports'                   => $supports,
357
-		'taxonomies'                 => array( 'story', 'story_term', 'draft' ),
357
+		'taxonomies'                 => array('story', 'story_term', 'draft'),
358 358
 		'hierarchical'               => true,
359 359
 		'public'                     => true,
360 360
 		'show_in_rest'               => true,
@@ -370,40 +370,40 @@  discard block
 block discarded – undo
370 370
 		'has_archive'                => true,
371 371
 		'feeds'                      => true,
372 372
 		'exclude_from_search'        => false,
373
-		'rewrite'                    => array( 'slug' => 'stories', 'with_front' => true ),
373
+		'rewrite'                    => array('slug' => 'stories', 'with_front' => true),
374 374
 		'publicly_queryable'	       => true,
375 375
 		'capability_type'            => 'post',
376 376
 	);
377
-	register_post_type( 'comic', $args );
377
+	register_post_type('comic', $args);
378 378
 }
379 379
 
380 380
 // Hook into the 'init' action.
381
-add_action( 'init', 'comic_post_type', 0 ); // End of register_cpt_comic().
381
+add_action('init', 'comic_post_type', 0); // End of register_cpt_comic().
382 382
 
383 383
 	/**
384 384
 	 * Register Custom Taxonomy 'story'
385 385
 	 */
386 386
 function comic_story_taxonomy() {
387 387
 	$labels = array(
388
-		'name'                       => _x( 'Comic Story', 'Taxonomy General Name', 'strip' ),
389
-		'singular_name'              => _x( 'Comic Story', 'Taxonomy Singular Name', 'strip' ),
390
-		'menu_name'                  => __( 'Comic Stories', 'strip' ),
391
-		'all_items'                  => __( 'All Comic Stories', 'strip' ),
392
-		'parent_item'                => __( 'Parent Story', 'strip' ),
393
-		'parent_item_colon'          => __( 'Parent Story:', 'strip' ),
394
-		'new_item_name'              => __( 'New Comic Story', 'strip' ),
395
-		'add_new_item'               => __( 'Add New Story', 'strip' ),
396
-		'edit_item'                  => __( 'Edit Story', 'strip' ),
397
-		'update_item'                => __( 'Update Story', 'strip' ),
398
-		'view_item'                  => __( 'View Item', 'strip' ),
399
-		'separate_items_with_commas' => __( 'Separate stories with commas', 'strip' ),
400
-		'add_or_remove_items'        => __( 'Add or Remove Stories', 'strip' ),
401
-		'choose_from_most_used'      => __( 'Choose from the most used stories', 'strip' ),
402
-		'popular_items'              => __( 'Popular comic stories', 'strip' ),
403
-		'search_items'               => __( 'Search Stories', 'strip' ),
404
-		'not_found'                  => __( 'No comic Stories found', 'strip' ),
405
-		'items_list'                 => __( 'Comic Stories list', 'strip' ),
406
-		'items_list_navigation'      => __( 'Comic Stories list navigation', 'strip' ),
388
+		'name'                       => _x('Comic Story', 'Taxonomy General Name', 'strip'),
389
+		'singular_name'              => _x('Comic Story', 'Taxonomy Singular Name', 'strip'),
390
+		'menu_name'                  => __('Comic Stories', 'strip'),
391
+		'all_items'                  => __('All Comic Stories', 'strip'),
392
+		'parent_item'                => __('Parent Story', 'strip'),
393
+		'parent_item_colon'          => __('Parent Story:', 'strip'),
394
+		'new_item_name'              => __('New Comic Story', 'strip'),
395
+		'add_new_item'               => __('Add New Story', 'strip'),
396
+		'edit_item'                  => __('Edit Story', 'strip'),
397
+		'update_item'                => __('Update Story', 'strip'),
398
+		'view_item'                  => __('View Item', 'strip'),
399
+		'separate_items_with_commas' => __('Separate stories with commas', 'strip'),
400
+		'add_or_remove_items'        => __('Add or Remove Stories', 'strip'),
401
+		'choose_from_most_used'      => __('Choose from the most used stories', 'strip'),
402
+		'popular_items'              => __('Popular comic stories', 'strip'),
403
+		'search_items'               => __('Search Stories', 'strip'),
404
+		'not_found'                  => __('No comic Stories found', 'strip'),
405
+		'items_list'                 => __('Comic Stories list', 'strip'),
406
+		'items_list_navigation'      => __('Comic Stories list navigation', 'strip'),
407 407
 	);
408 408
 	$args = array(
409 409
 		'labels'                     => $labels,
@@ -415,14 +415,14 @@  discard block
 block discarded – undo
415 415
 		'show_in_nav_menus'          => true,
416 416
 		'show_tagcloud'              => true,
417 417
 		'query_var'	                 => true,
418
-		'rewrite'                    => array( 'slug' => 'story' ),
418
+		'rewrite'                    => array('slug' => 'story'),
419 419
 	);
420
-	register_taxonomy( 'story', array( 'comic' ), $args );
421
-	register_taxonomy_for_object_type( 'story', 'comic' );
420
+	register_taxonomy('story', array('comic'), $args);
421
+	register_taxonomy_for_object_type('story', 'comic');
422 422
 }
423 423
 
424 424
 // Hook into the 'init' action.
425
-add_action( 'init', 'comic_story_taxonomy', 0 );
425
+add_action('init', 'comic_story_taxonomy', 0);
426 426
 
427 427
 /**
428 428
  * Function strip rewrite rules.
@@ -431,31 +431,31 @@  discard block
 block discarded – undo
431 431
 	flush_rewrite_rules();
432 432
 }
433 433
 /* Flush rewrite rules for custom post types. */
434
-add_action( 'after_switch_theme', 'strip_rewrite_rules' );
434
+add_action('after_switch_theme', 'strip_rewrite_rules');
435 435
 
436 436
 // Add Print taxonomy, NOT hierarchical (like tags)
437 437
 // Register Custom Taxonomy.
438 438
 	$labels = array(
439
-		'name'                       => _x( 'Prints', 'Taxonomy General Name', 'strip' ),
440
-		'singular_name'              => _x( 'Print', 'Taxonomy Singular Name', 'strip' ),
441
-		'menu_name'                  => __( 'Print', 'strip' ),
442
-		'all_items'                  => __( 'All Prints', 'strip' ),
443
-		'parent_item'                => __( 'Parent Print', 'strip' ),
444
-		'parent_item_colon'          => __( 'Parent Print:', 'strip' ),
445
-		'new_item_name'              => __( 'New Print Name', 'strip' ),
446
-		'add_new_item'               => __( 'Add New Print', 'strip' ),
447
-		'edit_item'                  => __( 'Edit Print', 'strip' ),
448
-		'update_item'                => __( 'Update Pring', 'strip' ),
449
-		'view_item'                  => __( 'View Print', 'strip' ),
450
-		'separate_items_with_commas' => __( 'Separate prints with commas', 'strip' ),
451
-		'add_or_remove_items'        => __( 'Add or remove prints', 'strip' ),
452
-		'choose_from_most_used'      => __( 'Choose from the most used', 'strip' ),
453
-		'popular_items'              => __( 'Popular Prints', 'strip' ),
454
-		'search_items'               => __( 'Search Prints', 'strip' ),
455
-		'not_found'                  => __( 'Not Found', 'strip' ),
456
-		'no_terms'                   => __( 'No prints', 'strip' ),
457
-		'items_list'                 => __( 'Prints list', 'strip' ),
458
-		'items_list_navigation'      => __( 'Prints list navigation', 'strip' ),
439
+		'name'                       => _x('Prints', 'Taxonomy General Name', 'strip'),
440
+		'singular_name'              => _x('Print', 'Taxonomy Singular Name', 'strip'),
441
+		'menu_name'                  => __('Print', 'strip'),
442
+		'all_items'                  => __('All Prints', 'strip'),
443
+		'parent_item'                => __('Parent Print', 'strip'),
444
+		'parent_item_colon'          => __('Parent Print:', 'strip'),
445
+		'new_item_name'              => __('New Print Name', 'strip'),
446
+		'add_new_item'               => __('Add New Print', 'strip'),
447
+		'edit_item'                  => __('Edit Print', 'strip'),
448
+		'update_item'                => __('Update Pring', 'strip'),
449
+		'view_item'                  => __('View Print', 'strip'),
450
+		'separate_items_with_commas' => __('Separate prints with commas', 'strip'),
451
+		'add_or_remove_items'        => __('Add or remove prints', 'strip'),
452
+		'choose_from_most_used'      => __('Choose from the most used', 'strip'),
453
+		'popular_items'              => __('Popular Prints', 'strip'),
454
+		'search_items'               => __('Search Prints', 'strip'),
455
+		'not_found'                  => __('Not Found', 'strip'),
456
+		'no_terms'                   => __('No prints', 'strip'),
457
+		'items_list'                 => __('Prints list', 'strip'),
458
+		'items_list_navigation'      => __('Prints list navigation', 'strip'),
459 459
 	);
460 460
 
461 461
 	$args = array(
@@ -467,21 +467,21 @@  discard block
 block discarded – undo
467 467
 		'show_in_nav_menus'          => true,
468 468
 		'show_tagcloud'              => true,
469 469
 	);
470
-	register_taxonomy( 'print', array( 'comic' ), $args );
470
+	register_taxonomy('print', array('comic'), $args);
471 471
 
472 472
 	/*
473 473
 	* WooCommerce Hooks
474 474
 	* Layout
475 475
 	*/
476
-	remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 );
477
-	remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 );
478
-	remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 );
476
+	remove_action('woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
477
+	remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
478
+	remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
479 479
 	// remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 ); // removes woo pagination.
480
-	remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
481
-	remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 );
480
+	remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20);
481
+	remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30);
482 482
 
483
-	add_action( 'woocommerce_before_main_content', 'strip_wrapper_start', 10 );
484
-	add_action( 'woocommerce_after_main_content', 'strip_wrapper_end', 10 );
483
+	add_action('woocommerce_before_main_content', 'strip_wrapper_start', 10);
484
+	add_action('woocommerce_after_main_content', 'strip_wrapper_end', 10);
485 485
 
486 486
 		 /**
487 487
 		  * WooCommerce wrapper
@@ -497,13 +497,13 @@  discard block
 block discarded – undo
497 497
 		echo '</section>';
498 498
 	}
499 499
 
500
-	add_action( 'after_setup_theme', 'woocommerce_support' );
500
+	add_action('after_setup_theme', 'woocommerce_support');
501 501
 	/**
502 502
 	 * Add WooCommerce support
503 503
 	 * https://docs.woothemes.com/document/third-party-custom-theme-compatibility/*
504 504
 	 */
505 505
 	function woocommerce_support() {
506
-		add_theme_support( 'woocommerce' );
506
+		add_theme_support('woocommerce');
507 507
 	}
508 508
 
509 509
 	/**
@@ -511,13 +511,13 @@  discard block
 block discarded – undo
511 511
 	 */
512 512
 	function wp_enqueue_woocommerce_style() {
513 513
 
514
-			wp_register_style( 'strip-woocommerce', get_template_directory_uri() . '/assets/css/woocommerce-min.css' );
515
-		if ( class_exists( 'woocommerce' ) ) {
516
-			wp_enqueue_style( 'strip-woocommerce' );
514
+			wp_register_style('strip-woocommerce', get_template_directory_uri() . '/assets/css/woocommerce-min.css');
515
+		if (class_exists('woocommerce')) {
516
+			wp_enqueue_style('strip-woocommerce');
517 517
 		}
518 518
 	}
519 519
 
520
-	add_action( 'wp_enqueue_scripts', 'wp_enqueue_woocommerce_style' );
520
+	add_action('wp_enqueue_scripts', 'wp_enqueue_woocommerce_style');
521 521
 
522 522
 	/**
523 523
 * Optimize WooCommerce Scripts
@@ -528,53 +528,53 @@  discard block
 block discarded – undo
528 528
 * @link https://gist.github.com/DevinWalker/7621777
529 529
 * @link http://dessky.com/blog/disable-woocommerce-scripts-and-styles/
530 530
 */
531
-	add_action( 'wp_enqueue_scripts', 'strip_manage_woocommerce_styles', 99 );
531
+	add_action('wp_enqueue_scripts', 'strip_manage_woocommerce_styles', 99);
532 532
 
533 533
 	/**
534 534
 	 * Remove some WooCommerce queries.
535 535
 	 */
536 536
 	function strip_manage_woocommerce_styles() {
537 537
 		// remove generator meta tag.
538
-		remove_action( 'wp_head', array( 'woocommerce', 'generator' ) );
538
+		remove_action('wp_head', array('woocommerce', 'generator'));
539 539
 		// first check that woo exists to prevent fatal errors.
540
-		if ( function_exists( 'strip_is_woocommerce_activated' ) ) {
540
+		if (function_exists('strip_is_woocommerce_activated')) {
541 541
 			// dequeue scripts and styles, unless we're in the store.
542
-			if ( ! is_woocommerce() && ! is_cart() && ! is_checkout() ) {
543
-				wp_dequeue_style( 'woocommerce_frontend_styles' );
544
-				wp_dequeue_style( 'woocommerce-general' );
545
-				wp_dequeue_style( 'woocommerce-layout' );
546
-				wp_dequeue_style( 'woocommerce-smallscreen' );
547
-				wp_dequeue_style( 'woocommerce_fancybox_styles' );
548
-				wp_dequeue_style( 'woocommerce_chosen_styles' );
549
-				wp_dequeue_style( 'woocommerce_prettyPhoto_css' );
550
-				wp_dequeue_style( 'select2' );
551
-				wp_dequeue_style( 'strip-woocommerce' ); // the theme's CSS overwrite.
552
-				wp_dequeue_script( 'wc-add-payment-method' );
553
-				wp_dequeue_script( 'wc-lost-password' );
554
-				wp_dequeue_script( 'wc_price_slider' );
555
-				wp_dequeue_script( 'wc-single-product' );
556
-				wp_dequeue_script( 'wc-add-to-cart' );
557
-				wp_dequeue_script( 'wc-cart-fragments' );
558
-				wp_dequeue_script( 'wc-credit-card-form' );
559
-				wp_dequeue_script( 'wc-checkout' );
560
-				wp_dequeue_script( 'wc-add-to-cart-variation' );
561
-				wp_dequeue_script( 'wc-single-product' );
562
-				wp_dequeue_script( 'wc-cart' );
563
-				wp_dequeue_script( 'wc-chosen' );
564
-				wp_dequeue_script( 'woocommerce' );
565
-				wp_dequeue_script( 'jquery-cookie' );
566
-				wp_dequeue_script( 'prettyPhoto' );
567
-				wp_dequeue_script( 'prettyPhoto-init' );
568
-				wp_dequeue_script( 'jquery-blockui' );
569
-				wp_dequeue_script( 'jquery-placeholder' );
570
-				wp_dequeue_script( 'jquery-payment' );
571
-				wp_dequeue_script( 'fancybox' );
572
-				wp_dequeue_script( 'jqueryui' );
542
+			if ( ! is_woocommerce() && ! is_cart() && ! is_checkout()) {
543
+				wp_dequeue_style('woocommerce_frontend_styles');
544
+				wp_dequeue_style('woocommerce-general');
545
+				wp_dequeue_style('woocommerce-layout');
546
+				wp_dequeue_style('woocommerce-smallscreen');
547
+				wp_dequeue_style('woocommerce_fancybox_styles');
548
+				wp_dequeue_style('woocommerce_chosen_styles');
549
+				wp_dequeue_style('woocommerce_prettyPhoto_css');
550
+				wp_dequeue_style('select2');
551
+				wp_dequeue_style('strip-woocommerce'); // the theme's CSS overwrite.
552
+				wp_dequeue_script('wc-add-payment-method');
553
+				wp_dequeue_script('wc-lost-password');
554
+				wp_dequeue_script('wc_price_slider');
555
+				wp_dequeue_script('wc-single-product');
556
+				wp_dequeue_script('wc-add-to-cart');
557
+				wp_dequeue_script('wc-cart-fragments');
558
+				wp_dequeue_script('wc-credit-card-form');
559
+				wp_dequeue_script('wc-checkout');
560
+				wp_dequeue_script('wc-add-to-cart-variation');
561
+				wp_dequeue_script('wc-single-product');
562
+				wp_dequeue_script('wc-cart');
563
+				wp_dequeue_script('wc-chosen');
564
+				wp_dequeue_script('woocommerce');
565
+				wp_dequeue_script('jquery-cookie');
566
+				wp_dequeue_script('prettyPhoto');
567
+				wp_dequeue_script('prettyPhoto-init');
568
+				wp_dequeue_script('jquery-blockui');
569
+				wp_dequeue_script('jquery-placeholder');
570
+				wp_dequeue_script('jquery-payment');
571
+				wp_dequeue_script('fancybox');
572
+				wp_dequeue_script('jqueryui');
573 573
 			}
574 574
 		}
575 575
 	}
576 576
 
577
-	add_action( 'pre_get_posts', 'strip_set_posts_per_page' );
577
+	add_action('pre_get_posts', 'strip_set_posts_per_page');
578 578
 	/**
579 579
 	 * Set posts, WooCommerce products & comics number per archive page
580 580
 	 * Fixes 404 error on pagination due to CTP conflicting with WordPress posts_per_page default
@@ -583,12 +583,12 @@  discard block
 block discarded – undo
583 583
 	 * @param WP_Query $query strip_set_posts_per_page.
584 584
 	 * @return $query
585 585
 	 */
586
-	function strip_set_posts_per_page( $query ) {
587
-		if ( is_post_type_archive( 'product' ) ) {
588
-			$query->set( 'posts_per_page', 4 );
586
+	function strip_set_posts_per_page($query) {
587
+		if (is_post_type_archive('product')) {
588
+			$query->set('posts_per_page', 4);
589 589
 			return  $query;
590
-		} elseif ( is_tax( 'story' ) ) {
591
-			$query->set( 'posts_per_page', 6 );
590
+		} elseif (is_tax('story')) {
591
+			$query->set('posts_per_page', 6);
592 592
 		}
593 593
 	}
594 594
 
@@ -597,13 +597,13 @@  discard block
 block discarded – undo
597 597
 	 *
598 598
 	 * @param string $query strip_add_comics_to_blog.
599 599
 	 */
600
-	function strip_add_comics_to_blog( $query ) {
601
-		if ( is_home() && $query->is_main_query() ) {
602
-			$query->set( 'post_type', array( 'post', 'comic' ) );
600
+	function strip_add_comics_to_blog($query) {
601
+		if (is_home() && $query->is_main_query()) {
602
+			$query->set('post_type', array('post', 'comic'));
603 603
 				return $query;
604 604
 		}
605 605
 	}
606
-		add_action( 'pre_get_posts', 'strip_add_comics_to_blog' );
606
+		add_action('pre_get_posts', 'strip_add_comics_to_blog');
607 607
 
608 608
 	/**
609 609
 	 * Set an automatic default custom taxonomy for comic posts.
@@ -613,35 +613,35 @@  discard block
 block discarded – undo
613 613
 	 * @param	string $post_id set_default_object_terms.
614 614
 	 * @param	string $post set_default_object_terms.
615 615
 	 */
616
-	function set_default_object_terms( $post_id, $post ) {
617
-		if ( 'publish' === $post->post_status && 'comic' === $post->post_type ) {
616
+	function set_default_object_terms($post_id, $post) {
617
+		if ('publish' === $post->post_status && 'comic' === $post->post_type) {
618 618
 			$defaults = array(
619
-			'story' => array( 'draft' ),
619
+			'story' => array('draft'),
620 620
 			);
621
-			$taxonomies = get_object_taxonomies( $post->post_type );
622
-			foreach ( (array) $taxonomies as $taxonomy ) {
623
-				$terms = get_the_terms( $post_id, $taxonomy );
624
-				if ( empty( $terms ) && array_key_exists( $taxonomy, $defaults ) ) {
625
-					wp_set_object_terms( $post_id, $defaults[ $taxonomy ], $taxonomy );
621
+			$taxonomies = get_object_taxonomies($post->post_type);
622
+			foreach ((array) $taxonomies as $taxonomy) {
623
+				$terms = get_the_terms($post_id, $taxonomy);
624
+				if (empty($terms) && array_key_exists($taxonomy, $defaults)) {
625
+					wp_set_object_terms($post_id, $defaults[$taxonomy], $taxonomy);
626 626
 				}
627 627
 			}
628 628
 		}
629 629
 	}
630
-	add_action( 'save_post', 'set_default_object_terms', 0, 2 );
630
+	add_action('save_post', 'set_default_object_terms', 0, 2);
631 631
 
632 632
 	/**
633 633
 	 * Remove jquery migrate $scripts for enhanced performance.
634 634
 	 *
635 635
 	 * @param strings $scripts remove_jquery_migrate.
636 636
 	 */
637
-	function remove_jquery_migrate( $scripts ) {
638
-		if ( is_admin() ) {
637
+	function remove_jquery_migrate($scripts) {
638
+		if (is_admin()) {
639 639
 			return;
640 640
 		}
641
-		 $scripts->remove( 'jquery' );
642
-		 $scripts->add( 'jquery', false, array( 'jquery-core' ), '1.10.2' );
641
+		 $scripts->remove('jquery');
642
+		 $scripts->add('jquery', false, array('jquery-core'), '1.10.2');
643 643
 	}
644
-		add_action( 'wp_default_scripts', 'remove_jquery_migrate' );
644
+		add_action('wp_default_scripts', 'remove_jquery_migrate');
645 645
 
646 646
 		/**
647 647
 		 * Remove login errors notices (security)
@@ -649,4 +649,4 @@  discard block
 block discarded – undo
649 649
 	function no_wordpress_errors() {
650 650
 		return 'Something is wrong!';
651 651
 	}
652
-		add_filter( 'login_errors', 'no_wordpress_errors' );
652
+		add_filter('login_errors', 'no_wordpress_errors');
Please login to merge, or discard this patch.
single-comic.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -6,8 +6,8 @@  discard block
 block discarded – undo
6 6
  * @subpackage Strip
7 7
  */
8 8
 
9
-if ( post_type_exists( $comic ) ) {
10
-	get_header( 'lite' );
9
+if (post_type_exists($comic)) {
10
+	get_header('lite');
11 11
 } else {
12 12
 	get_header();
13 13
 }
@@ -18,25 +18,25 @@  discard block
 block discarded – undo
18 18
 
19 19
 	<?php
20 20
 	// Start the loop.
21
-	while ( have_posts() ) : the_post(); ?>
21
+	while (have_posts()) : the_post(); ?>
22 22
 
23 23
 			<div class="entry-comic">
24 24
 
25
-				<?php get_template_part( 'content-comic' ); ?>
25
+				<?php get_template_part('content-comic'); ?>
26 26
 
27 27
 					<div class="wrap clear">
28 28
 
29
-						<h1 class="screen-reader-text"><?php esc_html_e( 'Post navigation', 'strip' ); ?></h1>
29
+						<h1 class="screen-reader-text"><?php esc_html_e('Post navigation', 'strip'); ?></h1>
30 30
 
31 31
 								<div class="navigation-comic">
32
-								<nav class="nav-first"><a href="<?php echo esc_url( first_comic_link() ); ?>"><?php esc_html_e( 'Start', 'strip' ); ?></a></nav>
33
-								<nav class="nav-previous"><?php previous_post_link( '%link', __( 'Previous', 'strip' ), true, '', 'story' ); ?></nav>
34
-								<nav class="nav-title"><?php the_title( '<h4 class="series-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h4>' ); ?></nav>
35
-								<nav class="nav-next"><?php next_post_link( '%link', __( 'Next', 'strip' ), true, '', 'story' ); ?></nav>
36
-								<nav class="nav-last"><a href="<?php echo esc_url( last_comic_link() ); ?>"><?php esc_html_e( 'Last', 'strip' ); ?></a></nav>
32
+								<nav class="nav-first"><a href="<?php echo esc_url(first_comic_link()); ?>"><?php esc_html_e('Start', 'strip'); ?></a></nav>
33
+								<nav class="nav-previous"><?php previous_post_link('%link', __('Previous', 'strip'), true, '', 'story'); ?></nav>
34
+								<nav class="nav-title"><?php the_title('<h4 class="series-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h4>'); ?></nav>
35
+								<nav class="nav-next"><?php next_post_link('%link', __('Next', 'strip'), true, '', 'story'); ?></nav>
36
+								<nav class="nav-last"><a href="<?php echo esc_url(last_comic_link()); ?>"><?php esc_html_e('Last', 'strip'); ?></a></nav>
37 37
 							</div><!-- .wrap -->
38 38
 
39
-						<?php set_transient( 'story', $comic );?>
39
+						<?php set_transient('story', $comic); ?>
40 40
 
41 41
 			</div><!-- #entry-comic -->
42 42
 
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 
45 45
 		<?php
46 46
 			// If comments are open or we have at least one comment, load up the comment template.
47
-		if ( comments_open() || '0' !== get_comments_number() ) :
47
+		if (comments_open() || '0' !== get_comments_number()) :
48 48
 			comments_template();
49 49
 		endif;
50 50
 
@@ -52,4 +52,4 @@  discard block
 block discarded – undo
52 52
 
53 53
 		</main><!-- #content -->
54 54
 	</section><!-- #primary -->
55
-<?php get_footer( 'lite' ); ?>
55
+<?php get_footer('lite'); ?>
Please login to merge, or discard this patch.
archive-comic.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -13,36 +13,36 @@  discard block
 block discarded – undo
13 13
 	<section id="primary"
14 14
 		<main id="content" role="main">
15 15
 
16
-			<?php if ( have_posts() ) : ?>
16
+			<?php if (have_posts()) : ?>
17 17
 
18 18
 				<header class="page-header">
19 19
 					<h1 class="page-title">
20 20
 						<?php
21 21
 							printf(
22
-								esc_html( 'STORIES %s', 'strip' ), '<span>' .
23
-								single_cat_title( '', false ) . '</span>'
22
+								esc_html('STORIES %s', 'strip'), '<span>' .
23
+								single_cat_title('', false) . '</span>'
24 24
 							);
25 25
 						?>
26 26
 					</h1>
27 27
 
28 28
 					<h3 class="taxonomy-description">
29
-						<a href="<?php echo esc_url( home_url( '/series/' ) ); ?>">
30
-						<?php '<span class="meta-nav"' . printf( esc_html_e( 'Series', 'strip' ) ) . '</span>'; ?>
29
+						<a href="<?php echo esc_url(home_url('/series/')); ?>">
30
+						<?php '<span class="meta-nav"' . printf(esc_html_e('Series', 'strip')) . '</span>'; ?>
31 31
 						</a>
32 32
 					</h3>
33 33
 
34 34
 					<h4 class="series-title">
35
-					<a href="<?php echo esc_url( home_url( '/story/exile/' ) ); ?>">ExIle</a></h4>
35
+					<a href="<?php echo esc_url(home_url('/story/exile/')); ?>">ExIle</a></h4>
36 36
 					<h4 class="series-title">
37
-					<a href="<?php echo esc_url( home_url( '/story/tofu/' ) ); ?>">Morning Tofu Chase</a></h4>
37
+					<a href="<?php echo esc_url(home_url('/story/tofu/')); ?>">Morning Tofu Chase</a></h4>
38 38
 					<h3 class="series-title">
39
-					<a href="<?php echo esc_url( home_url( '/story/sentient-drone/' ) ); ?>">Sentient Drone</a></h3>
39
+					<a href="<?php echo esc_url(home_url('/story/sentient-drone/')); ?>">Sentient Drone</a></h3>
40 40
 
41 41
 				<?php
42 42
 					// Show an optional term description.
43 43
 					$term_description = term_description();
44
-				if ( ! empty( $term_description ) ) :
45
-					'<div class="taxonomy-description"' . printf( esc_html( '%s', $term_description ) ) . '</div>';
44
+				if ( ! empty($term_description)) :
45
+					'<div class="taxonomy-description"' . printf(esc_html('%s', $term_description)) . '</div>';
46 46
 				endif;
47 47
 				?>
48 48
 			</header><!-- .page-header -->
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
 		)
61 61
 	);
62 62
 
63
-while ( $comic->have_posts() ) : $comic->the_post();
64
-	get_template_part( 'content-comic' );
63
+while ($comic->have_posts()) : $comic->the_post();
64
+	get_template_part('content-comic');
65 65
 	// change to 'content' to style it like the blog entry page.
66 66
 		?>
67 67
 	<?php endwhile;
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 
74 74
 	<?php else : ?>
75 75
 
76
-	<?php get_template_part( 'no-results', 'archive-comic' ); ?>
76
+	<?php get_template_part('no-results', 'archive-comic'); ?>
77 77
 
78 78
 	<?php endif;
79 79
 			wp_reset_postdata(); ?>
Please login to merge, or discard this patch.
inc/template-tags.php 1 patch
Spacing   +56 added lines, -56 removed lines patch added patch discarded remove patch
@@ -12,47 +12,47 @@  discard block
 block discarded – undo
12 12
  * Add custom header image to header area
13 13
  */
14 14
 function strip_header_background() {
15
-	if ( get_header_image() ) {
16
-		$css = '.site-branding { background-image: url(' . esc_url( get_header_image() ) . '); }';
17
-		wp_add_inline_style( 'strip-style', $css );
15
+	if (get_header_image()) {
16
+		$css = '.site-branding { background-image: url(' . esc_url(get_header_image()) . '); }';
17
+		wp_add_inline_style('strip-style', $css);
18 18
 	}
19 19
 }
20
-add_action( 'wp_enqueue_scripts', 'strip_header_background', 11 );
20
+add_action('wp_enqueue_scripts', 'strip_header_background', 11);
21 21
 
22
-if ( ! function_exists( 'strip_entry_meta' ) ) :
22
+if ( ! function_exists('strip_entry_meta')) :
23 23
 	/**
24 24
 	 * Prints HTML with meta information for the current post-date/time and author.
25 25
 	 */
26 26
 	function strip_entry_meta() {
27
-		if ( is_sticky() && is_home() ) {
27
+		if (is_sticky() && is_home()) {
28 28
 			printf(
29
-				wp_kses( '<span class="featured-post"><a href="%1$s" title="%2$s" rel="bookmark">Sticky</a></span>', 'strip' ),
30
-				esc_url( get_permalink() ),
31
-				esc_attr( get_the_time() )
29
+				wp_kses('<span class="featured-post"><a href="%1$s" title="%2$s" rel="bookmark">Sticky</a></span>', 'strip'),
30
+				esc_url(get_permalink()),
31
+				esc_attr(get_the_time())
32 32
 			);
33 33
 		}
34 34
 
35
-		if ( 'post' === get_post_type() ) {
35
+		if ('post' === get_post_type()) {
36 36
 			printf(
37
-				wp_kses_post( '<span class="entry-date"><a href="%1$s" title="%2$s" rel="bookmark"><time datetime="%3$s">%4$s</time></a></span><span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span>', 'strip' ),
38
-				esc_url( get_permalink() ),
39
-				esc_attr( get_the_time() ),
40
-				esc_attr( get_the_date( 'c' ) ),
37
+				wp_kses_post('<span class="entry-date"><a href="%1$s" title="%2$s" rel="bookmark"><time datetime="%3$s">%4$s</time></a></span><span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span>', 'strip'),
38
+				esc_url(get_permalink()),
39
+				esc_attr(get_the_time()),
40
+				esc_attr(get_the_date('c')),
41 41
 				get_the_date(),
42
-				esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
43
-				esc_attr( sprintf( __( 'View all posts by %s', 'strip' ), get_the_author() ) ),
42
+				esc_url(get_author_posts_url(get_the_author_meta('ID'))),
43
+				esc_attr(sprintf(__('View all posts by %s', 'strip'), get_the_author())),
44 44
 				get_the_author()
45 45
 			);
46 46
 		}
47 47
 
48
-		$tags_list = get_the_tag_list( '', _x( ', ', 'Used between list items, there is a space after the comma.', 'strip' ) );
49
-		if ( $tags_list ) {
50
-			printf( '<span class="tags-links">' . esc_html( '%1$s', 'strip' ) . '</span>', $tags_list ); // WPCS: XSS OK.
48
+		$tags_list = get_the_tag_list('', _x(', ', 'Used between list items, there is a space after the comma.', 'strip'));
49
+		if ($tags_list) {
50
+			printf('<span class="tags-links">' . esc_html('%1$s', 'strip') . '</span>', $tags_list); // WPCS: XSS OK.
51 51
 		}
52 52
 	}
53 53
 endif;
54 54
 
55
-if ( ! function_exists( 'strip_term_description' ) ) :
55
+if ( ! function_exists('strip_term_description')) :
56 56
 	/**
57 57
 	 * Display optional term description for category, tag and custom taxonomy pages.
58 58
 	 *
@@ -62,8 +62,8 @@  discard block
 block discarded – undo
62 62
 		// Show an optional term description.
63 63
 		$term_description = term_description();
64 64
 
65
-		if ( is_post_type_archive( 'comic' ) || is_category() || is_tag() || is_tax( 'story' ) && ! empty( $term_description ) ) :
66
-			printf( '<div class="taxonomy-description">%s</div>', $term_description, 'strip' ); // WPCS: XSS OK.
65
+		if (is_post_type_archive('comic') || is_category() || is_tag() || is_tax('story') && ! empty($term_description)) :
66
+			printf('<div class="taxonomy-description">%s</div>', $term_description, 'strip'); // WPCS: XSS OK.
67 67
 			endif;
68 68
 	}
69 69
 endif; // ends check for strip_term_description.
@@ -74,25 +74,25 @@  discard block
 block discarded – undo
74 74
  * @return bool
75 75
  */
76 76
 function strip_categorized_blog() {
77
-	$category_count = get_transient( 'strip_categories' );
77
+	$category_count = get_transient('strip_categories');
78 78
 
79
-	if ( false === $category_count ) {
79
+	if (false === $category_count) {
80 80
 		// Create an array of all the categories that are attached to posts.
81
-		$categories = get_categories( array(
81
+		$categories = get_categories(array(
82 82
 			'fields'     => 'ids',
83 83
 			'hide_empty' => 1,
84 84
 			// We only need to know if there is more than one category.
85 85
 			'number'     => 2,
86
-		) );
86
+		));
87 87
 
88 88
 		// Count the number of categories that are attached to the posts.
89
-		$category_count = count( $categories );
89
+		$category_count = count($categories);
90 90
 
91
-		set_transient( 'strip_categories', $category_count );
91
+		set_transient('strip_categories', $category_count);
92 92
 	}
93 93
 
94 94
 	// Allow viewing case of 0 or 1 categories in post preview.
95
-	if ( is_preview() ) {
95
+	if (is_preview()) {
96 96
 		return true;
97 97
 	}
98 98
 
@@ -103,16 +103,16 @@  discard block
 block discarded – undo
103 103
  * Flush out the transients used in strip_categorized_blog.
104 104
  */
105 105
 function strip_category_transient_flusher() {
106
-	if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
106
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
107 107
 		return;
108 108
 	}
109 109
 	// Like, beat it. Dig?
110
-	delete_transient( 'strip_categories' );
110
+	delete_transient('strip_categories');
111 111
 }
112
-add_action( 'edit_category', 'strip_category_transient_flusher' );
113
-add_action( 'save_post',     'strip_category_transient_flusher' );
112
+add_action('edit_category', 'strip_category_transient_flusher');
113
+add_action('save_post', 'strip_category_transient_flusher');
114 114
 
115
-if ( ! function_exists( 'strip_the_custom_logo' ) ) :
115
+if ( ! function_exists('strip_the_custom_logo')) :
116 116
 	/**
117 117
 	 * Displays the optional custom logo.
118 118
 	 *
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 	 * @since strip 1.0
122 122
 	 */
123 123
 	function strip_the_custom_logo() {
124
-		if ( function_exists( 'the_custom_logo' ) ) {
124
+		if (function_exists('the_custom_logo')) {
125 125
 			the_custom_logo();
126 126
 		}
127 127
 	}
@@ -131,13 +131,13 @@  discard block
 block discarded – undo
131 131
  * Display navigation to next/previous pages when applicable
132 132
  * TO DO clean up
133 133
  */
134
-if ( $wp_query->max_num_pages > 1 && ( is_home() || is_archive() || is_post_type_archive( 'comic' ) || is_search() ) ) : // navigation links for home, archive, and search pages
134
+if ($wp_query->max_num_pages > 1 && (is_home() || is_archive() || is_post_type_archive('comic') || is_search())) : // navigation links for home, archive, and search pages
135 135
 
136
-			the_posts_pagination( array(
137
-						'prev_text' => _x( '&#8592;', 'Previous page link', 'strip' ) . '<span class="screen-reader-text">' . __( 'Previous page', 'strip' ) . '</span>',
138
-						'next_text' => '<span class="screen-reader-text">' . __( 'Next page', 'strip' ) . '</span>' . _x( '&#8594;', 'Next post link', 'strip' ),
139
-						'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'strip' ) . ' </span>',
140
-					) ); 
136
+			the_posts_pagination(array(
137
+						'prev_text' => _x('&#8592;', 'Previous page link', 'strip') . '<span class="screen-reader-text">' . __('Previous page', 'strip') . '</span>',
138
+						'next_text' => '<span class="screen-reader-text">' . __('Next page', 'strip') . '</span>' . _x('&#8594;', 'Next post link', 'strip'),
139
+						'before_page_number' => '<span class="meta-nav screen-reader-text">' . __('Page', 'strip') . ' </span>',
140
+					)); 
141 141
 		 endif;
142 142
 
143 143
 /**
@@ -150,10 +150,10 @@  discard block
 block discarded – undo
150 150
  * @param string $taxonomy       Optional. Taxonomy, if $in_same_term is true. Default 'category'.
151 151
  * @return mixed Array containing the boundary post object if successful, null otherwise.
152 152
  */
153
-function get_comic_boundary_post( $in_same_term, $start, $taxonomy ) {
153
+function get_comic_boundary_post($in_same_term, $start, $taxonomy) {
154 154
 	global $post;
155
-	setup_postdata( $post );
156
-	if ( ! taxonomy_exists( $taxonomy ) ) {
155
+	setup_postdata($post);
156
+	if ( ! taxonomy_exists($taxonomy)) {
157 157
 		return null;
158 158
 	}
159 159
 
@@ -167,37 +167,37 @@  discard block
 block discarded – undo
167 167
 	);
168 168
 
169 169
 	$term_array = array();
170
-	if ( $in_same_term ) {
171
-		if ( $in_same_term ) {
172
-			$term_array = wp_get_object_terms( $post->ID, $taxonomy, array( 'fields' => 'ids' ) );
170
+	if ($in_same_term) {
171
+		if ($in_same_term) {
172
+			$term_array = wp_get_object_terms($post->ID, $taxonomy, array('fields' => 'ids'));
173 173
 		}
174
-		$query_args['tax_query'] = array( array(
174
+		$query_args['tax_query'] = array(array(
175 175
 			'taxonomy' => $taxonomy,
176
-			'terms' => array_merge( $term_array ),
176
+			'terms' => array_merge($term_array),
177 177
 		),
178 178
 		);
179 179
 	}
180 180
 
181 181
 	$get_posts = new wp_query;
182
-	return $get_posts -> query( $query_args );
182
+	return $get_posts -> query($query_args);
183 183
 }
184 184
 
185 185
 /**
186 186
  * Link to the first comic post in same term
187 187
  */
188 188
 function first_comic_link() {
189
-	$first = get_comic_boundary_post( true, true, 'story' );
190
-	apply_filters( 'the_title', $first[0]->post_title );
189
+	$first = get_comic_boundary_post(true, true, 'story');
190
+	apply_filters('the_title', $first[0]->post_title);
191 191
 
192
-	echo esc_html( get_permalink( $first[0]->ID ) );
192
+	echo esc_html(get_permalink($first[0]->ID));
193 193
 }
194 194
 
195 195
 /**
196 196
  * Link to the last comic post in same term
197 197
  */
198 198
 function last_comic_link() {
199
-	$last = get_comic_boundary_post( true, false, 'story' );
200
-	apply_filters( 'the_title', $last[0]->post_title );
199
+	$last = get_comic_boundary_post(true, false, 'story');
200
+	apply_filters('the_title', $last[0]->post_title);
201 201
 
202
-	echo esc_html( get_permalink( $last[0]->ID ) );
202
+	echo esc_html(get_permalink($last[0]->ID));
203 203
 }
Please login to merge, or discard this patch.
index.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -17,10 +17,10 @@  discard block
 block discarded – undo
17 17
 	<div id="primary" class="content-area">
18 18
 		<div id="content" class="site-content" role="main">
19 19
 
20
-		<?php if ( have_posts() ) : ?>
20
+		<?php if (have_posts()) : ?>
21 21
 
22 22
 	<?php /* Start the Loop */ ?>
23
-			<?php while ( have_posts() ) :
23
+			<?php while (have_posts()) :
24 24
 				the_post(); ?>
25 25
 
26 26
 				<?php
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 				* If you want to override this in a child theme, then include a file
32 32
 				* called content-___.php (where ___ is the Post Format name) and that will be used instead.
33 33
 				*/
34
-					get_template_part( 'content', get_post_format() );
34
+					get_template_part('content', get_post_format());
35 35
 				?>
36 36
 
37 37
 			<?php endwhile; ?>
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
 		<?php else : ?>
44 44
 
45
-			<?php get_template_part( 'no-results', 'index' ); ?>
45
+			<?php get_template_part('no-results', 'index'); ?>
46 46
 
47 47
 		<?php endif; ?>
48 48
 
Please login to merge, or discard this patch.
search.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -11,17 +11,17 @@  discard block
 block discarded – undo
11 11
 	<section id="primary"
12 12
 	<main id="content" role="main">
13 13
 
14
-		<?php if ( have_posts() ) : ?>
14
+		<?php if (have_posts()) : ?>
15 15
 
16 16
 			<header class="page-header">
17
-				<h1 class="page-title"><?php printf( esc_html__( 'Search Results for: %s', 'strip' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
17
+				<h1 class="page-title"><?php printf(esc_html__('Search Results for: %s', 'strip'), '<span>' . get_search_query() . '</span>'); ?></h1>
18 18
 			</header><!-- .page-header -->
19 19
 
20 20
 			<?php /* Start the Loop */ ?>
21
-			<?php while ( have_posts() ) :
21
+			<?php while (have_posts()) :
22 22
 				the_post();
23 23
 
24
-				get_template_part( 'content', get_post_format() );
24
+				get_template_part('content', get_post_format());
25 25
 
26 26
 			endwhile;
27 27
 
@@ -31,15 +31,15 @@  discard block
 block discarded – undo
31 31
 
32 32
 <article id="post-0" class="no-results">
33 33
 	<header class="page-header">
34
-		<h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'strip' ); ?></h1>
34
+		<h1 class="page-title"><?php esc_html_e('Nothing Found', 'strip'); ?></h1>
35 35
 	</header><!-- .page-header -->
36 36
 <div class="entry-content">
37
-			<p> <?php esc_html_e( 'Bummer, I cannot find what you are looking for.
38
-				Would you like to search in the', 'strip' ); ?>
37
+			<p> <?php esc_html_e('Bummer, I cannot find what you are looking for.
38
+				Would you like to search in the', 'strip'); ?>
39 39
 
40
-			<a href="<?php echo esc_url( get_post_type_archive_link( 'comic' ) ); ?>">Comics Archive</a>? Great stuff there.</p>
40
+			<a href="<?php echo esc_url(get_post_type_archive_link('comic')); ?>">Comics Archive</a>? Great stuff there.</p>
41 41
 
42
-			<p><?php esc_html_e( 'Or do you prefer trying another search with different keywords?', 'strip' ); ?></p>
42
+			<p><?php esc_html_e('Or do you prefer trying another search with different keywords?', 'strip'); ?></p>
43 43
 
44 44
 			<?php get_search_form(); ?>
45 45
 
Please login to merge, or discard this patch.