Completed
Push — master ( e9883c...2e8fb7 )
by SILENT
02:25
created
inc/custom-header.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,8 +30,8 @@
 block discarded – undo
30 30
 			'admin-preview-callback' => 'strip_admin_header_image',
31 31
 	) ) );
32 32
 	/**
33
- * Register default header image
34
- */
33
+	 * Register default header image
34
+	 */
35 35
 	register_default_headers( array(
36 36
 		'DefaultHeader' => array(
37 37
 		'url'  			=> get_template_directory_uri() . '/assets/images/Default-header.png',
Please login to merge, or discard this patch.
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
  * @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-width'             => true,
@@ -28,24 +28,24 @@  discard block
 block discarded – undo
28 28
 		'wp-head-callback'       => 'strip_header_style',
29 29
 		'admin-head-callback'    => 'strip_admin_header_style',
30 30
 			'admin-preview-callback' => 'strip_admin_header_image',
31
-	) ) );
31
+	)));
32 32
 	/**
33 33
  * Register default header image
34 34
  */
35
-	register_default_headers( array(
35
+	register_default_headers(array(
36 36
 		'DefaultHeader' => array(
37 37
 		'url'  			=> get_template_directory_uri() . '/assets/images/Default-header.png',
38 38
 		'thumbnail_url' => get_template_directory_uri() . '/assets/images/Default-header.png',
39
-		'description'   => _x( 'DefaultHeader', 'header image description', 'strip' ),
39
+		'description'   => _x('DefaultHeader', 'header image description', 'strip'),
40 40
 		),
41 41
 		)
42 42
 	);
43 43
 
44 44
 }
45 45
 
46
-add_action( 'after_setup_theme', 'strip_custom_header_setup' );
46
+add_action('after_setup_theme', 'strip_custom_header_setup');
47 47
 
48
-if ( ! function_exists( 'strip_header_style' ) ) :
48
+if ( ! function_exists('strip_header_style')) :
49 49
 	/**
50 50
 	 * Styles the header image and text displayed on the blog
51 51
 	 *
@@ -57,34 +57,34 @@  discard block
 block discarded – undo
57 57
 		  $header_text_color = get_header_textcolor();
58 58
 
59 59
 			/* Header image. */
60
-		$header_image = esc_url( get_header_image() );
60
+		$header_image = esc_url(get_header_image());
61 61
 
62 62
 		/* Start header styles. */
63 63
 		$style = '';
64 64
 
65 65
 		/* When to show header image. */
66
-		$min_width = absint( apply_filters( 'strip_header_bg_show', 1 ) );
66
+		$min_width = absint(apply_filters('strip_header_bg_show', 1));
67 67
 
68 68
 		/* Background arguments. */
69
-		$background_arguments = esc_attr( apply_filters( 'strip_header_bg_arguments', 'no-repeat 50% 50%' ) );
69
+		$background_arguments = esc_attr(apply_filters('strip_header_bg_arguments', 'no-repeat 50% 50%'));
70 70
 
71
-		if ( ! empty( $header_image ) ) {
71
+		if ( ! empty($header_image)) {
72 72
 			$style .= "@media screen and (min-width: {$min_width}px) { body.custom-header-image .site-header { background: url({$header_image}) {$background_arguments}; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } }";
73 73
 		}
74 74
 
75 75
 		/* Site title styles. */
76
-		if ( display_header_text() ) {
76
+		if (display_header_text()) {
77 77
 			$style .= ".site-title, .site-title a, .site-description, .site-description a { color: #{$header_text_color} }";
78 78
 			$style .= ".site-title { border-color: #{$header_text_color} }";
79 79
 		}
80 80
 
81
-		if ( ! display_header_text() ) {
81
+		if ( ! display_header_text()) {
82 82
 			$style .= '.site-title, .site-title a, .site-description, .site-description a { clip: rect(1px, 1px, 1px, 1px); position: absolute; }';
83 83
 		}
84 84
 
85 85
 		/* Echo styles if it's not empty. */
86
-		if ( ! empty( $style ) ) {
87
-			echo "\n" . '<style type="text/css" id="custom-header-css">' . esc_attr( trim( $style ) ) . '</style>' . "\n";
86
+		if ( ! empty($style)) {
87
+			echo "\n" . '<style type="text/css" id="custom-header-css">' . esc_attr(trim($style)) . '</style>' . "\n";
88 88
 		}
89 89
 
90 90
 	}
Please login to merge, or discard this patch.
single.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,15 +13,15 @@
 block discarded – undo
13 13
 		<section id="primary">
14 14
 			<main id="content" role="main">
15 15
 
16
-		<?php while ( have_posts() ) : the_post(); ?>
16
+		<?php while (have_posts()) : the_post(); ?>
17 17
 
18
-			<?php get_template_part( 'content', get_post_format() ); ?>
18
+			<?php get_template_part('content', get_post_format()); ?>
19 19
 
20
-			<?php strip_content_nav( 'nav-below' ); ?>
20
+			<?php strip_content_nav('nav-below'); ?>
21 21
 
22 22
 			<?php
23 23
 				// If comments are open or we have at least one comment, load up the comment template.
24
-			if ( comments_open() || '0' !== get_comments_number() ) :
24
+			if (comments_open() || '0' !== get_comments_number()) :
25 25
 				comments_template();
26 26
 			endif; ?>
27 27
 
Please login to merge, or discard this patch.
search.php 2 patches
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -11,39 +11,39 @@
 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
 
28
-			the_posts_pagination( array(
29
-				'prev_text' => _x( '&#8592;', 'Previous page link', 'strip' ) . '<span class="screen-reader-text">' . __( 'Previous page', 'strip' ) . '</span>',
30
-				'next_text' => '<span class="screen-reader-text">' . __( 'Next page', 'strip' ) . '</span>' . _x( '&#8594;', 'Next post link', 'strip' ),
31
-				'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'strip' ) . ' </span>',
32
-			) );
28
+			the_posts_pagination(array(
29
+				'prev_text' => _x('&#8592;', 'Previous page link', 'strip') . '<span class="screen-reader-text">' . __('Previous page', 'strip') . '</span>',
30
+				'next_text' => '<span class="screen-reader-text">' . __('Next page', 'strip') . '</span>' . _x('&#8594;', 'Next post link', 'strip'),
31
+				'before_page_number' => '<span class="meta-nav screen-reader-text">' . __('Page', 'strip') . ' </span>',
32
+			));
33 33
 
34 34
 		else : ?>
35 35
 
36 36
 <article id="post-0" class="no-results">
37 37
 	<header class="page-header">
38
-		<h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'strip' ); ?></h1>
38
+		<h1 class="page-title"><?php esc_html_e('Nothing Found', 'strip'); ?></h1>
39 39
 	</header><!-- .page-header -->
40 40
 <div class="entry-content">
41
-			<p> <?php esc_html_e( 'Bummer, I cannot find what you are looking for.
42
-				Would you like to search in the', 'strip' ); ?>
41
+			<p> <?php esc_html_e('Bummer, I cannot find what you are looking for.
42
+				Would you like to search in the', 'strip'); ?>
43 43
 
44
-			<a href="<?php echo esc_url( get_post_type_archive_link( 'comic' ) ); ?>">Comics Archive</a>? Great stuff there.</p>
44
+			<a href="<?php echo esc_url(get_post_type_archive_link('comic')); ?>">Comics Archive</a>? Great stuff there.</p>
45 45
 
46
-			<p><?php esc_html_e( 'Or do you prefer trying another search with different keywords?', 'strip' ); ?></p>
46
+			<p><?php esc_html_e('Or do you prefer trying another search with different keywords?', 'strip'); ?></p>
47 47
 
48 48
 			<?php get_search_form(); ?>
49 49
 
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,11 +31,14 @@
 block discarded – undo
31 31
 				'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'strip' ) . ' </span>',
32 32
 			) );
33 33
 
34
-		else : ?>
34
+		else {
35
+			: ?>
35 36
 
36 37
 <article id="post-0" class="no-results">
37 38
 	<header class="page-header">
38
-		<h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'strip' ); ?></h1>
39
+		<h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'strip' );
40
+		}
41
+		?></h1>
39 42
 	</header><!-- .page-header -->
40 43
 <div class="entry-content">
41 44
 			<p> <?php esc_html_e( 'Bummer, I cannot find what you are looking for.
Please login to merge, or discard this patch.
index.php 2 patches
Spacing   +9 added lines, -9 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,22 +31,22 @@  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; ?>
38 38
 
39 39
 			<div class="wrap">
40
-					<?php the_posts_pagination( array(
41
-						'prev_text' => _x( '&#8592;', 'Previous page link', 'strip' ) . '<span class="screen-reader-text">' . __( 'Previous page', 'strip' ) . '</span>',
42
-						'next_text' => '<span class="screen-reader-text">' . __( 'Next page', 'strip' ) . '</span>' . _x( '&#8594;', 'Next post link', 'strip' ),
43
-						'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'strip' ) . ' </span>',
44
-					) ); ?>
40
+					<?php the_posts_pagination(array(
41
+						'prev_text' => _x('&#8592;', 'Previous page link', 'strip') . '<span class="screen-reader-text">' . __('Previous page', 'strip') . '</span>',
42
+						'next_text' => '<span class="screen-reader-text">' . __('Next page', 'strip') . '</span>' . _x('&#8594;', 'Next post link', 'strip'),
43
+						'before_page_number' => '<span class="meta-nav screen-reader-text">' . __('Page', 'strip') . ' </span>',
44
+					)); ?>
45 45
 	</div>
46 46
 
47 47
 		<?php else : ?>
48 48
 
49
-			<?php get_template_part( 'no-results', 'index' ); ?>
49
+			<?php get_template_part('no-results', 'index'); ?>
50 50
 
51 51
 		<?php endif; ?>
52 52
 
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,9 +44,12 @@
 block discarded – undo
44 44
 					) ); ?>
45 45
 	</div>
46 46
 
47
-		<?php else : ?>
47
+		<?php else {
48
+	: ?>
48 49
 
49
-			<?php get_template_part( 'no-results', 'index' ); ?>
50
+			<?php get_template_part( 'no-results', 'index' );
51
+}
52
+?>
50 53
 
51 54
 		<?php endif; ?>
52 55
 
Please login to merge, or discard this patch.
archive.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -14,19 +14,19 @@  discard block
 block discarded – undo
14 14
 	<main id="main" class="site-main" role="main">
15 15
 
16 16
 	<?php
17
-	if ( have_posts() ) : ?>
17
+	if (have_posts()) : ?>
18 18
 
19 19
 		<header class="page-header">
20 20
 			<div class="wrap">
21 21
 			<?php
22
-				the_archive_title( '<h1 class="page-title">', '</h1>' );
23
-				the_archive_description( '<div class="taxonomy-description">', '</div>' );
22
+				the_archive_title('<h1 class="page-title">', '</h1>');
23
+				the_archive_description('<div class="taxonomy-description">', '</div>');
24 24
 			?>
25 25
 				</div><!-- .wrap -->
26 26
 			</header><!-- .page-header -->
27 27
 
28 28
 			<?php /* Start the Loop */ ?>
29
-			<?php while ( have_posts() ) : the_post(); ?>
29
+			<?php while (have_posts()) : the_post(); ?>
30 30
 
31 31
 				<?php
32 32
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 					 * If you want to overload this in a child theme then include a file
36 36
 					 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
37 37
 					 */
38
-					get_template_part( 'content', get_post_format() );
38
+					get_template_part('content', get_post_format());
39 39
 				?>
40 40
 
41 41
 			<?php endwhile; ?>
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
 		<?php else : ?>
48 48
 
49
-			<?php get_template_part( 'no-results', 'archive' ); ?>
49
+			<?php get_template_part('no-results', 'archive'); ?>
50 50
 
51 51
 		<?php endif; ?>
52 52
 
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,9 +44,12 @@
 block discarded – undo
44 44
 					<?php the_posts_pagination(); ?>
45 45
 	</div>
46 46
 
47
-		<?php else : ?>
47
+		<?php else {
48
+	: ?>
48 49
 
49
-			<?php get_template_part( 'no-results', 'archive' ); ?>
50
+			<?php get_template_part( 'no-results', 'archive' );
51
+}
52
+?>
50 53
 
51 54
 		<?php endif; ?>
52 55
 
Please login to merge, or discard this patch.
inc/extras.php 1 patch
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -14,30 +14,30 @@  discard block
 block discarded – undo
14 14
  * @param array $classes group-blog.
15 15
  * @return array
16 16
  */
17
-function strip_body_classes( $classes ) {
17
+function strip_body_classes($classes) {
18 18
 	// Adds a class of group-blog to blogs with more than 1 published author.
19
-	if ( is_multi_author() ) {
19
+	if (is_multi_author()) {
20 20
 		$classes[] = 'group-blog';
21 21
 	}
22 22
 
23 23
 	return $classes;
24 24
 }
25
-add_filter( 'body_class', 'strip_body_classes' );
25
+add_filter('body_class', 'strip_body_classes');
26 26
 
27 27
 /**
28 28
  * Disable emojis introduced in WordPress 4.2.
29 29
  */
30 30
 function disable_emojis() {
31
-	remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
32
-	remove_action( 'admin_print_scripts', 'print_emoji_detection_script' );
33
-	remove_action( 'wp_print_styles', 'print_emoji_styles' );
34
-	remove_action( 'admin_print_styles', 'print_emoji_styles' );
35
-	remove_filter( 'the_content_feed', 'wp_staticize_emoji' );
36
-	remove_filter( 'comment_text_rss', 'wp_staticize_emoji' );
37
-	remove_filter( 'wp_mail', 'wp_staticize_emoji_for_email' );
38
-	add_filter( 'tiny_mce_plugins', 'disable_emojis_tinymce' );
39
-	add_filter( 'wp_resource_hints', 'disable_emojis_remove_dns_prefetch', 10, 2 );
40
-} add_action( 'init', 'disable_emojis' );
31
+	remove_action('wp_head', 'print_emoji_detection_script', 7);
32
+	remove_action('admin_print_scripts', 'print_emoji_detection_script');
33
+	remove_action('wp_print_styles', 'print_emoji_styles');
34
+	remove_action('admin_print_styles', 'print_emoji_styles');
35
+	remove_filter('the_content_feed', 'wp_staticize_emoji');
36
+	remove_filter('comment_text_rss', 'wp_staticize_emoji');
37
+	remove_filter('wp_mail', 'wp_staticize_emoji_for_email');
38
+	add_filter('tiny_mce_plugins', 'disable_emojis_tinymce');
39
+	add_filter('wp_resource_hints', 'disable_emojis_remove_dns_prefetch', 10, 2);
40
+} add_action('init', 'disable_emojis');
41 41
 
42 42
 /**
43 43
  * Filter function used to remove the tinymce emoji plugin.
@@ -45,9 +45,9 @@  discard block
 block discarded – undo
45 45
  * @param array $plugins disable_emojis_tinymce.
46 46
  * @return array Difference betwen the two arrays.
47 47
  */
48
-function disable_emojis_tinymce( $plugins ) {
49
-	if ( is_array( $plugins ) ) {
50
-		return array_diff( $plugins, array( 'wpemoji' ) );
48
+function disable_emojis_tinymce($plugins) {
49
+	if (is_array($plugins)) {
50
+		return array_diff($plugins, array('wpemoji'));
51 51
 	} return array();
52 52
 }
53 53
 	/**
@@ -57,9 +57,9 @@  discard block
 block discarded – undo
57 57
 	 * @param string $relation_type The relation type the URLs are printed for.
58 58
 	 * @return array Difference betwen the two arrays.
59 59
 	 */
60
-function disable_emojis_remove_dns_prefetch( $urls, $relation_type ) {
61
-	if ( 'dns-prefetch' !== $relation_type ) { /** This filter is documented in wp-includes/formatting.php */
62
-		$emoji_svg_url = apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/2/svg/' );
63
-		$urls = array_diff( $urls, array( $emoji_svg_url ) );
60
+function disable_emojis_remove_dns_prefetch($urls, $relation_type) {
61
+	if ('dns-prefetch' !== $relation_type) { /** This filter is documented in wp-includes/formatting.php */
62
+		$emoji_svg_url = apply_filters('emoji_svg_url', 'https://s.w.org/images/core/emoji/2/svg/');
63
+		$urls = array_diff($urls, array($emoji_svg_url));
64 64
 	}
65 65
 	return $urls; }
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 -->
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 -->
@@ -67,4 +67,4 @@  discard block
 block discarded – undo
67 67
 		</div><!-- #content -->
68 68
 	</div><!-- #primary -->
69 69
 
70
-<?php get_footer( 'lite' ); ?>
70
+<?php get_footer('lite'); ?>
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
@@ -82,8 +82,8 @@  discard block
 block discarded – undo
82 82
 		add_filter( 'the_content', 'filter_ptags_on_images' );
83 83
 
84 84
 		/**
85
-	 	* This theme uses wp_nav_menu() in one location.
86
-	 	*/
85
+		 * This theme uses wp_nav_menu() in one location.
86
+		 */
87 87
 		register_nav_menus(array(
88 88
 			'primary' => __( 'Primary Menu', 'strip' ),
89 89
 		));
@@ -102,8 +102,8 @@  discard block
 block discarded – undo
102 102
 		) );
103 103
 
104 104
 		/**
105
-	 * Enable support for Post Formats
106
-	 */
105
+		 * Enable support for Post Formats
106
+		 */
107 107
 		add_theme_support( 'post-formats', array(
108 108
 			'image',
109 109
 			'video',
@@ -180,9 +180,9 @@  discard block
 block discarded – undo
180 180
 
181 181
 
182 182
 	/**
183
-	* This theme styles the visual editor to resemble the theme style,
184
-	* specifically font, colors, icons, and column width.
185
-	*/
183
+	 * This theme styles the visual editor to resemble the theme style,
184
+	 * specifically font, colors, icons, and column width.
185
+	 */
186 186
 	add_editor_style( array( '/assets/css/editor-style.css', '/assets/fonts/fenix.css' ) );
187 187
 
188 188
 	// Indicate widget sidebars can use selective refresh in the Customizer.
Please login to merge, or discard this patch.
Spacing   +225 added lines, -225 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, 960, true );
68
-		add_image_size( 'strip-large', 1920, 960, 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, 960, true);
68
+		add_image_size('strip-large', 1920, 960, 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
 		/**
73 73
 		 * Remove paragraph tags around images.
@@ -77,35 +77,35 @@  discard block
 block discarded – undo
77 77
 		 * @link https://css-tricks.com/snippets/wordpress/remove-paragraph-tags-from-around-images/
78 78
 		 * @see http://codex.wordpress.org/Function_Reference/wpautop gets the same result but removes line blocks: remove_filter( 'the_content', 'wpautop' );
79 79
 		 */
80
-		function filter_ptags_on_images( $content ) {
81
-			return preg_replace( '/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $content );
80
+		function filter_ptags_on_images($content) {
81
+			return preg_replace('/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $content);
82 82
 		}
83
-		add_filter( 'the_content', 'filter_ptags_on_images' );
83
+		add_filter('the_content', 'filter_ptags_on_images');
84 84
 
85 85
 		/**
86 86
 	 	* This theme uses wp_nav_menu() in one location.
87 87
 	 	*/
88 88
 		register_nav_menus(array(
89
-			'primary' => __( 'Primary Menu', 'strip' ),
89
+			'primary' => __('Primary Menu', 'strip'),
90 90
 		));
91 91
 
92 92
 		/*
93 93
 		* Switch default core markup for search form, comment form, and comments
94 94
 		* to output valid HTML5.
95 95
 		*/
96
-		add_theme_support( 'html5', array(
96
+		add_theme_support('html5', array(
97 97
 			'search-form',
98 98
 			'comment-form',
99 99
 			'comment-list',
100 100
 			'gallery',
101 101
 			'caption',
102 102
 			'widgets',
103
-		) );
103
+		));
104 104
 
105 105
 		/**
106 106
 	 * Enable support for Post Formats
107 107
 	 */
108
-		add_theme_support( 'post-formats', array(
108
+		add_theme_support('post-formats', array(
109 109
 			'image',
110 110
 			'video',
111 111
 			'quote',
@@ -113,13 +113,13 @@  discard block
 block discarded – undo
113 113
 			'gallery',
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(
120 120
 			'default-color' => 'ffffff',
121 121
 			'default-image' => '',
122
-		) ) );
122
+		)));
123 123
 	}
124 124
 
125 125
 	/**
@@ -129,22 +129,22 @@  discard block
 block discarded – undo
129 129
 	 * @link: http://cubiq.org/clean-up-and-optimize-wordpress-for-your-next-theme
130 130
 	 */
131 131
 	function strip_cleanup() {
132
-			remove_action( 'wp_head', 'wp_generator' );					// WP Version.
133
-			remove_action( 'wp_head', 'wlwmanifest_link' );
134
-			remove_action( 'wp_head', 'rsd_link' );
135
-			remove_action( 'wp_head', 'rel_canonical', 10, 0 );
136
-			remove_action( 'wp_head', 'wp_shortlink_wp_head', 10, 0 );
132
+			remove_action('wp_head', 'wp_generator'); // WP Version.
133
+			remove_action('wp_head', 'wlwmanifest_link');
134
+			remove_action('wp_head', 'rsd_link');
135
+			remove_action('wp_head', 'rel_canonical', 10, 0);
136
+			remove_action('wp_head', 'wp_shortlink_wp_head', 10, 0);
137 137
 
138
-			remove_action( 'wp_head', 'parent_post_rel_link', 10, 0 );// Parent rel link.
139
-			remove_action( 'wp_head', 'start_post_rel_link', 10, 0 );	// Start post rel link.
140
-			remove_action( 'wp_head', 'index_rel_link' );
138
+			remove_action('wp_head', 'parent_post_rel_link', 10, 0); // Parent rel link.
139
+			remove_action('wp_head', 'start_post_rel_link', 10, 0); // Start post rel link.
140
+			remove_action('wp_head', 'index_rel_link');
141 141
 
142
-			remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0 ); // Adjacent post rel link.
142
+			remove_action('wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0); // Adjacent post rel link.
143 143
 
144
-			add_filter( 'the_generator', '__return_false' );
144
+			add_filter('the_generator', '__return_false');
145 145
 
146
-			remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
147
-			remove_action( 'wp_print_styles', 'print_emoji_styles' );
146
+			remove_action('wp_head', 'print_emoji_detection_script', 7);
147
+			remove_action('wp_print_styles', 'print_emoji_styles');
148 148
 	}
149 149
 	/**
150 150
 	 * Cleanup head remove rss version
@@ -160,8 +160,8 @@  discard block
 block discarded – undo
160 160
 	 * @param array $headers remove x pingback.
161 161
 	 * @since    1.1.3
162 162
 	 */
163
-	function strip_remove_x_pingback( $headers ) {
164
-		unset( $headers['X-Pingback'] );
163
+	function strip_remove_x_pingback($headers) {
164
+		unset($headers['X-Pingback']);
165 165
 		return $headers;
166 166
 	}
167 167
 
@@ -172,11 +172,11 @@  discard block
 block discarded – undo
172 172
 	 */
173 173
 	function strip_remove_comments_inline_styles() {
174 174
 		global $wp_widget_factory;
175
-		if ( has_filter( 'wp_head', 'wp_widget_recent_comments_style' ) ) {
176
-			remove_filter( 'wp_head', 'wp_widget_recent_comments_style' );
175
+		if (has_filter('wp_head', 'wp_widget_recent_comments_style')) {
176
+			remove_filter('wp_head', 'wp_widget_recent_comments_style');
177 177
 		}
178 178
 
179
-		remove_action( 'wp_head', array( $wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 'recent_comments_style' ) );
179
+		remove_action('wp_head', array($wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 'recent_comments_style'));
180 180
 	}
181 181
 
182 182
 
@@ -184,22 +184,22 @@  discard block
 block discarded – undo
184 184
 	* This theme styles the visual editor to resemble the theme style,
185 185
 	* specifically font, colors, icons, and column width.
186 186
 	*/
187
-	add_editor_style( array( '/assets/css/editor-style.css', '/assets/fonts/fenix.css' ) );
187
+	add_editor_style(array('/assets/css/editor-style.css', '/assets/fonts/fenix.css'));
188 188
 
189 189
 	// Indicate widget sidebars can use selective refresh in the Customizer.
190 190
 	// See https://make.wordpress.org/core/2016/03/22/implementing-selective-refresh-support-for-widgets/ for detail.
191
-	add_theme_support( 'customize-selective-refresh-widgets' );
191
+	add_theme_support('customize-selective-refresh-widgets');
192 192
 endif; // strip_setup.
193
-add_action( 'after_setup_theme', 'strip_setup' );
193
+add_action('after_setup_theme', 'strip_setup');
194 194
 
195 195
 /**
196 196
  * Register widgetized area and update sidebar with default widgets
197 197
  */
198 198
 function strip_widgets_init() {
199 199
 	register_sidebar(array(
200
-		'name'          => __( 'Main Sidebar', 'strip' ),
200
+		'name'          => __('Main Sidebar', 'strip'),
201 201
 		'id'            => 'sidebar',
202
-		'description'   => __( 'The main body widget area', 'strip' ),
202
+		'description'   => __('The main body widget area', 'strip'),
203 203
 		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
204 204
 		'after_widget'	=> '</aside>',
205 205
 		'before_title'	=> '<h2 class="widget-title">',
@@ -207,10 +207,10 @@  discard block
 block discarded – undo
207 207
 	));
208 208
 
209 209
 	// First footer widget area, located in the footer. Empty by default.
210
-	register_sidebar( array(
211
-		'name'          => __( 'First Footer Widget', 'strip' ),
210
+	register_sidebar(array(
211
+		'name'          => __('First Footer Widget', 'strip'),
212 212
 		'id'            => 'first-footer-widget',
213
-		'description'   => __( 'The first footer widget', 'strip' ),
213
+		'description'   => __('The first footer widget', 'strip'),
214 214
 		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
215 215
 		'after_widget'	=> '</aside>',
216 216
 		'before_title'	=> '<h3 class="widget-title">',
@@ -219,9 +219,9 @@  discard block
 block discarded – undo
219 219
 
220 220
 	// Second Footer Widget Area, located in the footer. Empty by default.
221 221
 	register_sidebar(array(
222
-		'name'          => __( 'Second Footer Widget', 'strip' ),
222
+		'name'          => __('Second Footer Widget', 'strip'),
223 223
 		'id'            => 'second-footer-widget',
224
-		'description'   => __( 'The second footer widget', 'strip' ),
224
+		'description'   => __('The second footer widget', 'strip'),
225 225
 		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
226 226
 		'after_widget'	=> '</aside>',
227 227
 		'before_title'	=> '<h3 class="widget-title">',
@@ -230,9 +230,9 @@  discard block
 block discarded – undo
230 230
 
231 231
 	// Third Footer Widget Area, located in the footer. Empty by default.
232 232
 	register_sidebar(array(
233
-		'name'          => __( 'Third Footer Widget', 'strip' ),
233
+		'name'          => __('Third Footer Widget', 'strip'),
234 234
 		'id'            => 'third-footer-widget',
235
-		'description'   => __( 'The third footer widget', 'strip' ),
235
+		'description'   => __('The third footer widget', 'strip'),
236 236
 		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
237 237
 		'after_widget'	=> '</aside>',
238 238
 		'before_title'	=> '<h3 class="widget-title">',
@@ -241,9 +241,9 @@  discard block
 block discarded – undo
241 241
 
242 242
 	// Fourth Footer Widget Area, located in the footer. Empty by default.
243 243
 	register_sidebar(array(
244
-		'name'           => __( 'Fourth Footer Widget', 'strip' ),
244
+		'name'           => __('Fourth Footer Widget', 'strip'),
245 245
 		'id'             => 'fourth-footer-widget',
246
-		'description'    => __( 'The fourth footer widget', 'strip' ),
246
+		'description'    => __('The fourth footer widget', 'strip'),
247 247
 		'before_widget'  => '<aside id="%1$s" class="widget %2$s">',
248 248
 		'after_widget'	 => '</aside>',
249 249
 		'before_title'	 => '<h3 class="widget-title">',
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
 	));
252 252
 
253 253
 }
254
-add_action( 'widgets_init', 'strip_widgets_init' );
254
+add_action('widgets_init', 'strip_widgets_init');
255 255
 
256 256
 /**
257 257
  * Handles JavaScript detection.
@@ -263,47 +263,47 @@  discard block
 block discarded – undo
263 263
 function strip_javascript_detection() {
264 264
 	echo "<script>(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);</script>\n";
265 265
 }
266
-add_action( 'wp_head', 'strip_javascript_detection', 0 );
266
+add_action('wp_head', 'strip_javascript_detection', 0);
267 267
 
268 268
 /**
269 269
  * Enqueue_styles for custom fonts.
270 270
  */
271 271
 function strip_scripts() {
272 272
 	// add custom font here if any.
273
-	wp_enqueue_style( 'fenix', get_template_directory_uri() . '/assets/fonts/fenix.css', array(), null );
273
+	wp_enqueue_style('fenix', get_template_directory_uri() . '/assets/fonts/fenix.css', array(), null);
274 274
 
275
-	wp_enqueue_style( 'inconsolata', get_template_directory_uri() . '/assets/fonts/inconsolata.css', array(), null );
275
+	wp_enqueue_style('inconsolata', get_template_directory_uri() . '/assets/fonts/inconsolata.css', array(), null);
276 276
 
277 277
 	// Theme stylesheet.
278
-	wp_enqueue_style( 'strip-style', get_stylesheet_uri() );
278
+	wp_enqueue_style('strip-style', get_stylesheet_uri());
279 279
 
280 280
 	// Load the Internet Explorer specific stylesheet. Conditional stylesheet — tested and works with IE9 on Windows7.
281
-	wp_enqueue_style( 'strip-ie', get_template_directory_uri() . 'assets/css/ie.css', array( 'strip-style' ), '20160305' );
282
-	wp_style_add_data( 'strip-ie', 'conditional', 'lt IE 10' );
281
+	wp_enqueue_style('strip-ie', get_template_directory_uri() . 'assets/css/ie.css', array('strip-style'), '20160305');
282
+	wp_style_add_data('strip-ie', 'conditional', 'lt IE 10');
283 283
 
284
-	if ( has_nav_menu( 'primary' ) ) {
285
-		wp_enqueue_script( 'strip-navigation', get_template_directory_uri() . '/assets/js/min/navigation-min.js', array(), '1.0', true );
284
+	if (has_nav_menu('primary')) {
285
+		wp_enqueue_script('strip-navigation', get_template_directory_uri() . '/assets/js/min/navigation-min.js', array(), '1.0', true);
286 286
 	}
287 287
 
288 288
 	// Load the html5 shiv.
289
-	wp_enqueue_script( 'strip-html5', get_template_directory_uri() . '/assets/js/min/html5-min.js', array(), '3.7.3' );
290
-	wp_script_add_data( 'strip-html5', 'conditional', 'lt IE 9' );
289
+	wp_enqueue_script('strip-html5', get_template_directory_uri() . '/assets/js/min/html5-min.js', array(), '3.7.3');
290
+	wp_script_add_data('strip-html5', 'conditional', 'lt IE 9');
291 291
 
292
-	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 );
292
+	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);
293 293
 
294 294
 	// toggle comments js.
295
-	wp_enqueue_script( 'strip-toggle-comments', get_template_directory_uri() . '/assets/js/min/toggle-comments-min.js', array( 'jquery' ), '1.2', true );
295
+	wp_enqueue_script('strip-toggle-comments', get_template_directory_uri() . '/assets/js/min/toggle-comments-min.js', array('jquery'), '1.2', true);
296 296
 
297
-	if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
298
-		wp_enqueue_script( 'comment-reply' );
297
+	if (is_singular() && comments_open() && get_option('thread_comments')) {
298
+		wp_enqueue_script('comment-reply');
299 299
 
300
-		if ( is_single() && wp_attachment_is_image() ) {
301
-			wp_enqueue_script( 'strip-keyboard-image-navigation', get_template_directory_uri() . '/assets/js/min/keyboard-image-navigation-min.js', array( 'jquery' ), '20160412', true );
300
+		if (is_single() && wp_attachment_is_image()) {
301
+			wp_enqueue_script('strip-keyboard-image-navigation', get_template_directory_uri() . '/assets/js/min/keyboard-image-navigation-min.js', array('jquery'), '20160412', true);
302 302
 		}
303 303
 	}
304 304
 }
305 305
 
306
-add_action( 'wp_enqueue_scripts', 'strip_scripts' );
306
+add_action('wp_enqueue_scripts', 'strip_scripts');
307 307
 
308 308
 /**
309 309
  * Implement the Custom Header feature.
@@ -330,14 +330,14 @@  discard block
 block discarded – undo
330 330
  */
331 331
 require get_template_directory() . '/inc/jetpack.php';
332 332
 
333
-add_action( 'wp_enqueue_scripts', 'enqueue_royal_sliders' );
333
+add_action('wp_enqueue_scripts', 'enqueue_royal_sliders');
334 334
 /**
335 335
  * Register RoyalSLider
336 336
  */
337 337
 function enqueue_royal_sliders() {
338
-	if ( function_exists( 'register_new_royalslider_files' ) ) {
338
+	if (function_exists('register_new_royalslider_files')) {
339 339
 		// you could try this: if ( is_single() && is_archive() ) { but you don't really need it.
340
-			register_new_royalslider_files( 1 ); // place register_new_royalslider_files function here, 1 is your slider's configuration number
340
+			register_new_royalslider_files(1); // place register_new_royalslider_files function here, 1 is your slider's configuration number
341 341
 		// add } if use is_single etc.
342 342
 	}
343 343
 }
@@ -352,22 +352,22 @@  discard block
 block discarded – undo
352 352
 function get_first_image() {
353 353
 	global $post;
354 354
 	$first_img = '';
355
-	preg_match_all( '/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', do_shortcode( $post->post_content, 'gallery' ), $matches );
356
-	  $first_img = isset( $matches[1][0] ) ? $matches[1][0] : null;
355
+	preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', do_shortcode($post->post_content, 'gallery'), $matches);
356
+	  $first_img = isset($matches[1][0]) ? $matches[1][0] : null;
357 357
 
358
-	if ( empty( $first_img ) ) {
358
+	if (empty($first_img)) {
359 359
 			return get_template_directory_uri() . '/assets/images/empty.png'; // path to default image.
360 360
 	}
361 361
 
362 362
 		// Now we have the $first_img but we want the thumbnail of that image.
363
-		$explode = explode( '.', $first_img );
364
-		$count = count( $explode );
363
+		$explode = explode('.', $first_img);
364
+		$count = count($explode);
365 365
 		$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.
366
-		$explode[ $count -2 ] = $explode[ $count -2 ] . '' . $size;
367
-		$thumb_img = implode( '.', $explode );
366
+		$explode[$count - 2] = $explode[$count - 2] . '' . $size;
367
+		$thumb_img = implode('.', $explode);
368 368
 		return $thumb_img;
369 369
 }
370
-	add_filter( 'get_first_image', 'thumbnail' );
370
+	add_filter('get_first_image', 'thumbnail');
371 371
 
372 372
 /**
373 373
  * Register Custom Post Type for comics
@@ -375,24 +375,24 @@  discard block
 block discarded – undo
375 375
 function comic_post_type() {
376 376
 
377 377
 	$labels = array(
378
-		'name'                       => _x( 'Comics', 'Post Type General Name', 'strip' ),
379
-		'singular_name'              => _x( 'Comic', 'Post Type Singular Name', 'strip' ),
380
-		'menu_name'                  => _x( 'Comics', 'admin menu', 'strip' ),
381
-		'name_admin_bar'             => _x( 'Comic', 'add new on admin bar', 'strip' ),
382
-		'parent_item_colon'	         => __( 'Parent Comic:', 'strip' ),
383
-		'all_items'                  => __( 'All Comics', 'strip' ),
384
-		'add_new_item'               => __( 'Add New Comic', 'strip' ),
385
-		'add_new'                    => __( 'Add New Comic', 'strip' ),
386
-		'new_item'                   => __( 'New Comic', 'strip' ),
387
-		'edit_item'                  => __( 'Edit Comic', 'strip' ),
388
-		'update_item'                => __( 'Update Comic', 'strip' ),
389
-		'view_item'                  => __( 'View Comic', 'strip' ),
390
-		'search_items'               => __( 'Search Item', 'strip' ),
391
-		'not_found'                  => __( 'No Comics found', 'strip' ),
392
-		'not_found_in_trash'         => __( 'No Comics found in Trash', 'strip' ),
393
-		'items_list'                 => __( 'Comics list', 'strip' ),
394
-		'items_list_navigation'      => __( 'Comics list navigation', 'strip' ),
395
-		'filter_items_list'          => __( 'Filter Comics list', 'strip' ),
378
+		'name'                       => _x('Comics', 'Post Type General Name', 'strip'),
379
+		'singular_name'              => _x('Comic', 'Post Type Singular Name', 'strip'),
380
+		'menu_name'                  => _x('Comics', 'admin menu', 'strip'),
381
+		'name_admin_bar'             => _x('Comic', 'add new on admin bar', 'strip'),
382
+		'parent_item_colon'	         => __('Parent Comic:', 'strip'),
383
+		'all_items'                  => __('All Comics', 'strip'),
384
+		'add_new_item'               => __('Add New Comic', 'strip'),
385
+		'add_new'                    => __('Add New Comic', 'strip'),
386
+		'new_item'                   => __('New Comic', 'strip'),
387
+		'edit_item'                  => __('Edit Comic', 'strip'),
388
+		'update_item'                => __('Update Comic', 'strip'),
389
+		'view_item'                  => __('View Comic', 'strip'),
390
+		'search_items'               => __('Search Item', 'strip'),
391
+		'not_found'                  => __('No Comics found', 'strip'),
392
+		'not_found_in_trash'         => __('No Comics found in Trash', 'strip'),
393
+		'items_list'                 => __('Comics list', 'strip'),
394
+		'items_list_navigation'      => __('Comics list navigation', 'strip'),
395
+		'filter_items_list'          => __('Filter Comics list', 'strip'),
396 396
 	);
397 397
 
398 398
 	$supports = array(
@@ -409,11 +409,11 @@  discard block
 block discarded – undo
409 409
 	);
410 410
 
411 411
 	$args = array(
412
-		'label'                      => __( 'Comic', 'strip' ),
413
-		'description'                => __( 'Publish Comics and Webcomics', 'strip' ),
412
+		'label'                      => __('Comic', 'strip'),
413
+		'description'                => __('Publish Comics and Webcomics', 'strip'),
414 414
 		'labels'                     => $labels,
415 415
 		'supports'                   => $supports,
416
-		'taxonomies'                 => array( 'story', 'story_term', 'draft' ),
416
+		'taxonomies'                 => array('story', 'story_term', 'draft'),
417 417
 		'hierarchical'               => true,
418 418
 		'public'                     => true,
419 419
 		'show_ui'                    => true,
@@ -426,40 +426,40 @@  discard block
 block discarded – undo
426 426
 		'has_archive'                => true,
427 427
 		'feeds'                      => true,
428 428
 		'exclude_from_search'        => false,
429
-		'rewrite'                    => array( 'slug' => 'stories', 'with_front' => true ),
429
+		'rewrite'                    => array('slug' => 'stories', 'with_front' => true),
430 430
 		'publicly_queryable'	       => true,
431 431
 		'capability_type'            => 'post',
432 432
 	);
433
-	register_post_type( 'comic', $args );
433
+	register_post_type('comic', $args);
434 434
 }
435 435
 
436 436
 // Hook into the 'init' action.
437
-add_action( 'init', 'comic_post_type', 0 ); // End of register_cpt_comic().
437
+add_action('init', 'comic_post_type', 0); // End of register_cpt_comic().
438 438
 
439 439
 	/**
440 440
 	 * Register Custom Taxonomy 'story'
441 441
 	 */
442 442
 function comic_story_taxonomy() {
443 443
 	$labels = array(
444
-		'name'                       => _x( 'Comic Story', 'Taxonomy General Name', 'strip' ),
445
-		'singular_name'              => _x( 'Comic Story', 'Taxonomy Singular Name', 'strip' ),
446
-		'menu_name'                  => __( 'Comic Stories', 'strip' ),
447
-		'all_items'                  => __( 'All Comic Stories', 'strip' ),
448
-		'parent_item'                => __( 'Parent Story', 'strip' ),
449
-		'parent_item_colon'          => __( 'Parent Story:', 'strip' ),
450
-		'new_item_name'              => __( 'New Comic Story', 'strip' ),
451
-		'add_new_item'               => __( 'Add New Story', 'strip' ),
452
-		'edit_item'                  => __( 'Edit Story', 'strip' ),
453
-		'update_item'                => __( 'Update Story', 'strip' ),
454
-		'view_item'                  => __( 'View Item', 'strip' ),
455
-		'separate_items_with_commas' => __( 'Separate stories with commas', 'strip' ),
456
-		'add_or_remove_items'        => __( 'Add or Remove Stories', 'strip' ),
457
-		'choose_from_most_used'      => __( 'Choose from the most used stories', 'strip' ),
458
-		'popular_items'              => __( 'Popular comic stories', 'strip' ),
459
-		'search_items'               => __( 'Search Stories', 'strip' ),
460
-		'not_found'                  => __( 'No comic Stories found', 'strip' ),
461
-		'items_list'                 => __( 'Comic Stories list', 'strip' ),
462
-		'items_list_navigation'      => __( 'Comic Stories list navigation', 'strip' ),
444
+		'name'                       => _x('Comic Story', 'Taxonomy General Name', 'strip'),
445
+		'singular_name'              => _x('Comic Story', 'Taxonomy Singular Name', 'strip'),
446
+		'menu_name'                  => __('Comic Stories', 'strip'),
447
+		'all_items'                  => __('All Comic Stories', 'strip'),
448
+		'parent_item'                => __('Parent Story', 'strip'),
449
+		'parent_item_colon'          => __('Parent Story:', 'strip'),
450
+		'new_item_name'              => __('New Comic Story', 'strip'),
451
+		'add_new_item'               => __('Add New Story', 'strip'),
452
+		'edit_item'                  => __('Edit Story', 'strip'),
453
+		'update_item'                => __('Update Story', 'strip'),
454
+		'view_item'                  => __('View Item', 'strip'),
455
+		'separate_items_with_commas' => __('Separate stories with commas', 'strip'),
456
+		'add_or_remove_items'        => __('Add or Remove Stories', 'strip'),
457
+		'choose_from_most_used'      => __('Choose from the most used stories', 'strip'),
458
+		'popular_items'              => __('Popular comic stories', 'strip'),
459
+		'search_items'               => __('Search Stories', 'strip'),
460
+		'not_found'                  => __('No comic Stories found', 'strip'),
461
+		'items_list'                 => __('Comic Stories list', 'strip'),
462
+		'items_list_navigation'      => __('Comic Stories list navigation', 'strip'),
463 463
 	);
464 464
 	$args = array(
465 465
 		'labels'                     => $labels,
@@ -471,14 +471,14 @@  discard block
 block discarded – undo
471 471
 		'show_in_nav_menus'          => true,
472 472
 		'show_tagcloud'              => true,
473 473
 		'query_var'	                 => true,
474
-		'rewrite'                    => array( 'slug' => 'story' ),
474
+		'rewrite'                    => array('slug' => 'story'),
475 475
 	);
476
-	register_taxonomy( 'story', array( 'comic' ), $args );
477
-	register_taxonomy_for_object_type( 'story', 'comic' );
476
+	register_taxonomy('story', array('comic'), $args);
477
+	register_taxonomy_for_object_type('story', 'comic');
478 478
 }
479 479
 
480 480
 // Hook into the 'init' action.
481
-add_action( 'init', 'comic_story_taxonomy', 0 );
481
+add_action('init', 'comic_story_taxonomy', 0);
482 482
 
483 483
 /**
484 484
  * Function strip rewrite rules.
@@ -487,31 +487,31 @@  discard block
 block discarded – undo
487 487
 	flush_rewrite_rules();
488 488
 }
489 489
 /* Flush rewrite rules for custom post types. */
490
-add_action( 'after_switch_theme', 'strip_rewrite_rules' );
490
+add_action('after_switch_theme', 'strip_rewrite_rules');
491 491
 
492 492
 // Add Print taxonomy, NOT hierarchical (like tags)
493 493
 // Register Custom Taxonomy.
494 494
 	$labels = array(
495
-		'name'                       => _x( 'Prints', 'Taxonomy General Name', 'strip' ),
496
-		'singular_name'              => _x( 'Print', 'Taxonomy Singular Name', 'strip' ),
497
-		'menu_name'                  => __( 'Print', 'strip' ),
498
-		'all_items'                  => __( 'All Prints', 'strip' ),
499
-		'parent_item'                => __( 'Parent Print', 'strip' ),
500
-		'parent_item_colon'          => __( 'Parent Print:', 'strip' ),
501
-		'new_item_name'              => __( 'New Print Name', 'strip' ),
502
-		'add_new_item'               => __( 'Add New Print', 'strip' ),
503
-		'edit_item'                  => __( 'Edit Print', 'strip' ),
504
-		'update_item'                => __( 'Update Pring', 'strip' ),
505
-		'view_item'                  => __( 'View Print', 'strip' ),
506
-		'separate_items_with_commas' => __( 'Separate prints with commas', 'strip' ),
507
-		'add_or_remove_items'        => __( 'Add or remove prints', 'strip' ),
508
-		'choose_from_most_used'      => __( 'Choose from the most used', 'strip' ),
509
-		'popular_items'              => __( 'Popular Prints', 'strip' ),
510
-		'search_items'               => __( 'Search Prints', 'strip' ),
511
-		'not_found'                  => __( 'Not Found', 'strip' ),
512
-		'no_terms'                   => __( 'No prints', 'strip' ),
513
-		'items_list'                 => __( 'Prints list', 'strip' ),
514
-		'items_list_navigation'      => __( 'Prints list navigation', 'strip' ),
495
+		'name'                       => _x('Prints', 'Taxonomy General Name', 'strip'),
496
+		'singular_name'              => _x('Print', 'Taxonomy Singular Name', 'strip'),
497
+		'menu_name'                  => __('Print', 'strip'),
498
+		'all_items'                  => __('All Prints', 'strip'),
499
+		'parent_item'                => __('Parent Print', 'strip'),
500
+		'parent_item_colon'          => __('Parent Print:', 'strip'),
501
+		'new_item_name'              => __('New Print Name', 'strip'),
502
+		'add_new_item'               => __('Add New Print', 'strip'),
503
+		'edit_item'                  => __('Edit Print', 'strip'),
504
+		'update_item'                => __('Update Pring', 'strip'),
505
+		'view_item'                  => __('View Print', 'strip'),
506
+		'separate_items_with_commas' => __('Separate prints with commas', 'strip'),
507
+		'add_or_remove_items'        => __('Add or remove prints', 'strip'),
508
+		'choose_from_most_used'      => __('Choose from the most used', 'strip'),
509
+		'popular_items'              => __('Popular Prints', 'strip'),
510
+		'search_items'               => __('Search Prints', 'strip'),
511
+		'not_found'                  => __('Not Found', 'strip'),
512
+		'no_terms'                   => __('No prints', 'strip'),
513
+		'items_list'                 => __('Prints list', 'strip'),
514
+		'items_list_navigation'      => __('Prints list navigation', 'strip'),
515 515
 	);
516 516
 
517 517
 	$args = array(
@@ -523,21 +523,21 @@  discard block
 block discarded – undo
523 523
 		'show_in_nav_menus'          => true,
524 524
 		'show_tagcloud'              => true,
525 525
 	);
526
-	register_taxonomy( 'print', array( 'comic' ), $args );
526
+	register_taxonomy('print', array('comic'), $args);
527 527
 
528 528
 	/*
529 529
 	* WooCommerce Hooks
530 530
 	* Layout
531 531
 	*/
532
-	remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 );
533
-	remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 );
534
-	remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 );
535
-	remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 );
536
-	remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
537
-	remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 );
532
+	remove_action('woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
533
+	remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
534
+	remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
535
+	remove_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 10);
536
+	remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20);
537
+	remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30);
538 538
 
539
-	add_action( 'woocommerce_before_main_content', 'strip_wrapper_start', 10 );
540
-	add_action( 'woocommerce_after_main_content', 'strip_wrapper_end', 10 );
539
+	add_action('woocommerce_before_main_content', 'strip_wrapper_start', 10);
540
+	add_action('woocommerce_after_main_content', 'strip_wrapper_end', 10);
541 541
 
542 542
 		 /**
543 543
 		  * WooCommerce wrapper
@@ -553,13 +553,13 @@  discard block
 block discarded – undo
553 553
 		echo '</section>';
554 554
 	}
555 555
 
556
-	add_action( 'after_setup_theme', 'woocommerce_support' );
556
+	add_action('after_setup_theme', 'woocommerce_support');
557 557
 	/**
558 558
 	 * Add WooCommerce support
559 559
 	 * https://docs.woothemes.com/document/third-party-custom-theme-compatibility/*
560 560
 	 */
561 561
 	function woocommerce_support() {
562
-		add_theme_support( 'woocommerce' );
562
+		add_theme_support('woocommerce');
563 563
 	}
564 564
 
565 565
 	/**
@@ -567,13 +567,13 @@  discard block
 block discarded – undo
567 567
 	 */
568 568
 	function wp_enqueue_woocommerce_style() {
569 569
 
570
-			wp_register_style( 'strip-woocommerce', get_template_directory_uri() . '/assets/css/woocommerce-min.css' );
571
-		if ( class_exists( 'woocommerce' ) ) {
572
-			wp_enqueue_style( 'strip-woocommerce' );
570
+			wp_register_style('strip-woocommerce', get_template_directory_uri() . '/assets/css/woocommerce-min.css');
571
+		if (class_exists('woocommerce')) {
572
+			wp_enqueue_style('strip-woocommerce');
573 573
 		}
574 574
 	}
575 575
 
576
-	add_action( 'wp_enqueue_scripts', 'wp_enqueue_woocommerce_style' );
576
+	add_action('wp_enqueue_scripts', 'wp_enqueue_woocommerce_style');
577 577
 
578 578
 	/**
579 579
 * Optimize WooCommerce Scripts
@@ -584,53 +584,53 @@  discard block
 block discarded – undo
584 584
 * @link https://gist.github.com/DevinWalker/7621777
585 585
 * @link http://dessky.com/blog/disable-woocommerce-scripts-and-styles/
586 586
 */
587
-	add_action( 'wp_enqueue_scripts', 'strip_manage_woocommerce_styles', 99 );
587
+	add_action('wp_enqueue_scripts', 'strip_manage_woocommerce_styles', 99);
588 588
 
589 589
 	/**
590 590
 	 * Remove some WooCommerce queries.
591 591
 	 */
592 592
 	function strip_manage_woocommerce_styles() {
593 593
 		// remove generator meta tag.
594
-		remove_action( 'wp_head', array( 'woocommerce', 'generator' ) ); // this line when used with $GLOBALS['woocommerce'] prompts an error when Woo is deactivated though.
594
+		remove_action('wp_head', array('woocommerce', 'generator')); // this line when used with $GLOBALS['woocommerce'] prompts an error when Woo is deactivated though.
595 595
 		// first check that woo exists to prevent fatal errors.
596
-		if ( function_exists( 'strip_is_woocommerce_activated' ) ) {
596
+		if (function_exists('strip_is_woocommerce_activated')) {
597 597
 			// dequeue scripts and styles, unless we're in the store.
598
-			if ( ! is_woocommerce() && ! is_cart() && ! is_checkout() ) {
599
-				wp_dequeue_style( 'woocommerce_frontend_styles' );
600
-				wp_dequeue_style( 'woocommerce-general' );
601
-				wp_dequeue_style( 'woocommerce-layout' );
602
-				wp_dequeue_style( 'woocommerce-smallscreen' );
603
-				wp_dequeue_style( 'woocommerce_fancybox_styles' );
604
-				wp_dequeue_style( 'woocommerce_chosen_styles' );
605
-				wp_dequeue_style( 'woocommerce_prettyPhoto_css' );
606
-				wp_dequeue_style( 'select2' );
607
-				wp_dequeue_style( 'strip-woocommerce' ); // the theme's CSS overwrite.
608
-				wp_dequeue_script( 'wc-add-payment-method' );
609
-				wp_dequeue_script( 'wc-lost-password' );
610
-				wp_dequeue_script( 'wc_price_slider' );
611
-				wp_dequeue_script( 'wc-single-product' );
612
-				wp_dequeue_script( 'wc-add-to-cart' );
613
-				wp_dequeue_script( 'wc-cart-fragments' );
614
-				wp_dequeue_script( 'wc-credit-card-form' );
615
-				wp_dequeue_script( 'wc-checkout' );
616
-				wp_dequeue_script( 'wc-add-to-cart-variation' );
617
-				wp_dequeue_script( 'wc-single-product' );
618
-				wp_dequeue_script( 'wc-cart' );
619
-				wp_dequeue_script( 'wc-chosen' );
620
-				wp_dequeue_script( 'woocommerce' );
621
-				wp_dequeue_script( 'jquery-cookie' );
622
-				wp_dequeue_script( 'prettyPhoto' );
623
-				wp_dequeue_script( 'prettyPhoto-init' );
624
-				wp_dequeue_script( 'jquery-blockui' );
625
-				wp_dequeue_script( 'jquery-placeholder' );
626
-				wp_dequeue_script( 'jquery-payment' );
627
-				wp_dequeue_script( 'fancybox' );
628
-				wp_dequeue_script( 'jqueryui' );
598
+			if ( ! is_woocommerce() && ! is_cart() && ! is_checkout()) {
599
+				wp_dequeue_style('woocommerce_frontend_styles');
600
+				wp_dequeue_style('woocommerce-general');
601
+				wp_dequeue_style('woocommerce-layout');
602
+				wp_dequeue_style('woocommerce-smallscreen');
603
+				wp_dequeue_style('woocommerce_fancybox_styles');
604
+				wp_dequeue_style('woocommerce_chosen_styles');
605
+				wp_dequeue_style('woocommerce_prettyPhoto_css');
606
+				wp_dequeue_style('select2');
607
+				wp_dequeue_style('strip-woocommerce'); // the theme's CSS overwrite.
608
+				wp_dequeue_script('wc-add-payment-method');
609
+				wp_dequeue_script('wc-lost-password');
610
+				wp_dequeue_script('wc_price_slider');
611
+				wp_dequeue_script('wc-single-product');
612
+				wp_dequeue_script('wc-add-to-cart');
613
+				wp_dequeue_script('wc-cart-fragments');
614
+				wp_dequeue_script('wc-credit-card-form');
615
+				wp_dequeue_script('wc-checkout');
616
+				wp_dequeue_script('wc-add-to-cart-variation');
617
+				wp_dequeue_script('wc-single-product');
618
+				wp_dequeue_script('wc-cart');
619
+				wp_dequeue_script('wc-chosen');
620
+				wp_dequeue_script('woocommerce');
621
+				wp_dequeue_script('jquery-cookie');
622
+				wp_dequeue_script('prettyPhoto');
623
+				wp_dequeue_script('prettyPhoto-init');
624
+				wp_dequeue_script('jquery-blockui');
625
+				wp_dequeue_script('jquery-placeholder');
626
+				wp_dequeue_script('jquery-payment');
627
+				wp_dequeue_script('fancybox');
628
+				wp_dequeue_script('jqueryui');
629 629
 			}
630 630
 		}
631 631
 	}
632 632
 
633
-	add_action( 'pre_get_posts', 'strip_set_posts_per_page' );
633
+	add_action('pre_get_posts', 'strip_set_posts_per_page');
634 634
 	/**
635 635
 	 * Set posts, WooCommerce products & comics number per archive page
636 636
 	 * Fixes 404 error on pagination due to CTP conflicting with WordPress posts_per_page default
@@ -639,28 +639,28 @@  discard block
 block discarded – undo
639 639
 	 * @param WP_Query $query strip_set_posts_per_page.
640 640
 	 * @return $query
641 641
 	 */
642
-	function strip_set_posts_per_page( $query ) {
642
+	function strip_set_posts_per_page($query) {
643 643
 		global $wp_the_query;
644
-		if ( $wp_the_query-> is_home() && $wp_the_query-> is_search() ) {
645
-			$query->set( 'post_type', array( 'post', 'comic', 'posts_per_page', 12 ) );
644
+		if ($wp_the_query-> is_home() && $wp_the_query-> is_search()) {
645
+			$query->set('post_type', array('post', 'comic', 'posts_per_page', 12));
646 646
 		}
647
-		if ( $wp_the_query-> is_post_type_archive( 'product' ) ) {
648
-			$query->set( 'posts_per_page', 4 );
649
-		} elseif ( ( $query === $wp_the_query ) && ( is_archive() ) && ( is_tax( 'story' ) ) ) {
650
-			$query->set( 'posts_per_page', 3 );
647
+		if ($wp_the_query-> is_post_type_archive('product')) {
648
+			$query->set('posts_per_page', 4);
649
+		} elseif (($query === $wp_the_query) && (is_archive()) && (is_tax('story'))) {
650
+			$query->set('posts_per_page', 3);
651 651
 		}
652 652
 		return;
653 653
 	}
654 654
 
655
-	add_action( 'pre_get_posts', 'add_comic_post_type_to_query' );
655
+	add_action('pre_get_posts', 'add_comic_post_type_to_query');
656 656
 	/**
657 657
 	 * Show comics post types on home page.
658 658
 	 *
659 659
 	 * @param string $query add_comic_post_types_to_query.
660 660
 	 */
661
-	function add_comic_post_type_to_query( $query ) {
662
-		if (  $query->is_home() && $query->is_main_query() ) {
663
-			$query->set( 'post_type', array( 'post', 'comic' ) );
661
+	function add_comic_post_type_to_query($query) {
662
+		if ($query->is_home() && $query->is_main_query()) {
663
+			$query->set('post_type', array('post', 'comic'));
664 664
 		}
665 665
 		return $query;
666 666
 	}
@@ -673,35 +673,35 @@  discard block
 block discarded – undo
673 673
 	 * @param	string $post_id set_default_object_terms.
674 674
 	 * @param	string $post set_default_object_terms.
675 675
 	 */
676
-	function set_default_object_terms( $post_id, $post ) {
677
-		if ( 'publish' === $post->post_status && 'comic' === $post->post_type ) {
676
+	function set_default_object_terms($post_id, $post) {
677
+		if ('publish' === $post->post_status && 'comic' === $post->post_type) {
678 678
 			$defaults = array(
679
-			'story' => array( 'draft' ),
679
+			'story' => array('draft'),
680 680
 			);
681
-			$taxonomies = get_object_taxonomies( $post->post_type );
682
-			foreach ( (array) $taxonomies as $taxonomy ) {
683
-				$terms = get_the_terms( $post_id, $taxonomy );
684
-				if ( empty( $terms ) && array_key_exists( $taxonomy, $defaults ) ) {
685
-					wp_set_object_terms( $post_id, $defaults[ $taxonomy ], $taxonomy );
681
+			$taxonomies = get_object_taxonomies($post->post_type);
682
+			foreach ((array) $taxonomies as $taxonomy) {
683
+				$terms = get_the_terms($post_id, $taxonomy);
684
+				if (empty($terms) && array_key_exists($taxonomy, $defaults)) {
685
+					wp_set_object_terms($post_id, $defaults[$taxonomy], $taxonomy);
686 686
 				}
687 687
 			}
688 688
 		}
689 689
 	}
690
-	add_action( 'save_post', 'set_default_object_terms', 0, 2 );
690
+	add_action('save_post', 'set_default_object_terms', 0, 2);
691 691
 
692 692
 	/**
693 693
 	 * Remove jquery migrate $scripts for enhanced performance.
694 694
 	 *
695 695
 	 * @param strings $scripts remove_jquery_migrate.
696 696
 	 */
697
-	function remove_jquery_migrate( $scripts ) {
698
-		if ( is_admin() ) {
697
+	function remove_jquery_migrate($scripts) {
698
+		if (is_admin()) {
699 699
 			return;
700 700
 		}
701
-		 $scripts->remove( 'jquery' );
702
-		 $scripts->add( 'jquery', false, array( 'jquery-core' ), '1.10.2' );
701
+		 $scripts->remove('jquery');
702
+		 $scripts->add('jquery', false, array('jquery-core'), '1.10.2');
703 703
 	}
704
-		add_action( 'wp_default_scripts', 'remove_jquery_migrate' );
704
+		add_action('wp_default_scripts', 'remove_jquery_migrate');
705 705
 
706 706
 		/**
707 707
 		 * Remove login errors notices (security)
@@ -709,4 +709,4 @@  discard block
 block discarded – undo
709 709
 	function no_wordpress_errors() {
710 710
 		return 'Something is wrong!';
711 711
 	}
712
-		add_filter( 'login_errors', 'no_wordpress_errors' );
712
+		add_filter('login_errors', 'no_wordpress_errors');
Please login to merge, or discard this patch.
inc/template-tags.php 1 patch
Spacing   +65 added lines, -65 removed lines patch added patch discarded remove patch
@@ -12,88 +12,88 @@  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_content_nav' ) ) :
22
+if ( ! function_exists('strip_content_nav')) :
23 23
 
24 24
 	/**
25 25
 	 * Display navigation to next/previous pages when applicable
26 26
 	 *
27 27
 	 * @param string $nav_id strip_content_nav.
28 28
 	 */
29
-	function strip_content_nav( $nav_id ) {
29
+	function strip_content_nav($nav_id) {
30 30
 
31
-		$nav_class = ( is_single() || is_post_type( 'comic' ) ) ? 'post-navigation' : 'paging-navigation' ;
31
+		$nav_class = (is_single() || is_post_type('comic')) ? 'post-navigation' : 'paging-navigation';
32 32
 
33 33
 		?> <div class="wrap clear">
34 34
 
35
-		<nav role="navigation" id="<?php echo esc_attr( $nav_id ); ?>" class="<?php echo esc_attr( $nav_class ); ?> clear">
36
-		<h1 class="screen-reader-text"><?php esc_html_e( 'Post navigation', 'strip' ); ?></h1>
35
+		<nav role="navigation" id="<?php echo esc_attr($nav_id); ?>" class="<?php echo esc_attr($nav_class); ?> clear">
36
+		<h1 class="screen-reader-text"><?php esc_html_e('Post navigation', 'strip'); ?></h1>
37 37
 
38
-		<?php  if ( 'comic' === get_post_type() && ( is_single() ) ) : // comics navigation links.
38
+		<?php  if ('comic' === get_post_type() && (is_single())) : // comics navigation links.
39 39
 
40 40
 			$nav_class .= ' navigation-comic'; ?>
41 41
 
42 42
 				<div class="navigation-comic">
43
-				<nav class="nav-first"><a href="<?php echo esc_url( first_comic_link() ); ?>"><?php esc_html_e( 'Start', 'strip' ); ?></a></nav>
44
-				<nav class="nav-previous"><?php previous_post_link( '%link', __( 'Previous', 'strip' ), true, '', 'story' ); ?></nav>
45
-				<nav class="nav-title"><?php the_title( '<h4 class="series-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h4>' ); ?></nav>
46
-				<nav class="nav-next"><?php next_post_link( '%link', __( 'Next', 'strip' ), true, '', 'story' ); ?></nav>
47
-				<nav class="nav-last"><a href="<?php echo esc_url( last_comic_link() ); ?>"><?php esc_html_e( 'Last', 'strip' ); ?></a></nav>
43
+				<nav class="nav-first"><a href="<?php echo esc_url(first_comic_link()); ?>"><?php esc_html_e('Start', 'strip'); ?></a></nav>
44
+				<nav class="nav-previous"><?php previous_post_link('%link', __('Previous', 'strip'), true, '', 'story'); ?></nav>
45
+				<nav class="nav-title"><?php the_title('<h4 class="series-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h4>'); ?></nav>
46
+				<nav class="nav-next"><?php next_post_link('%link', __('Next', 'strip'), true, '', 'story'); ?></nav>
47
+				<nav class="nav-last"><a href="<?php echo esc_url(last_comic_link()); ?>"><?php esc_html_e('Last', 'strip'); ?></a></nav>
48 48
 			</div><!-- .navigation-comic -->
49 49
 
50
-		<?php elseif ( is_single() ) : // navigation links for single posts. ?>
50
+		<?php elseif (is_single()) : // navigation links for single posts. ?>
51 51
 
52
-		<?php previous_post_link( '<div class="nav-previous">%link</div>', '<span class="meta-nav">' . _x( '&#8592;', 'Previous post link', 'strip' ) . '</span> %title' ); ?>
53
-		<?php next_post_link( '<div class="nav-next">%link</div>', '%title <span class="meta-nav">' . _x( '&#8594;', 'Next post link', 'strip' ) . '</span>' ); ?>
52
+		<?php previous_post_link('<div class="nav-previous">%link</div>', '<span class="meta-nav">' . _x('&#8592;', 'Previous post link', 'strip') . '</span> %title'); ?>
53
+		<?php next_post_link('<div class="nav-next">%link</div>', '%title <span class="meta-nav">' . _x('&#8594;', 'Next post link', 'strip') . '</span>'); ?>
54 54
 
55 55
 		<?php endif; ?>
56 56
 
57 57
 				</div><!-- .entry-wrap -->
58
-			</nav><!-- #<?php echo esc_attr( $nav_id ); ?> -->
58
+			</nav><!-- #<?php echo esc_attr($nav_id); ?> -->
59 59
 			<?php
60 60
 	}
61 61
 endif; // strip_content_nav.
62 62
 
63
-if ( ! function_exists( 'strip_entry_meta' ) ) :
63
+if ( ! function_exists('strip_entry_meta')) :
64 64
 	/**
65 65
 	 * Prints HTML with meta information for the current post-date/time and author.
66 66
 	 */
67 67
 	function strip_entry_meta() {
68
-		if ( is_sticky() && is_home() ) {
68
+		if (is_sticky() && is_home()) {
69 69
 			printf(
70
-				wp_kses( '<span class="featured-post"><a href="%1$s" title="%2$s" rel="bookmark">Sticky</a></span>', 'strip' ),
71
-				esc_url( get_permalink() ),
72
-				esc_attr( get_the_time() )
70
+				wp_kses('<span class="featured-post"><a href="%1$s" title="%2$s" rel="bookmark">Sticky</a></span>', 'strip'),
71
+				esc_url(get_permalink()),
72
+				esc_attr(get_the_time())
73 73
 			);
74 74
 		}
75 75
 
76
-		if ( 'post' === get_post_type() ) {
76
+		if ('post' === get_post_type()) {
77 77
 			printf(
78
-				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' ),
79
-				esc_url( get_permalink() ),
80
-				esc_attr( get_the_time() ),
81
-				esc_attr( get_the_date( 'c' ) ),
78
+				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'),
79
+				esc_url(get_permalink()),
80
+				esc_attr(get_the_time()),
81
+				esc_attr(get_the_date('c')),
82 82
 				get_the_date(),
83
-				esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
84
-				esc_attr( sprintf( __( 'View all posts by %s', 'strip' ), get_the_author() ) ),
83
+				esc_url(get_author_posts_url(get_the_author_meta('ID'))),
84
+				esc_attr(sprintf(__('View all posts by %s', 'strip'), get_the_author())),
85 85
 				get_the_author()
86 86
 			);
87 87
 		}
88 88
 
89
-		$tags_list = get_the_tag_list( '', _x( ', ', 'Used between list items, there is a space after the comma.', 'strip' ) );
90
-		if ( $tags_list ) {
91
-			printf( '<span class="tags-links">' . esc_html( '%1$s', 'strip' ) . '</span>', $tags_list ); // WPCS: XSS OK.
89
+		$tags_list = get_the_tag_list('', _x(', ', 'Used between list items, there is a space after the comma.', 'strip'));
90
+		if ($tags_list) {
91
+			printf('<span class="tags-links">' . esc_html('%1$s', 'strip') . '</span>', $tags_list); // WPCS: XSS OK.
92 92
 		}
93 93
 	}
94 94
 endif;
95 95
 
96
-if ( ! function_exists( 'strip_term_description' ) ) :
96
+if ( ! function_exists('strip_term_description')) :
97 97
 	/**
98 98
 	 * Display optional term description for category, tag and custom taxonomy pages.
99 99
 	 *
@@ -103,8 +103,8 @@  discard block
 block discarded – undo
103 103
 		// Show an optional term description.
104 104
 		$term_description = term_description();
105 105
 
106
-		if ( is_post_type_archive( 'comic' ) || is_category() || is_tag() || is_tax( 'story' ) && ! empty( $term_description ) ) :
107
-			printf( '<div class="taxonomy-description">%s</div>', $term_description, 'strip' ); // WPCS: XSS OK.
106
+		if (is_post_type_archive('comic') || is_category() || is_tag() || is_tax('story') && ! empty($term_description)) :
107
+			printf('<div class="taxonomy-description">%s</div>', $term_description, 'strip'); // WPCS: XSS OK.
108 108
 			endif;
109 109
 	}
110 110
 endif; // ends check for strip_term_description.
@@ -115,25 +115,25 @@  discard block
 block discarded – undo
115 115
  * @return bool
116 116
  */
117 117
 function strip_categorized_blog() {
118
-	$category_count = get_transient( 'strip_categories' );
118
+	$category_count = get_transient('strip_categories');
119 119
 
120
-	if ( false === $category_count ) {
120
+	if (false === $category_count) {
121 121
 		// Create an array of all the categories that are attached to posts.
122
-		$categories = get_categories( array(
122
+		$categories = get_categories(array(
123 123
 			'fields'     => 'ids',
124 124
 			'hide_empty' => 1,
125 125
 			// We only need to know if there is more than one category.
126 126
 			'number'     => 2,
127
-		) );
127
+		));
128 128
 
129 129
 		// Count the number of categories that are attached to the posts.
130
-		$category_count = count( $categories );
130
+		$category_count = count($categories);
131 131
 
132
-		set_transient( 'strip_categories', $category_count );
132
+		set_transient('strip_categories', $category_count);
133 133
 	}
134 134
 
135 135
 	// Allow viewing case of 0 or 1 categories in post preview.
136
-	if ( is_preview() ) {
136
+	if (is_preview()) {
137 137
 		return true;
138 138
 	}
139 139
 
@@ -145,16 +145,16 @@  discard block
 block discarded – undo
145 145
  * Flush out the transients used in strip_categorized_blog.
146 146
  */
147 147
 function strip_category_transient_flusher() {
148
-	if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
148
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
149 149
 		return;
150 150
 	}
151 151
 	// Like, beat it. Dig?
152
-	delete_transient( 'strip_categories' );
152
+	delete_transient('strip_categories');
153 153
 }
154
-add_action( 'edit_category', 'strip_category_transient_flusher' );
155
-add_action( 'save_post',     'strip_category_transient_flusher' );
154
+add_action('edit_category', 'strip_category_transient_flusher');
155
+add_action('save_post', 'strip_category_transient_flusher');
156 156
 
157
-if ( ! function_exists( 'strip_the_custom_logo' ) ) :
157
+if ( ! function_exists('strip_the_custom_logo')) :
158 158
 	/**
159 159
 	 * Displays the optional custom logo.
160 160
 	 *
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
 	 * @since strip 1.0
164 164
 	 */
165 165
 	function strip_the_custom_logo() {
166
-		if ( function_exists( 'the_custom_logo' ) ) {
166
+		if (function_exists('the_custom_logo')) {
167 167
 			the_custom_logo();
168 168
 		}
169 169
 	}
@@ -179,10 +179,10 @@  discard block
 block discarded – undo
179 179
  * @param string $taxonomy       Optional. Taxonomy, if $in_same_term is true. Default 'category'.
180 180
  * @return mixed Array containing the boundary post object if successful, null otherwise.
181 181
  */
182
-function get_comic_boundary_post( $in_same_term, $start, $taxonomy ) {
182
+function get_comic_boundary_post($in_same_term, $start, $taxonomy) {
183 183
 	global $post;
184
-	setup_postdata( $post );
185
-	if ( ! taxonomy_exists( $taxonomy ) ) {
184
+	setup_postdata($post);
185
+	if ( ! taxonomy_exists($taxonomy)) {
186 186
 		return null;
187 187
 	}
188 188
 
@@ -196,37 +196,37 @@  discard block
 block discarded – undo
196 196
 	);
197 197
 
198 198
 	$term_array = array();
199
-	if ( $in_same_term ) {
200
-		if ( $in_same_term ) {
201
-			$term_array = wp_get_object_terms( $post->ID, $taxonomy, array( 'fields' => 'ids' ) );
199
+	if ($in_same_term) {
200
+		if ($in_same_term) {
201
+			$term_array = wp_get_object_terms($post->ID, $taxonomy, array('fields' => 'ids'));
202 202
 		}
203
-		$query_args['tax_query'] = array( array(
203
+		$query_args['tax_query'] = array(array(
204 204
 			'taxonomy' => $taxonomy,
205
-			'terms' => array_merge( $term_array ),
205
+			'terms' => array_merge($term_array),
206 206
 		),
207 207
 		);
208 208
 	}
209 209
 
210 210
 	$get_posts = new wp_query;
211
-	return $get_posts -> query( $query_args );
211
+	return $get_posts -> query($query_args);
212 212
 }
213 213
 
214 214
 /**
215 215
  * Link to the first comic post in same term
216 216
  */
217 217
 function first_comic_link() {
218
-	$first = get_comic_boundary_post( true, true, 'story' );
219
-	apply_filters( 'the_title', $first[0]->post_title );
218
+	$first = get_comic_boundary_post(true, true, 'story');
219
+	apply_filters('the_title', $first[0]->post_title);
220 220
 
221
-	echo esc_html( get_permalink( $first[0]->ID ) );
221
+	echo esc_html(get_permalink($first[0]->ID));
222 222
 }
223 223
 
224 224
 /**
225 225
  * Link to the last comic post in same term
226 226
  */
227 227
 function last_comic_link() {
228
-	$last = get_comic_boundary_post( true, false, 'story' );
229
-	apply_filters( 'the_title', $last[0]->post_title );
228
+	$last = get_comic_boundary_post(true, false, 'story');
229
+	apply_filters('the_title', $last[0]->post_title);
230 230
 
231
-	echo esc_html( get_permalink( $last[0]->ID ) );
231
+	echo esc_html(get_permalink($last[0]->ID));
232 232
 }
Please login to merge, or discard this patch.