Completed
Push — master ( ebbc60...a5d716 )
by SILENT
02:24
created
content-image.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
  */
9 9
 
10 10
 // Access global variable directly to set content_width.
11
-if ( isset( $GLOBALS['content_width'] ) ) {
11
+if (isset($GLOBALS['content_width'])) {
12 12
 	$GLOBALS['content_width'] = 1920;
13 13
 }
14 14
 ?>
@@ -19,36 +19,36 @@  discard block
 block discarded – undo
19 19
 
20 20
 		<header class="entry-header">
21 21
 			<?php
22
-				$categories_list = get_the_category_list( __( ', ', 'strip' ) );
23
-			if ( $categories_list && strip_categorized_blog() ) {
22
+				$categories_list = get_the_category_list(__(', ', 'strip'));
23
+			if ($categories_list && strip_categorized_blog()) {
24 24
 				echo '<span class="categories-links">' . $categories_list . '</span>';
25 25
 			}
26 26
 
27
-			if ( ! is_single() ) :
28
-				the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
27
+			if ( ! is_single()) :
28
+				the_title('<h1 class="entry-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h1>');
29 29
 			else :
30
-					the_title( '<h1 class="entry-title">', '</h1>' );
30
+					the_title('<h1 class="entry-title">', '</h1>');
31 31
 			endif;
32 32
 			?>
33 33
 			</header><!-- .entry-header -->
34 34
 
35
-					<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'strip' ) ); ?>
35
+					<?php the_content(__('Continue reading <span class="meta-nav">&rarr;</span>', 'strip')); ?>
36 36
 
37 37
 		</div><!-- .entry-attachment -->
38 38
 
39 39
 		<footer class="entry-meta">
40 40
 			<?php strip_entry_meta(); ?>
41 41
 
42
-			<span class="entry-format"><a href="<?php echo esc_url( get_post_format_link( 'image' ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'All %s posts', 'strip' ), get_post_format_string( 'image' ) ) ); ?>"><?php echo esc_html( get_post_format_string( 'image' ) ); ?></a></span>
42
+			<span class="entry-format"><a href="<?php echo esc_url(get_post_format_link('image')); ?>" title="<?php echo esc_attr(sprintf(__('All %s posts', 'strip'), get_post_format_string('image'))); ?>"><?php echo esc_html(get_post_format_string('image')); ?></a></span>
43 43
 
44
-			<?php edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?>
44
+			<?php edit_post_link(__('Edit', 'strip'), '<span class="edit-link">', '</span>'); ?>
45 45
 		</footer><!-- .entry-meta -->
46 46
 
47
-				<?php if ( has_excerpt() ) : ?>
47
+				<?php if (has_excerpt()) : ?>
48 48
 		<div class="entry-summary">
49
-			<?php do_action( 'strip_formatted_posts_excerpt_before' ); ?>
49
+			<?php do_action('strip_formatted_posts_excerpt_before'); ?>
50 50
 			<?php the_excerpt(); ?>
51
-			<?php do_action( 'strip_formatted_posts_excerpt_after' ); ?>
51
+			<?php do_action('strip_formatted_posts_excerpt_after'); ?>
52 52
 		</div><!-- .entry-caption -->
53 53
 		<?php endif; ?>
54 54
 
Please login to merge, or discard this patch.
content-link.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@  discard block
 block discarded – undo
12 12
 	<div class="wrap">
13 13
 		<header class="entry-header">
14 14
 			<?php
15
-				$categories_list = get_the_category_list( __( ', ', 'strip' ) );
16
-			if ( $categories_list && strip_categorized_blog() ) {
15
+				$categories_list = get_the_category_list(__(', ', 'strip'));
16
+			if ($categories_list && strip_categorized_blog()) {
17 17
 				echo '<span class="categories-links">' . $categories_list . '</span>';
18 18
 			}
19 19
 			?>
@@ -22,13 +22,13 @@  discard block
 block discarded – undo
22 22
 		<footer class="entry-meta">
23 23
 			<?php strip_entry_meta(); ?>
24 24
 
25
-			<span class="entry-format"><a href="<?php echo esc_url( get_post_format_link( 'link' ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'All %s posts', 'strip' ), get_post_format_string( 'link' ) ) ); ?>"><?php echo esc_html( get_post_format_string( 'link' ) ); ?></a></span>
25
+			<span class="entry-format"><a href="<?php echo esc_url(get_post_format_link('link')); ?>" title="<?php echo esc_attr(sprintf(__('All %s posts', 'strip'), get_post_format_string('link'))); ?>"><?php echo esc_html(get_post_format_string('link')); ?></a></span>
26 26
 
27
-			<?php edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?>
27
+			<?php edit_post_link(__('Edit', 'strip'), '<span class="edit-link">', '</span>'); ?>
28 28
 		</footer><!-- .entry-meta -->
29 29
 
30 30
 		<div class="entry-content">
31
-			<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'strip' ) ); ?>
31
+			<?php the_content(__('Continue reading <span class="meta-nav">&rarr;</span>', 'strip')); ?>
32 32
 
33 33
 			</div><!-- .entry-content -->
34 34
 		</div><!-- .entry-wrap -->
Please login to merge, or discard this patch.
content-audio.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -14,30 +14,30 @@
 block discarded – undo
14 14
 		<div class="entry-info">
15 15
 			<header class="entry-header">
16 16
 				<?php
17
-					$categories_list = get_the_category_list( __( ', ', 'strip' ) );
18
-				if ( $categories_list && strip_categorized_blog() ) {
17
+					$categories_list = get_the_category_list(__(', ', 'strip'));
18
+				if ($categories_list && strip_categorized_blog()) {
19 19
 					echo '<span class="categories-links">' . $categories_list . '</span>';
20 20
 				}
21 21
 
22
-				if ( ! is_single() ) :
23
-					the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
22
+				if ( ! is_single()) :
23
+					the_title('<h1 class="entry-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h1>');
24 24
 				else :
25
-						the_title( '<h1 class="entry-title">', '</h1>' );
25
+						the_title('<h1 class="entry-title">', '</h1>');
26 26
 				endif;
27 27
 				?>
28 28
 			</header><!-- .entry-header -->
29 29
 
30 30
 			<footer class="entry-meta">
31 31
 
32
-				<span class="entry-format"><a href="<?php echo esc_url( get_post_format_link( 'audio' ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'All %s posts', 'strip' ), get_post_format_string( 'audio' ) ) ); ?>"><?php echo esc_html( get_post_format_string( 'audio' ) ); ?></a></span>
32
+				<span class="entry-format"><a href="<?php echo esc_url(get_post_format_link('audio')); ?>" title="<?php echo esc_attr(sprintf(__('All %s posts', 'strip'), get_post_format_string('audio'))); ?>"><?php echo esc_html(get_post_format_string('audio')); ?></a></span>
33 33
 
34
-				<?php edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?>
34
+				<?php edit_post_link(__('Edit', 'strip'), '<span class="edit-link">', '</span>'); ?>
35 35
 			</footer><!-- .entry-meta -->
36 36
 
37 37
 		</div><!-- .entry-info -->
38 38
 
39 39
 		<div class="entry-content clear">
40
-			<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'strip' ) ); ?>
40
+			<?php the_content(__('Continue reading <span class="meta-nav">&rarr;</span>', 'strip')); ?>
41 41
 
42 42
 		</div><!-- .entry-content -->
43 43
 	</div><!-- .entry-wrap -->
Please login to merge, or discard this patch.
content-video.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -7,31 +7,31 @@  discard block
 block discarded – undo
7 7
  */
8 8
 
9 9
 // Access global variable directly to set content_width.
10
-if ( isset( $GLOBALS['content_width'] ) ) {
10
+if (isset($GLOBALS['content_width'])) {
11 11
 	$GLOBALS['content_width'] = 1920;
12 12
 }
13 13
 ?>
14 14
 
15
-<article id="post-<?php the_ID(); ?>" <?php post_class( 'clear' ); ?>>
15
+<article id="post-<?php the_ID(); ?>" <?php post_class('clear'); ?>>
16 16
 	<div class="entry-wrap wrap clear">
17 17
 
18 18
 	<?php
19
-	if ( '' !== get_the_post_thumbnail() ) :
20
-		the_post_thumbnail( 'strip-featured-thumbnail' );
19
+	if ('' !== get_the_post_thumbnail()) :
20
+		the_post_thumbnail('strip-featured-thumbnail');
21 21
 	endif;
22 22
 	?>
23 23
 
24 24
 	<header class="entry-header">
25 25
 		<?php
26
-			$categories_list = get_the_category_list( __( ', ', 'strip' ) );
27
-		if ( $categories_list && strip_categorized_blog() ) {
26
+			$categories_list = get_the_category_list(__(', ', 'strip'));
27
+		if ($categories_list && strip_categorized_blog()) {
28 28
 			echo '<span class="categories-links">' . $categories_list . '</span>';
29 29
 		}
30 30
 
31
-		if ( ! is_single() ) :
32
-			the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
31
+		if ( ! is_single()) :
32
+			the_title('<h1 class="entry-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h1>');
33 33
 		else :
34
-			the_title( '<h1 class="entry-title">', '</h1>' );
34
+			the_title('<h1 class="entry-title">', '</h1>');
35 35
 		endif;
36 36
 		?>
37 37
 	</header><!-- .entry-header -->
@@ -40,8 +40,8 @@  discard block
 block discarded – undo
40 40
 		<?php
41 41
 			the_content(sprintf(
42 42
 				/* translators: %s: Name of current post. */
43
-				esc_html( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'strip' ), array( 'span' => array( 'class' => array() ) ) ),
44
-				the_title( '<span class="screen-reader-text">"', '"</span>', false )
43
+				esc_html(__('Continue reading %s <span class="meta-nav">&rarr;</span>', 'strip'), array('span' => array('class' => array()))),
44
+				the_title('<span class="screen-reader-text">"', '"</span>', false)
45 45
 			));
46 46
 
47 47
 		?>
@@ -50,16 +50,16 @@  discard block
 block discarded – undo
50 50
 			<footer class="entry-meta">
51 51
 				<?php strip_entry_meta(); ?>
52 52
 
53
-				<span class="entry-format"><a href="<?php echo esc_url( get_post_format_link( 'video' ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'All %s posts', 'strip' ), get_post_format_string( 'video' ) ) ); ?>"><?php echo esc_html( get_post_format_string( 'video' ) ); ?></a></span>
53
+				<span class="entry-format"><a href="<?php echo esc_url(get_post_format_link('video')); ?>" title="<?php echo esc_attr(sprintf(__('All %s posts', 'strip'), get_post_format_string('video'))); ?>"><?php echo esc_html(get_post_format_string('video')); ?></a></span>
54 54
 
55
-				<?php edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?>
55
+				<?php edit_post_link(__('Edit', 'strip'), '<span class="edit-link">', '</span>'); ?>
56 56
 			</footer><!-- .entry-meta -->
57 57
 
58
-	<?php if ( has_excerpt() ) : ?>
58
+	<?php if (has_excerpt()) : ?>
59 59
 		<div class="entry-summary">
60
-	<?php do_action( 'strip_formatted_posts_excerpt_before' ); ?>
60
+	<?php do_action('strip_formatted_posts_excerpt_before'); ?>
61 61
 	<?php the_excerpt(); ?>
62
-	<?php do_action( 'strip_formatted_posts_excerpt_after' ); ?>
62
+	<?php do_action('strip_formatted_posts_excerpt_after'); ?>
63 63
 		</div><!-- .entry-caption -->
64 64
 	<?php endif; ?>
65 65
 
Please login to merge, or discard this patch.
archive-story.php 1 patch
Spacing   +15 added lines, -15 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>
@@ -28,28 +28,28 @@  discard block
 block discarded – undo
28 28
 		<div class="columns">
29 29
 
30 30
 		<?php
31
-		if ( get_query_var( 'paged' ) ) {
31
+		if (get_query_var('paged')) {
32 32
 			$paged = 1;
33 33
 		}
34 34
 
35 35
 					// Call and run loop in descending order.
36
-					$loop = new WP_Query( array(
36
+					$loop = new WP_Query(array(
37 37
 						'post_type'			     => 'comic',
38 38
 						'story'              => '', // add story term here if you want this template to only archive a specific story.
39 39
 						'posts_per_page'     => 12, // changes default Blog pages number "reading settings" set in dashboard.
40 40
 						'paged'              => $paged, // you absolutely need this.
41 41
 						'orderby'            => 'title', // order by title or date.
42 42
 						'order'              => 'DESC',
43
-					) );
43
+					));
44 44
 
45 45
 					// Start the loop.
46
-					if ( $loop->have_posts() ) :
47
-						while ( $loop->have_posts() ) :
46
+					if ($loop->have_posts()) :
47
+						while ($loop->have_posts()) :
48 48
 							$loop->the_post();
49 49
 			?>
50 50
 			<div class="column">
51
-				<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php printf( esc_html__( 'Permanent Link to %s', 'strip' ),the_title_attribute( 'echo=0' ) ); ?>"></a>
52
-				<?php if ( get_the_post_thumbnail() !== '' ) {
51
+				<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php printf(esc_html__('Permanent Link to %s', 'strip'), the_title_attribute('echo=0')); ?>"></a>
52
+				<?php if (get_the_post_thumbnail() !== '') {
53 53
 
54 54
 					echo '<a href="';
55 55
 					the_permalink();
@@ -64,12 +64,12 @@  discard block
 block discarded – undo
64 64
 	the_permalink();
65 65
 	echo '" class="thumbnail-wrapper">';
66 66
 	echo '<img src="';
67
-	echo esc_html( get_first_image() );
67
+	echo esc_html(get_first_image());
68 68
 	echo '" alt="" />';
69 69
 	echo '</a>';
70 70
 } ?>
71 71
 
72
-<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>
72
+<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>
73 73
 
74 74
 			</div><!-- .column -->
75 75
 			<?php endwhile; ?>
@@ -82,10 +82,10 @@  discard block
 block discarded – undo
82 82
 // get_next_posts_link() usage with max_num_pages. ?>
83 83
 <nav class="paging-navigation">
84 84
 <div class="nav-previous-page">
85
-<?php next_posts_link( esc_html_x( 'Previous episodes', 'Next posts link', 'strip' ), $loop->max_num_pages ); ?>
85
+<?php next_posts_link(esc_html_x('Previous episodes', 'Next posts link', 'strip'), $loop->max_num_pages); ?>
86 86
 	</div>
87 87
 		<div class="nav-next-page">
88
-			<?php previous_posts_link( esc_html_x( 'Recent episodes' , 'Previous post link', 'strip' ) ); ?>
88
+			<?php previous_posts_link(esc_html_x('Recent episodes', 'Previous post link', 'strip')); ?>
89 89
 		</div>
90 90
 </nav>
91 91
 <?php // clean up after the query and pagination.
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 ?>
94 94
 		<?php
95 95
 		else :
96
-			get_template_part( 'no-results', 'archive-comic' );
96
+			get_template_part('no-results', 'archive-comic');
97 97
 		endif; ?>
98 98
 
99 99
 				</div><!-- .wrap -->
Please login to merge, or discard this patch.
archive-titles.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 
15 15
 			<header class="entry-header">
16 16
 
17
-			<?php the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); ?>
17
+			<?php the_title('<h1 class="entry-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h1>'); ?>
18 18
 
19 19
 			<?php // call the series by title and list them. ?>
20 20
 
@@ -23,9 +23,9 @@  discard block
 block discarded – undo
23 23
 			<?php
24 24
 				$args = array(
25 25
 				'post_type'     => 'comic',
26
-				'title_li'      => esc_html_e( 'All Episodes', 'strip' ),
26
+				'title_li'      => esc_html_e('All Episodes', 'strip'),
27 27
 				);
28
-				wp_list_pages( $args );
28
+				wp_list_pages($args);
29 29
 			?>
30 30
 			</h2>
31 31
 			<br>
Please login to merge, or discard this patch.
assets/admin.php 1 patch
Spacing   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -26,20 +26,20 @@  discard block
 block discarded – undo
26 26
  */
27 27
 function disable_default_dashboard_widgets() {
28 28
 	global $wp_meta_boxes;
29
-	unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_activity'] );        // Activity Widget.
30
-	unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments'] ); // Comments Widget.
31
-	unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links'] );  // Incoming Links Widget.
32
-	unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins'] );         // Plugins Widget.
29
+	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_activity']); // Activity Widget.
30
+	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']); // Comments Widget.
31
+	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']); // Incoming Links Widget.
32
+	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']); // Plugins Widget.
33 33
 
34
-	unset( $wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press'] );       // Quick Press Widget.
35
-	unset( $wp_meta_boxes['dashboard']['side']['core']['dashboard_recent_drafts'] );     // Recent Drafts Widget.
36
-	unset( $wp_meta_boxes['dashboard']['side']['core']['dashboard_primary'] );           // WordPress related feed.
37
-	unset( $wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary'] );         //
34
+	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']); // Quick Press Widget.
35
+	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_recent_drafts']); // Recent Drafts Widget.
36
+	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']); // WordPress related feed.
37
+	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']); //
38 38
 
39 39
 	// remove plugin dashboard boxes
40
-	unset( $wp_meta_boxes['dashboard']['normal']['core']['yoast_db_widget'] );           // Yoast's SEO Plugin Widget.
41
-	unset( $wp_meta_boxes['dashboard']['normal']['core']['rg_forms_dashboard'] );        // Gravity Forms Plugin Widget.
42
-	unset( $wp_meta_boxes['dashboard']['normal']['core']['bbp-dashboard-right-now'] );   // bbPress Plugin Widget.
40
+	unset($wp_meta_boxes['dashboard']['normal']['core']['yoast_db_widget']); // Yoast's SEO Plugin Widget.
41
+	unset($wp_meta_boxes['dashboard']['normal']['core']['rg_forms_dashboard']); // Gravity Forms Plugin Widget.
42
+	unset($wp_meta_boxes['dashboard']['normal']['core']['bbp-dashboard-right-now']); // bbPress Plugin Widget.
43 43
 
44 44
 	/*
45 45
 	Have more plugin widgets you'd like to remove?
@@ -62,29 +62,29 @@  discard block
 block discarded – undo
62 62
  * RSS Dasboars Widget
63 63
  */
64 64
 function strip_rss_dashboard_widget() {
65
-	if ( function_exists( 'fetch_feed' ) ) {
66
-		$feed = fetch_feed( 'https://silent-comics.tumblr.com/rss/' );// specify the source feed.
67
-		if ( is_wp_error( $feed ) ) {
65
+	if (function_exists('fetch_feed')) {
66
+		$feed = fetch_feed('https://silent-comics.tumblr.com/rss/'); // specify the source feed.
67
+		if (is_wp_error($feed)) {
68 68
 			$limit = 0;
69 69
 			$items = 0;
70 70
 			return;
71 71
 		}
72
-			$limit = $feed->get_item_quantity( 7 );                        // specify number of items.
73
-			$items = $feed->get_items( 0, $limit );                        // create an array of items.
72
+			$limit = $feed->get_item_quantity(7); // specify number of items.
73
+			$items = $feed->get_items(0, $limit); // create an array of items.
74 74
 	}
75
-	if ( 0 ) { echo '<div>The RSS Feed is either empty or unavailable.</div>'; // fallback message.
75
+	if (0) { echo '<div>The RSS Feed is either empty or unavailable.</div>'; // fallback message.
76 76
 		return;
77 77
 	}
78
-	foreach ( $items as $item ) { ?>
78
+	foreach ($items as $item) { ?>
79 79
 
80 80
 			<h4 style="margin-bottom: 0;">
81
-				<a href="<?php echo $item->get_permalink(); ?>" title="<?php echo mysql2date( __( 'j F Y @ g:i a', 'strip' ), $item->get_date( 'Y-m-d H:i:s' ) ); ?>" target="_blank">
81
+				<a href="<?php echo $item->get_permalink(); ?>" title="<?php echo mysql2date(__('j F Y @ g:i a', 'strip'), $item->get_date('Y-m-d H:i:s')); ?>" target="_blank">
82 82
 					<?php echo $item->get_title(); ?>
83 83
 				</a>
84 84
 			</h4>
85 85
 			<p style="margin-top: 0.5em;
86 86
 					  .inside { max-width: 240px;}">
87
-			<?php echo substr( $item->get_description(), 0, 600 ); ?>
87
+			<?php echo substr($item->get_description(), 0, 600); ?>
88 88
 			</p>
89 89
 			<?php
90 90
 	}
@@ -94,16 +94,16 @@  discard block
 block discarded – undo
94 94
  * Calling all custom dashboard widgets.
95 95
  */
96 96
 function strip_custom_dashboard_widgets() {
97
-	wp_add_dashboard_widget( 'strip_rss_dashboard_widget', __( 'SILENT COMICS on tumblr', 'strip' ), 'strip_rss_dashboard_widget' );
97
+	wp_add_dashboard_widget('strip_rss_dashboard_widget', __('SILENT COMICS on tumblr', 'strip'), 'strip_rss_dashboard_widget');
98 98
 	/**
99 99
 	* Be sure to drop any other created Dashboard Widgets.
100 100
 	* in this function and they will all load.
101 101
 	*/
102 102
 }
103 103
 // removing the dashboard widgets.
104
-add_action( 'wp_dashboard_setup', 'disable_default_dashboard_widgets' );
104
+add_action('wp_dashboard_setup', 'disable_default_dashboard_widgets');
105 105
 // adding any custom widgets.
106
-add_action( 'wp_dashboard_setup', 'strip_custom_dashboard_widgets' );
106
+add_action('wp_dashboard_setup', 'strip_custom_dashboard_widgets');
107 107
 
108 108
 
109 109
 /************* CUSTOM LOGIN PAGE *****************/
@@ -114,10 +114,10 @@  discard block
 block discarded – undo
114 114
  * See http://codex.wordpress.org/Plugin_API/Action_Reference/login_enqueue_scripts.
115 115
  */
116 116
 function strip_login_css() {
117
-	 wp_enqueue_style( 'strip_login_css', get_template_directory_uri() . '/assets/css/login.css', false );
117
+	 wp_enqueue_style('strip_login_css', get_template_directory_uri() . '/assets/css/login.css', false);
118 118
 
119 119
 	// Enqueue custom font to the login form.
120
-	wp_enqueue_style( 'inconsolata', get_template_directory_uri() . '/assets/fonts/inconsolata.css', array(), null );
120
+	wp_enqueue_style('inconsolata', get_template_directory_uri() . '/assets/fonts/inconsolata.css', array(), null);
121 121
 }
122 122
 
123 123
 /**
@@ -130,14 +130,14 @@  discard block
 block discarded – undo
130 130
 	 * Changing the alt text on the logo to show your site name.
131 131
 	 */
132 132
 function strip_login_title() {
133
-	return get_option( 'blogname' ); }
133
+	return get_option('blogname'); }
134 134
 
135 135
 // calling it only on the login page.
136
-add_action( 'login_enqueue_scripts', 'strip_login_css', 10 );
136
+add_action('login_enqueue_scripts', 'strip_login_css', 10);
137 137
 // Add custom font to the login form.
138
-add_action( 'login_enqueue_scripts', 'inconsolata.css', 10 );
139
-add_filter( 'login_headerurl', 'strip_login_url' );
140
-add_filter( 'login_headertitle', 'strip_login_title' );
138
+add_action('login_enqueue_scripts', 'inconsolata.css', 10);
139
+add_filter('login_headerurl', 'strip_login_url');
140
+add_filter('login_headertitle', 'strip_login_title');
141 141
 
142 142
 
143 143
 /************* CUSTOMIZE ADMIN *******************/
@@ -154,10 +154,10 @@  discard block
 block discarded – undo
154 154
  */
155 155
 function strip_custom_admin_footer() {
156 156
 	?>
157
-	<span id="footer-thankyou"><a href="<?php echo esc_url( __( 'http://silent-comics.com/', 'strip' ) ); ?>"><?php printf( esc_html__( 'Developed by %s', 'strip' ), 'Silent Comics' ); ?></a>
157
+	<span id="footer-thankyou"><a href="<?php echo esc_url(__('http://silent-comics.com/', 'strip')); ?>"><?php printf(esc_html__('Developed by %s', 'strip'), 'Silent Comics'); ?></a>
158 158
 			<span class="sep"> | </span>
159
-			<a href="<?php echo esc_url( __( 'https://github.com/SilentComics/Strip/', 'strip' ) ); ?>"><?php printf( esc_html__( 'Contribute on %s', 'strip' ), 'GitHub' ); ?></a>
159
+			<a href="<?php echo esc_url(__('https://github.com/SilentComics/Strip/', 'strip')); ?>"><?php printf(esc_html__('Contribute on %s', 'strip'), 'GitHub'); ?></a>
160 160
 <?php }
161 161
 
162 162
 // adding it to the admin area.
163
-add_filter( 'admin_footer_text', 'strip_custom_admin_footer' );
163
+add_filter('admin_footer_text', 'strip_custom_admin_footer');
Please login to merge, or discard this patch.
functions.php 1 patch
Spacing   +197 added lines, -197 removed lines patch added patch discarded remove patch
@@ -9,11 +9,11 @@  discard block
 block discarded – undo
9 9
  */
10 10
 
11 11
 // Set the content width based on the theme's design and stylesheet.
12
-if ( ! isset( $content_width ) ) {
12
+if ( ! isset($content_width)) {
13 13
 	$content_width = 1920;
14 14
 } /* pixels */
15 15
 
16
-if ( ! function_exists( 'strip_setup' ) ) :
16
+if ( ! function_exists('strip_setup')) :
17 17
 	/**
18 18
 	 * Sets up theme defaults and registers support for various WordPress features.
19 19
 	 *
@@ -28,31 +28,31 @@  discard block
 block discarded – undo
28 28
 * adding custom login css
29 29
 * changing text in footer of admin
30 30
 */
31
-		require_once( 'assets/admin.php' );
31
+		require_once('assets/admin.php');
32 32
 		/**
33 33
 * Make theme available for translation
34 34
 * Translations can be filed in the /languages/ directory
35 35
 * If you're building a theme based on strip, use a find and replace
36 36
 * to change 'strip' to the name of your theme in all the template files
37 37
 */
38
-		load_theme_textdomain( 'strip', get_template_directory() . '/languages' );
38
+		load_theme_textdomain('strip', get_template_directory() . '/languages');
39 39
 
40 40
 		/**
41 41
 * Add default posts and comments RSS feed links to head
42 42
 */
43
-		add_theme_support( 'automatic-feed-links' );
43
+		add_theme_support('automatic-feed-links');
44 44
 
45 45
 		/**
46 46
 * Enable support for title-tag. Allows themes to add document title tag to HTML <head> (since version 4.1.).
47 47
 */
48
-		add_theme_support( 'title-tag' );
48
+		add_theme_support('title-tag');
49 49
 
50 50
 		/**
51 51
 * Enable support for custom logo.
52 52
 *
53 53
 * @since strip 1.0
54 54
 */
55
-		add_theme_support( 'custom-logo', array(
55
+		add_theme_support('custom-logo', array(
56 56
 			'height'      => 156,
57 57
 			'width'       => 312,
58 58
 			'flex-height' => true,
@@ -65,9 +65,9 @@  discard block
 block discarded – undo
65 65
 *
66 66
 * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
67 67
 */
68
-		add_theme_support( 'post-thumbnails' );
69
-		set_post_thumbnail_size( 1920, 0 ); // was using add_image_size.
70
-		add_image_size( 'story-thumb', 312, 156, true ); // cropped.
68
+		add_theme_support('post-thumbnails');
69
+		set_post_thumbnail_size(1920, 0); // was using add_image_size.
70
+		add_image_size('story-thumb', 312, 156, true); // cropped.
71 71
 
72 72
 		/**
73 73
 		 * See https://css-tricks.com/snippets/wordpress/remove-paragraph-tags-from-around-images/
@@ -75,34 +75,34 @@  discard block
 block discarded – undo
75 75
 		 *
76 76
 		 * @param $strings $content filter_ptags_on_images.
77 77
 		 */
78
-		function filter_ptags_on_images( $content ) {
79
-			return preg_replace( '/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $content );
78
+		function filter_ptags_on_images($content) {
79
+			return preg_replace('/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $content);
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
+		));
101 101
 
102 102
 		/**
103 103
 	 * Enable support for Post Formats
104 104
 	 */
105
-		add_theme_support( 'post-formats', array(
105
+		add_theme_support('post-formats', array(
106 106
 			'aside',
107 107
 			'image',
108 108
 			'video',
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 			'status',
113 113
 			'audio',
114 114
 			'chat',
115
-		) );
115
+		));
116 116
 
117 117
 		// Setup the WordPress core custom background feature.
118 118
 		add_theme_support('custom-background', apply_filters('strip_custom_background_args', array(
@@ -125,22 +125,22 @@  discard block
 block discarded – undo
125 125
 	* This theme styles the visual editor to resemble the theme style,
126 126
 	* specifically font, colors, icons, and column width.
127 127
 	*/
128
-	add_editor_style( array( '/assets/css/editor-style.css', '/assets/fonts/fenix.css' ) );
128
+	add_editor_style(array('/assets/css/editor-style.css', '/assets/fonts/fenix.css'));
129 129
 
130 130
 	// Indicate widget sidebars can use selective refresh in the Customizer.
131 131
 	// See https://make.wordpress.org/core/2016/03/22/implementing-selective-refresh-support-for-widgets/ for detail.
132
-	add_theme_support( 'customize-selective-refresh-widgets' );
132
+	add_theme_support('customize-selective-refresh-widgets');
133 133
 endif; // strip_setup.
134
-add_action( 'after_setup_theme', 'strip_setup' );
134
+add_action('after_setup_theme', 'strip_setup');
135 135
 
136 136
 /**
137 137
  * Register widgetized area and update sidebar with default widgets
138 138
  */
139 139
 function strip_widgets_init() {
140 140
 	register_sidebar(array(
141
-		'name'          => __( 'Main Sidebar', 'strip' ),
141
+		'name'          => __('Main Sidebar', 'strip'),
142 142
 		'id'            => 'sidebar',
143
-		'description'   => __( 'The main body widget area', 'strip' ),
143
+		'description'   => __('The main body widget area', 'strip'),
144 144
 		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
145 145
 		'after_widget'	=> '</aside>',
146 146
 		'before_title'	=> '<h2 class="widget-title">',
@@ -148,10 +148,10 @@  discard block
 block discarded – undo
148 148
 	));
149 149
 
150 150
 	// First footer widget area, located in the footer. Empty by default.
151
-	register_sidebar( array(
152
-		'name'          => __( 'First Footer Widget', 'strip' ),
151
+	register_sidebar(array(
152
+		'name'          => __('First Footer Widget', 'strip'),
153 153
 		'id'            => 'first-footer-widget',
154
-		'description'   => __( 'The first footer widget', 'strip' ),
154
+		'description'   => __('The first footer widget', 'strip'),
155 155
 		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
156 156
 		'after_widget'	=> '</aside>',
157 157
 		'before_title'	=> '<h3 class="widget-title">',
@@ -160,9 +160,9 @@  discard block
 block discarded – undo
160 160
 
161 161
 	// Second Footer Widget Area, located in the footer. Empty by default.
162 162
 	register_sidebar(array(
163
-		'name'          => __( 'Second Footer Widget', 'strip' ),
163
+		'name'          => __('Second Footer Widget', 'strip'),
164 164
 		'id'            => 'second-footer-widget',
165
-		'description'   => __( 'The second footer widget', 'strip' ),
165
+		'description'   => __('The second footer widget', 'strip'),
166 166
 		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
167 167
 		'after_widget'	=> '</aside>',
168 168
 		'before_title'	=> '<h3 class="widget-title">',
@@ -171,9 +171,9 @@  discard block
 block discarded – undo
171 171
 
172 172
 	// Third Footer Widget Area, located in the footer. Empty by default.
173 173
 	register_sidebar(array(
174
-		'name'          => __( 'Third Footer Widget', 'strip' ),
174
+		'name'          => __('Third Footer Widget', 'strip'),
175 175
 		'id'            => 'third-footer-widget',
176
-		'description'   => __( 'The third footer widget', 'strip' ),
176
+		'description'   => __('The third footer widget', 'strip'),
177 177
 		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
178 178
 		'after_widget'	=> '</aside>',
179 179
 		'before_title'	=> '<h3 class="widget-title">',
@@ -182,9 +182,9 @@  discard block
 block discarded – undo
182 182
 
183 183
 	// Fourth Footer Widget Area, located in the footer. Empty by default.
184 184
 	register_sidebar(array(
185
-		'name'           => __( 'Fourth Footer Widget', 'strip' ),
185
+		'name'           => __('Fourth Footer Widget', 'strip'),
186 186
 		'id'             => 'fourth-footer-widget',
187
-		'description'    => __( 'The fourth footer widget', 'strip' ),
187
+		'description'    => __('The fourth footer widget', 'strip'),
188 188
 		'before_widget'  => '<aside id="%1$s" class="widget %2$s">',
189 189
 		'after_widget'	 => '</aside>',
190 190
 		'before_title'	 => '<h3 class="widget-title">',
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
 	));
193 193
 
194 194
 }
195
-add_action( 'widgets_init', 'strip_widgets_init' );
195
+add_action('widgets_init', 'strip_widgets_init');
196 196
 
197 197
 /**
198 198
  * Handles JavaScript detection.
@@ -204,47 +204,47 @@  discard block
 block discarded – undo
204 204
 function strip_javascript_detection() {
205 205
 	echo "<script>(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);</script>\n";
206 206
 }
207
-add_action( 'wp_head', 'strip_javascript_detection', 0 );
207
+add_action('wp_head', 'strip_javascript_detection', 0);
208 208
 
209 209
 /**
210 210
  * Enqueue_styles for custom fonts.
211 211
  */
212 212
 function strip_scripts() {
213 213
 	// add custom font here if any.
214
-	wp_enqueue_style( 'fenix', get_template_directory_uri() . '/assets/fonts/fenix.css', array(), null );
214
+	wp_enqueue_style('fenix', get_template_directory_uri() . '/assets/fonts/fenix.css', array(), null);
215 215
 
216
-	wp_enqueue_style( 'inconsolata', get_template_directory_uri() . '/assets/fonts/inconsolata.css', array(), null );
216
+	wp_enqueue_style('inconsolata', get_template_directory_uri() . '/assets/fonts/inconsolata.css', array(), null);
217 217
 
218 218
 	// Theme stylesheet.
219
-	wp_enqueue_style( 'strip-style', get_stylesheet_uri() );
219
+	wp_enqueue_style('strip-style', get_stylesheet_uri());
220 220
 
221 221
 	// Load the Internet Explorer specific stylesheet. Conditional stylesheet — tested and works with IE9 on Windows7.
222
-	wp_enqueue_style( 'strip-ie', get_template_directory_uri() . 'assets/css/ie.css', array( 'strip-style' ), '20160305' );
223
-	wp_style_add_data( 'strip-ie', 'conditional', 'lt IE 10' );
222
+	wp_enqueue_style('strip-ie', get_template_directory_uri() . 'assets/css/ie.css', array('strip-style'), '20160305');
223
+	wp_style_add_data('strip-ie', 'conditional', 'lt IE 10');
224 224
 
225
-	if ( has_nav_menu( 'primary' ) ) {
226
-		wp_enqueue_script( 'strip-navigation', get_template_directory_uri() . '/assets/js/min/navigation-min.js', array(), '20120206', true );
225
+	if (has_nav_menu('primary')) {
226
+		wp_enqueue_script('strip-navigation', get_template_directory_uri() . '/assets/js/min/navigation-min.js', array(), '20120206', true);
227 227
 	}
228 228
 
229 229
 	// Load the html5 shiv.
230
-	wp_enqueue_script( 'strip-html5', get_template_directory_uri() . '/assets/js/min/html5-min.js', array(), '3.7.3' );
231
-	wp_script_add_data( 'strip-html5', 'conditional', 'lt IE 9' );
230
+	wp_enqueue_script('strip-html5', get_template_directory_uri() . '/assets/js/min/html5-min.js', array(), '3.7.3');
231
+	wp_script_add_data('strip-html5', 'conditional', 'lt IE 9');
232 232
 
233
-	wp_enqueue_script( 'strip-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/min/skip-link-focus-fix-min.js', array(), '20130115', true );
233
+	wp_enqueue_script('strip-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/min/skip-link-focus-fix-min.js', array(), '20130115', true);
234 234
 
235 235
 	// toggle comments js.
236
-	wp_enqueue_script( 'strip-toggle-comments', get_template_directory_uri() . '/assets/js/min/toggle-comments-min.js', array( 'jquery' ), '20160401', false );
236
+	wp_enqueue_script('strip-toggle-comments', get_template_directory_uri() . '/assets/js/min/toggle-comments-min.js', array('jquery'), '20160401', false);
237 237
 
238
-	if ( is_single() && comments_open() && get_option( 'thread_comments' ) ) {
239
-		wp_enqueue_script( 'comment-reply' );
238
+	if (is_single() && comments_open() && get_option('thread_comments')) {
239
+		wp_enqueue_script('comment-reply');
240 240
 
241
-		if ( is_single() && wp_attachment_is_image() ) {
242
-			wp_enqueue_script( 'strip-keyboard-image-navigation', get_template_directory_uri() . '/assets/js/min/keyboard-image-navigation-min.js', array( 'jquery' ), '20120202' );
241
+		if (is_single() && wp_attachment_is_image()) {
242
+			wp_enqueue_script('strip-keyboard-image-navigation', get_template_directory_uri() . '/assets/js/min/keyboard-image-navigation-min.js', array('jquery'), '20120202');
243 243
 		}
244 244
 	}
245 245
 }
246 246
 
247
-add_action( 'wp_enqueue_scripts', 'strip_scripts' );
247
+add_action('wp_enqueue_scripts', 'strip_scripts');
248 248
 
249 249
 /**
250 250
  * Implement the Custom Header feature.
@@ -278,23 +278,23 @@  discard block
 block discarded – undo
278 278
  * @link https://css-tricks.com/snippets/wordpress/get-the-first-image-from-a-post/
279 279
  * see https://gist.github.com/tommaitland/8001524
280 280
  */
281
-function get_first_image( $size = false ) {
281
+function get_first_image($size = false) {
282 282
 	  global $post, $_wp_additional_image_sizes;
283 283
 
284
-	  $output = preg_match_all( '/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', do_shortcode( $post->post_content, 'gallery' ), $matches );
285
-		$first_img = isset( $matches[1][0] ) ? $matches[1][0] : null;
284
+	  $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', do_shortcode($post->post_content, 'gallery'), $matches);
285
+		$first_img = isset($matches[1][0]) ? $matches[1][0] : null;
286 286
 
287
-	if ( empty( $first_img ) ) {
287
+	if (empty($first_img)) {
288 288
 			return get_template_directory_uri() . '/assets/images/empty.png'; // path to default image.
289 289
 	}
290
-	if ( $size && $_wp_additional_image_sizes[ $size ]['crop'] === 0 ) {
291
-		$size = '-' . $_wp_additional_image_sizes[ $size ]['width'] . 'x' . $_wp_additional_image_sizes[ $size ]['height'] . '.jpg';
290
+	if ($size && $_wp_additional_image_sizes[$size]['crop'] === 0) {
291
+		$size = '-' . $_wp_additional_image_sizes[$size]['width'] . 'x' . $_wp_additional_image_sizes[$size]['height'] . '.jpg';
292 292
 		$pattern = '/-\d+x\d+\.jpg$/i';
293
-		$first_img = preg_replace( $pattern, $size, $first_img );
293
+		$first_img = preg_replace($pattern, $size, $first_img);
294 294
 	}
295 295
 	  return $first_img;
296 296
 }
297
-			add_filter( 'first_img', 'get_first_image', 'thumbnail' );
297
+			add_filter('first_img', 'get_first_image', 'thumbnail');
298 298
 
299 299
 /**
300 300
  * Register Custom Post Type for comics
@@ -302,24 +302,24 @@  discard block
 block discarded – undo
302 302
 function comic_post_type() {
303 303
 
304 304
 	$labels = array(
305
-		'name'                       => _x( 'Comics', 'Post Type General Name', 'strip' ),
306
-		'singular_name'              => _x( 'Comic', 'Post Type Singular Name', 'strip' ),
307
-		'menu_name'                  => _x( 'Comics', 'admin menu', 'strip' ),
308
-		'name_admin_bar'             => _x( 'Comic', 'add new on admin bar', 'strip' ),
309
-		'parent_item_colon'	         => __( 'Parent Comic:', 'strip' ),
310
-		'all_items'                  => __( 'All Comics', 'strip' ),
311
-		'add_new_item'               => __( 'Add New Comic', 'strip' ),
312
-		'add_new'                    => __( 'Add New Comic', 'strip' ),
313
-		'new_item'                   => __( 'New Comic', 'strip' ),
314
-		'edit_item'                  => __( 'Edit Comic', 'strip' ),
315
-		'update_item'                => __( 'Update Comic', 'strip' ),
316
-		'view_item'                  => __( 'View Comic', 'strip' ),
317
-		'search_items'               => __( 'Search Item', 'strip' ),
318
-		'not_found'                  => __( 'No Comics found', 'strip' ),
319
-		'not_found_in_trash'         => __( 'No Comics found in Trash', 'strip' ),
320
-		'items_list'                 => __( 'Comics list', 'strip' ),
321
-		'items_list_navigation'      => __( 'Comics list navigation', 'strip' ),
322
-		'filter_items_list'          => __( 'Filter Comics list', 'strip' ),
305
+		'name'                       => _x('Comics', 'Post Type General Name', 'strip'),
306
+		'singular_name'              => _x('Comic', 'Post Type Singular Name', 'strip'),
307
+		'menu_name'                  => _x('Comics', 'admin menu', 'strip'),
308
+		'name_admin_bar'             => _x('Comic', 'add new on admin bar', 'strip'),
309
+		'parent_item_colon'	         => __('Parent Comic:', 'strip'),
310
+		'all_items'                  => __('All Comics', 'strip'),
311
+		'add_new_item'               => __('Add New Comic', 'strip'),
312
+		'add_new'                    => __('Add New Comic', 'strip'),
313
+		'new_item'                   => __('New Comic', 'strip'),
314
+		'edit_item'                  => __('Edit Comic', 'strip'),
315
+		'update_item'                => __('Update Comic', 'strip'),
316
+		'view_item'                  => __('View Comic', 'strip'),
317
+		'search_items'               => __('Search Item', 'strip'),
318
+		'not_found'                  => __('No Comics found', 'strip'),
319
+		'not_found_in_trash'         => __('No Comics found in Trash', 'strip'),
320
+		'items_list'                 => __('Comics list', 'strip'),
321
+		'items_list_navigation'      => __('Comics list navigation', 'strip'),
322
+		'filter_items_list'          => __('Filter Comics list', 'strip'),
323 323
 	);
324 324
 
325 325
 	$supports = array(
@@ -336,11 +336,11 @@  discard block
 block discarded – undo
336 336
 	);
337 337
 
338 338
 	$args = array(
339
-		'label'                      => __( 'Comic', 'strip' ),
340
-		'description'                => __( 'Publish Comics and Webcomics', 'strip' ),
339
+		'label'                      => __('Comic', 'strip'),
340
+		'description'                => __('Publish Comics and Webcomics', 'strip'),
341 341
 		'labels'                     => $labels,
342 342
 		'supports'                   => $supports,
343
-		'taxonomies'                 => array( 'story', 'story_term', 'draft' ),
343
+		'taxonomies'                 => array('story', 'story_term', 'draft'),
344 344
 		'hierarchical'               => true,
345 345
 		'public'                     => true,
346 346
 		'show_ui'                    => true,
@@ -353,40 +353,40 @@  discard block
 block discarded – undo
353 353
 		'has_archive'                => true,
354 354
 		'feeds'                      => true,
355 355
 		'exclude_from_search'        => false,
356
-		'rewrite'                    => array( 'slug' => 'stories', 'with_front' => true ),
356
+		'rewrite'                    => array('slug' => 'stories', 'with_front' => true),
357 357
 		'publicly_queryable'	     => true,
358 358
 		'capability_type'            => 'post',
359 359
 	);
360
-	register_post_type( 'comic', $args );
360
+	register_post_type('comic', $args);
361 361
 }
362 362
 
363 363
 // Hook into the 'init' action.
364
-add_action( 'init', 'comic_post_type', 0 ); // End of register_cpt_comic().
364
+add_action('init', 'comic_post_type', 0); // End of register_cpt_comic().
365 365
 
366 366
 	/**
367 367
 	 * Register Custom Taxonomy 'story'
368 368
 	 */
369 369
 function comic_story_taxonomy() {
370 370
 	$labels = array(
371
-		'name'                       => _x( 'Comic Story', 'Taxonomy General Name', 'strip' ),
372
-		'singular_name'              => _x( 'Comic Story', 'Taxonomy Singular Name', 'strip' ),
373
-		'menu_name'                  => __( 'Comic Stories', 'strip' ),
374
-		'all_items'                  => __( 'All Comic Stories', 'strip' ),
375
-		'parent_item'                => __( 'Parent Story', 'strip' ),
376
-		'parent_item_colon'          => __( 'Parent Story:', 'strip' ),
377
-		'new_item_name'              => __( 'New Comic Story', 'strip' ),
378
-		'add_new_item'               => __( 'Add New Story', 'strip' ),
379
-		'edit_item'                  => __( 'Edit Story', 'strip' ),
380
-		'update_item'                => __( 'Update Story', 'strip' ),
381
-		'view_item'                  => __( 'View Item', 'strip' ),
382
-		'separate_items_with_commas' => __( 'Separate stories with commas', 'strip' ),
383
-		'add_or_remove_items'        => __( 'Add or Remove Stories', 'strip' ),
384
-		'choose_from_most_used'      => __( 'Choose from the most used stories', 'strip' ),
385
-		'popular_items'              => __( 'Popular comic stories', 'strip' ),
386
-		'search_items'               => __( 'Search Stories', 'strip' ),
387
-		'not_found'                  => __( 'No comic Stories found', 'strip' ),
388
-		'items_list'                 => __( 'Comic Stories list', 'strip' ),
389
-		'items_list_navigation'      => __( 'Comic Stories list navigation', 'strip' ),
371
+		'name'                       => _x('Comic Story', 'Taxonomy General Name', 'strip'),
372
+		'singular_name'              => _x('Comic Story', 'Taxonomy Singular Name', 'strip'),
373
+		'menu_name'                  => __('Comic Stories', 'strip'),
374
+		'all_items'                  => __('All Comic Stories', 'strip'),
375
+		'parent_item'                => __('Parent Story', 'strip'),
376
+		'parent_item_colon'          => __('Parent Story:', 'strip'),
377
+		'new_item_name'              => __('New Comic Story', 'strip'),
378
+		'add_new_item'               => __('Add New Story', 'strip'),
379
+		'edit_item'                  => __('Edit Story', 'strip'),
380
+		'update_item'                => __('Update Story', 'strip'),
381
+		'view_item'                  => __('View Item', 'strip'),
382
+		'separate_items_with_commas' => __('Separate stories with commas', 'strip'),
383
+		'add_or_remove_items'        => __('Add or Remove Stories', 'strip'),
384
+		'choose_from_most_used'      => __('Choose from the most used stories', 'strip'),
385
+		'popular_items'              => __('Popular comic stories', 'strip'),
386
+		'search_items'               => __('Search Stories', 'strip'),
387
+		'not_found'                  => __('No comic Stories found', 'strip'),
388
+		'items_list'                 => __('Comic Stories list', 'strip'),
389
+		'items_list_navigation'      => __('Comic Stories list navigation', 'strip'),
390 390
 	);
391 391
 	$args = array(
392 392
 		'labels'                     => $labels,
@@ -398,14 +398,14 @@  discard block
 block discarded – undo
398 398
 		'show_in_nav_menus'          => true,
399 399
 		'show_tagcloud'              => true,
400 400
 		'query_var'	                 => true,
401
-		'rewrite'                    => array( 'slug' => 'story' ),
401
+		'rewrite'                    => array('slug' => 'story'),
402 402
 	);
403
-	register_taxonomy( 'story', array( 'comic' ), $args );
404
-	register_taxonomy_for_object_type( 'story', 'comic' );
403
+	register_taxonomy('story', array('comic'), $args);
404
+	register_taxonomy_for_object_type('story', 'comic');
405 405
 }
406 406
 
407 407
 // Hook into the 'init' action.
408
-add_action( 'init', 'comic_story_taxonomy', 0 );
408
+add_action('init', 'comic_story_taxonomy', 0);
409 409
 
410 410
 /**
411 411
  * Function strip rewrite rules.
@@ -414,31 +414,31 @@  discard block
 block discarded – undo
414 414
 	flush_rewrite_rules();
415 415
 }
416 416
 /* Flush rewrite rules for custom post types. */
417
-add_action( 'after_switch_theme', 'strip_rewrite_rules' );
417
+add_action('after_switch_theme', 'strip_rewrite_rules');
418 418
 
419 419
 // Add Print taxonomy, NOT hierarchical (like tags)
420 420
 // Register Custom Taxonomy.
421 421
 	$labels = array(
422
-		'name'                       => _x( 'Prints', 'Taxonomy General Name', 'strip' ),
423
-		'singular_name'              => _x( 'Print', 'Taxonomy Singular Name', 'strip' ),
424
-		'menu_name'                  => __( 'Print', 'strip' ),
425
-		'all_items'                  => __( 'All Prints', 'strip' ),
426
-		'parent_item'                => __( 'Parent Print', 'strip' ),
427
-		'parent_item_colon'          => __( 'Parent Print:', 'strip' ),
428
-		'new_item_name'              => __( 'New Print Name', 'strip' ),
429
-		'add_new_item'               => __( 'Add New Print', 'strip' ),
430
-		'edit_item'                  => __( 'Edit Print', 'strip' ),
431
-		'update_item'                => __( 'Update Pring', 'strip' ),
432
-		'view_item'                  => __( 'View Print', 'strip' ),
433
-		'separate_items_with_commas' => __( 'Separate prints with commas', 'strip' ),
434
-		'add_or_remove_items'        => __( 'Add or remove prints', 'strip' ),
435
-		'choose_from_most_used'      => __( 'Choose from the most used', 'strip' ),
436
-		'popular_items'              => __( 'Popular Prints', 'strip' ),
437
-		'search_items'               => __( 'Search Prints', 'strip' ),
438
-		'not_found'                  => __( 'Not Found', 'strip' ),
439
-		'no_terms'                   => __( 'No prints', 'strip' ),
440
-		'items_list'                 => __( 'Prints list', 'strip' ),
441
-		'items_list_navigation'      => __( 'Prints list navigation', 'strip' ),
422
+		'name'                       => _x('Prints', 'Taxonomy General Name', 'strip'),
423
+		'singular_name'              => _x('Print', 'Taxonomy Singular Name', 'strip'),
424
+		'menu_name'                  => __('Print', 'strip'),
425
+		'all_items'                  => __('All Prints', 'strip'),
426
+		'parent_item'                => __('Parent Print', 'strip'),
427
+		'parent_item_colon'          => __('Parent Print:', 'strip'),
428
+		'new_item_name'              => __('New Print Name', 'strip'),
429
+		'add_new_item'               => __('Add New Print', 'strip'),
430
+		'edit_item'                  => __('Edit Print', 'strip'),
431
+		'update_item'                => __('Update Pring', 'strip'),
432
+		'view_item'                  => __('View Print', 'strip'),
433
+		'separate_items_with_commas' => __('Separate prints with commas', 'strip'),
434
+		'add_or_remove_items'        => __('Add or remove prints', 'strip'),
435
+		'choose_from_most_used'      => __('Choose from the most used', 'strip'),
436
+		'popular_items'              => __('Popular Prints', 'strip'),
437
+		'search_items'               => __('Search Prints', 'strip'),
438
+		'not_found'                  => __('Not Found', 'strip'),
439
+		'no_terms'                   => __('No prints', 'strip'),
440
+		'items_list'                 => __('Prints list', 'strip'),
441
+		'items_list_navigation'      => __('Prints list navigation', 'strip'),
442 442
 	);
443 443
 
444 444
 	$args = array(
@@ -450,21 +450,21 @@  discard block
 block discarded – undo
450 450
 		'show_in_nav_menus'          => true,
451 451
 		'show_tagcloud'              => true,
452 452
 	);
453
-	register_taxonomy( 'print', array( 'comic' ), $args );
453
+	register_taxonomy('print', array('comic'), $args);
454 454
 
455 455
 	/*
456 456
 	* WooCommerce Hooks
457 457
 	* Layout
458 458
 	*/
459
-	remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 );
460
-	remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 );
461
-	remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 );
462
-	remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 );
463
-	remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
464
-	remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 );
459
+	remove_action('woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
460
+	remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
461
+	remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
462
+	remove_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 10);
463
+	remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20);
464
+	remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30);
465 465
 
466
-	add_action( 'woocommerce_before_main_content', 'strip_wrapper_start', 10 );
467
-	add_action( 'woocommerce_after_main_content', 'strip_wrapper_end', 10 );
466
+	add_action('woocommerce_before_main_content', 'strip_wrapper_start', 10);
467
+	add_action('woocommerce_after_main_content', 'strip_wrapper_end', 10);
468 468
 
469 469
 		 /**
470 470
 		  * WooCommerce wrapper
@@ -480,13 +480,13 @@  discard block
 block discarded – undo
480 480
 		echo '</section>';
481 481
 	}
482 482
 
483
-	add_action( 'after_setup_theme', 'woocommerce_support' );
483
+	add_action('after_setup_theme', 'woocommerce_support');
484 484
 	/**
485 485
 	 * Add WooCommerce support
486 486
 	 * https://docs.woothemes.com/document/third-party-custom-theme-compatibility/*
487 487
 	 */
488 488
 	function woocommerce_support() {
489
-		add_theme_support( 'woocommerce' );
489
+		add_theme_support('woocommerce');
490 490
 	}
491 491
 
492 492
 	/**
@@ -494,13 +494,13 @@  discard block
 block discarded – undo
494 494
 	 */
495 495
 	function wp_enqueue_woocommerce_style() {
496 496
 
497
-			wp_register_style( 'strip-woocommerce', get_template_directory_uri() . '/assets/css/woocommerce-min.css' );
498
-		if ( class_exists( 'woocommerce' ) ) {
499
-			wp_enqueue_style( 'strip-woocommerce' );
497
+			wp_register_style('strip-woocommerce', get_template_directory_uri() . '/assets/css/woocommerce-min.css');
498
+		if (class_exists('woocommerce')) {
499
+			wp_enqueue_style('strip-woocommerce');
500 500
 		}
501 501
 	}
502 502
 
503
-	add_action( 'wp_enqueue_scripts', 'wp_enqueue_woocommerce_style' );
503
+	add_action('wp_enqueue_scripts', 'wp_enqueue_woocommerce_style');
504 504
 
505 505
 	/**
506 506
 * Optimize WooCommerce Scripts
@@ -511,53 +511,53 @@  discard block
 block discarded – undo
511 511
 * @link https://gist.github.com/DevinWalker/7621777
512 512
 * @link http://dessky.com/blog/disable-woocommerce-scripts-and-styles/
513 513
 */
514
-	add_action( 'wp_enqueue_scripts', 'strip_manage_woocommerce_styles', 99 );
514
+	add_action('wp_enqueue_scripts', 'strip_manage_woocommerce_styles', 99);
515 515
 
516 516
 	/**
517 517
 	 * Remove some WooCommerce queries.
518 518
 	 */
519 519
 	function strip_manage_woocommerce_styles() {
520 520
 		// remove generator meta tag.
521
-		remove_action( 'wp_head', array( 'woocommerce', 'generator' ) ); // this line when used with $GLOBALS['woocommerce'] prompts an error when Woo is deactivated though.
521
+		remove_action('wp_head', array('woocommerce', 'generator')); // this line when used with $GLOBALS['woocommerce'] prompts an error when Woo is deactivated though.
522 522
 		// first check that woo exists to prevent fatal errors.
523
-		if ( function_exists( 'is_woocommerce' ) ) {
523
+		if (function_exists('is_woocommerce')) {
524 524
 			// dequeue scripts and styles, unless we're in the store.
525
-			if ( ! is_woocommerce() && ! is_page( 'store' ) && ! is_shop() && ! is_product_category() && ! is_product() && ! is_cart() && ! is_checkout() ) {
526
-				wp_dequeue_style( 'woocommerce_frontend_styles' );
527
-				wp_dequeue_style( 'woocommerce-general' );
528
-				wp_dequeue_style( 'woocommerce-layout' );
529
-				wp_dequeue_style( 'woocommerce-smallscreen' );
530
-				wp_dequeue_style( 'woocommerce_fancybox_styles' );
531
-				wp_dequeue_style( 'woocommerce_chosen_styles' );
532
-				wp_dequeue_style( 'woocommerce_prettyPhoto_css' );
533
-				wp_dequeue_style( 'select2' );
534
-				wp_dequeue_style( 'strip-woocommerce' ); // the theme's CSS overwrite.
535
-				wp_dequeue_script( 'wc-add-payment-method' );
536
-				wp_dequeue_script( 'wc-lost-password' );
537
-				wp_dequeue_script( 'wc_price_slider' );
538
-				wp_dequeue_script( 'wc-single-product' );
539
-				wp_dequeue_script( 'wc-add-to-cart' );
540
-				wp_dequeue_script( 'wc-cart-fragments' );
541
-				wp_dequeue_script( 'wc-credit-card-form' );
542
-				wp_dequeue_script( 'wc-checkout' );
543
-				wp_dequeue_script( 'wc-add-to-cart-variation' );
544
-				wp_dequeue_script( 'wc-single-product' );
545
-				wp_dequeue_script( 'wc-cart' );
546
-				wp_dequeue_script( 'wc-chosen' );
547
-				wp_dequeue_script( 'woocommerce' );
548
-				wp_dequeue_script( 'jquery-cookie' );
549
-				wp_dequeue_script( 'prettyPhoto' );
550
-				wp_dequeue_script( 'prettyPhoto-init' );
551
-				wp_dequeue_script( 'jquery-blockui' );
552
-				wp_dequeue_script( 'jquery-placeholder' );
553
-				wp_dequeue_script( 'jquery-payment' );
554
-				wp_dequeue_script( 'fancybox' );
555
-				wp_dequeue_script( 'jqueryui' );
525
+			if ( ! is_woocommerce() && ! is_page('store') && ! is_shop() && ! is_product_category() && ! is_product() && ! is_cart() && ! is_checkout()) {
526
+				wp_dequeue_style('woocommerce_frontend_styles');
527
+				wp_dequeue_style('woocommerce-general');
528
+				wp_dequeue_style('woocommerce-layout');
529
+				wp_dequeue_style('woocommerce-smallscreen');
530
+				wp_dequeue_style('woocommerce_fancybox_styles');
531
+				wp_dequeue_style('woocommerce_chosen_styles');
532
+				wp_dequeue_style('woocommerce_prettyPhoto_css');
533
+				wp_dequeue_style('select2');
534
+				wp_dequeue_style('strip-woocommerce'); // the theme's CSS overwrite.
535
+				wp_dequeue_script('wc-add-payment-method');
536
+				wp_dequeue_script('wc-lost-password');
537
+				wp_dequeue_script('wc_price_slider');
538
+				wp_dequeue_script('wc-single-product');
539
+				wp_dequeue_script('wc-add-to-cart');
540
+				wp_dequeue_script('wc-cart-fragments');
541
+				wp_dequeue_script('wc-credit-card-form');
542
+				wp_dequeue_script('wc-checkout');
543
+				wp_dequeue_script('wc-add-to-cart-variation');
544
+				wp_dequeue_script('wc-single-product');
545
+				wp_dequeue_script('wc-cart');
546
+				wp_dequeue_script('wc-chosen');
547
+				wp_dequeue_script('woocommerce');
548
+				wp_dequeue_script('jquery-cookie');
549
+				wp_dequeue_script('prettyPhoto');
550
+				wp_dequeue_script('prettyPhoto-init');
551
+				wp_dequeue_script('jquery-blockui');
552
+				wp_dequeue_script('jquery-placeholder');
553
+				wp_dequeue_script('jquery-payment');
554
+				wp_dequeue_script('fancybox');
555
+				wp_dequeue_script('jqueryui');
556 556
 			}
557 557
 		}
558 558
 	}
559 559
 
560
-	add_action( 'pre_get_posts', 'strip_set_posts_per_page' );
560
+	add_action('pre_get_posts', 'strip_set_posts_per_page');
561 561
 	/**
562 562
 	 * Set posts, WooCommerce products & comics number per archive page
563 563
 	 * Fixes 404 error on pagination due to CTP conflicting with WordPress posts_per_page default
@@ -565,15 +565,15 @@  discard block
 block discarded – undo
565 565
 	 *
566 566
 	 * @param string $query strip_set_posts_per_page.
567 567
 	 */
568
-	function strip_set_posts_per_page( $query ) {
568
+	function strip_set_posts_per_page($query) {
569 569
 
570
-		if ( ( ! is_admin() ) && ( $query->is_home() ) && ( $query->is_search() ) ) {
571
-			 $query->set( 'posts_per_page', 12 );
570
+		if (( ! is_admin()) && ($query->is_home()) && ($query->is_search())) {
571
+			 $query->set('posts_per_page', 12);
572 572
 		}
573
-		if ( ( ! is_admin() ) && ( $query->is_post_type_archive( 'product' ) ) && (taxonomy_exists( 'category' ) ) ) {
574
-			$query->set( 'posts_per_page', 8 );
575
-		} elseif ( ( ! is_admin() ) && ( $query->is_archive() )	&& (is_tax( 'story' ) ) ) {
576
-			$query->set( 'posts_per_page', 3 );
573
+		if (( ! is_admin()) && ($query->is_post_type_archive('product')) && (taxonomy_exists('category'))) {
574
+			$query->set('posts_per_page', 8);
575
+		} elseif (( ! is_admin()) && ($query->is_archive()) && (is_tax('story'))) {
576
+			$query->set('posts_per_page', 3);
577 577
 		}
578 578
 			return $query;
579 579
 	}
@@ -585,32 +585,32 @@  discard block
 block discarded – undo
585 585
 	 * @param	string $post_id set_default_object_terms.
586 586
 	 * @param	string $post set_default_object_terms.
587 587
 	 */
588
-	function set_default_object_terms( $post_id, $post ) {
589
-		if ( 'publish' === $post->post_status && 'comic' === $post->post_type ) {
588
+	function set_default_object_terms($post_id, $post) {
589
+		if ('publish' === $post->post_status && 'comic' === $post->post_type) {
590 590
 			$defaults = array(
591
-			'story' => array( 'draft' ),
591
+			'story' => array('draft'),
592 592
 			);
593
-			$taxonomies = get_object_taxonomies( $post->post_type );
594
-			foreach ( (array) $taxonomies as $taxonomy ) {
595
-				$terms = get_the_terms( $post_id, $taxonomy );
596
-				if ( empty( $terms ) && array_key_exists( $taxonomy, $defaults ) ) {
597
-					wp_set_object_terms( $post_id, $defaults[ $taxonomy ], $taxonomy );
593
+			$taxonomies = get_object_taxonomies($post->post_type);
594
+			foreach ((array) $taxonomies as $taxonomy) {
595
+				$terms = get_the_terms($post_id, $taxonomy);
596
+				if (empty($terms) && array_key_exists($taxonomy, $defaults)) {
597
+					wp_set_object_terms($post_id, $defaults[$taxonomy], $taxonomy);
598 598
 				}
599 599
 			}
600 600
 		}
601 601
 	}
602
-	add_action( 'save_post', 'set_default_object_terms', 0, 2 );
602
+	add_action('save_post', 'set_default_object_terms', 0, 2);
603 603
 
604 604
 	/**
605 605
 	 * Remove jquery migrate $scripts for enhanced performance.
606 606
 	 *
607 607
 	 * @param strings $scripts remove_jquery_migrate.
608 608
 	 */
609
-	function remove_jquery_migrate( $scripts ) {
610
-		if ( is_admin() ) {
609
+	function remove_jquery_migrate($scripts) {
610
+		if (is_admin()) {
611 611
 			return;
612 612
 		}
613
-		 $scripts->remove( 'jquery' );
614
-		 $scripts->add( 'jquery', false, array( 'jquery-core' ), '1.10.2' );
613
+		 $scripts->remove('jquery');
614
+		 $scripts->add('jquery', false, array('jquery-core'), '1.10.2');
615 615
 	}
616
-		add_action( 'wp_default_scripts', 'remove_jquery_migrate' );
616
+		add_action('wp_default_scripts', 'remove_jquery_migrate');
Please login to merge, or discard this patch.
inc/template-tags.php 1 patch
Spacing   +75 added lines, -75 removed lines patch added patch discarded remove patch
@@ -13,104 +13,104 @@  discard block
 block discarded – undo
13 13
  * Add custom header image to header area
14 14
  */
15 15
 function strip_header_background() {
16
-	if ( get_header_image() ) {
17
-		$css = '.site-branding { background-image: url(' . esc_url( get_header_image() ) . '); }';
18
-		wp_add_inline_style( 'strip-style', $css );
16
+	if (get_header_image()) {
17
+		$css = '.site-branding { background-image: url(' . esc_url(get_header_image()) . '); }';
18
+		wp_add_inline_style('strip-style', $css);
19 19
 	}
20 20
 }
21
-add_action( 'wp_enqueue_scripts', 'strip_header_background', 11 );
21
+add_action('wp_enqueue_scripts', 'strip_header_background', 11);
22 22
 
23
-if ( ! function_exists( 'strip_content_nav' ) ) :
23
+if ( ! function_exists('strip_content_nav')) :
24 24
 
25 25
 	/**
26 26
 	 * Display navigation to next/previous pages when applicable
27 27
 	 *
28 28
 	 * @param $string $nav_id strip_content_nav.
29 29
 	 */
30
-	function strip_content_nav( $nav_id ) {
30
+	function strip_content_nav($nav_id) {
31 31
 		global $wp_query, $wp_rewrite;
32 32
 		// Don't print empty markup on single pages if there's nowhere to navigate.
33 33
 		// Don't print empty markup in archives if there's only one page.
34
-		if ( $wp_query->max_num_pages < 2 && ( is_home() || is_archive() || is_search() ) ) {
34
+		if ($wp_query->max_num_pages < 2 && (is_home() || is_archive() || is_search())) {
35 35
 			return;
36 36
 		}
37 37
 
38
-		$nav_class = ( is_single() || is_tax( 'story' ) ) ? 'post-navigation' : 'paging-navigation' ;
38
+		$nav_class = (is_single() || is_tax('story')) ? 'post-navigation' : 'paging-navigation';
39 39
 
40 40
 		?> <div class="wrap clear">
41 41
 
42
-		<nav role="navigation" id="<?php echo esc_attr( $nav_id ); ?>" class="<?php echo esc_attr( $nav_class ); ?> clear">
43
-		<h1 class="screen-reader-text"><?php esc_html_e( 'Post navigation', 'strip' ); ?></h1>
42
+		<nav role="navigation" id="<?php echo esc_attr($nav_id); ?>" class="<?php echo esc_attr($nav_class); ?> clear">
43
+		<h1 class="screen-reader-text"><?php esc_html_e('Post navigation', 'strip'); ?></h1>
44 44
 
45
-		<?php  if ( 'comic' === get_post_type() && ( is_single() ) ) : // comics navigation links.
45
+		<?php  if ('comic' === get_post_type() && (is_single())) : // comics navigation links.
46 46
 
47 47
 			$nav_class .= ' navigation-comic'; ?>
48 48
 
49 49
 				<div class="navigation-comic">
50
-				<nav class="nav-first"><a href="<?php echo esc_url( first_comic_link() ); ?>"><?php esc_html_e( 'Start', 'strip' ); ?></a></nav>
51
-				<nav class="nav-previous"><?php previous_post_link( '%link', __( 'Previous', 'strip' ), true, '', $taxonomy = 'story' ); ?></nav>
52
-				<nav class="nav-title"><?php the_title( '<h4 class="series-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h4>' ); ?></nav>
53
-				<nav class="nav-next"><?php next_post_link( '%link', __( 'Next', 'strip' ), true, '', 'story' ); ?></nav>
54
-				<nav class="nav-last"><a href="<?php echo esc_url( last_comic_link() ); ?>"><?php esc_html_e( 'Last', 'strip' ); ?></a></nav>
50
+				<nav class="nav-first"><a href="<?php echo esc_url(first_comic_link()); ?>"><?php esc_html_e('Start', 'strip'); ?></a></nav>
51
+				<nav class="nav-previous"><?php previous_post_link('%link', __('Previous', 'strip'), true, '', $taxonomy = 'story'); ?></nav>
52
+				<nav class="nav-title"><?php the_title('<h4 class="series-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h4>'); ?></nav>
53
+				<nav class="nav-next"><?php next_post_link('%link', __('Next', 'strip'), true, '', 'story'); ?></nav>
54
+				<nav class="nav-last"><a href="<?php echo esc_url(last_comic_link()); ?>"><?php esc_html_e('Last', 'strip'); ?></a></nav>
55 55
 			</div><!-- .navigation-comic -->
56 56
 
57
-		<?php elseif ( is_single() ) : // navigation links for single posts. ?>
57
+		<?php elseif (is_single()) : // navigation links for single posts. ?>
58 58
 
59
-		<?php previous_post_link( '<div class="nav-previous">%link</div>', '<span class="meta-nav">' . _x( '&#8592;', 'Previous post link', 'strip' ) . '</span> %title' ); ?>
60
-		<?php next_post_link( '<div class="nav-next">%link</div>', '%title <span class="meta-nav">' . _x( '&#8594;', 'Next post link', 'strip' ) . '</span>' ); ?>
59
+		<?php previous_post_link('<div class="nav-previous">%link</div>', '<span class="meta-nav">' . _x('&#8592;', 'Previous post link', 'strip') . '</span> %title'); ?>
60
+		<?php next_post_link('<div class="nav-next">%link</div>', '%title <span class="meta-nav">' . _x('&#8594;', 'Next post link', 'strip') . '</span>'); ?>
61 61
 
62
-	<?php elseif ( $wp_query->max_num_pages > 1 && ( is_home() || is_archive() || is_search() ) ) : // navigation links for blog, archive, and search pages. ?>
62
+	<?php elseif ($wp_query->max_num_pages > 1 && (is_home() || is_archive() || is_search())) : // navigation links for blog, archive, and search pages. ?>
63 63
 
64
-		<?php if ( get_next_posts_link() ) : ?>
65
-		<div class="nav-previous-page"><?php next_posts_link( __( 'Older posts', 'strip' ) ); ?></div>
64
+		<?php if (get_next_posts_link()) : ?>
65
+		<div class="nav-previous-page"><?php next_posts_link(__('Older posts', 'strip')); ?></div>
66 66
 		<?php endif; ?>
67 67
 
68
-		<?php if ( get_previous_posts_link() ) : ?>
69
-		<div class="nav-next-page"><?php previous_posts_link( __( 'Recent posts', 'strip' ) ); ?></div>
68
+		<?php if (get_previous_posts_link()) : ?>
69
+		<div class="nav-next-page"><?php previous_posts_link(__('Recent posts', 'strip')); ?></div>
70 70
 			<?php endif; ?>
71 71
 
72 72
 		<?php endif; ?>
73 73
 
74 74
 				</div><!-- .entry-wrap -->
75
-			</nav><!-- #<?php echo esc_attr( $nav_id ); ?> -->
75
+			</nav><!-- #<?php echo esc_attr($nav_id); ?> -->
76 76
 			<?php
77 77
 	}
78 78
 endif; // strip_content_nav.
79 79
 
80
-if ( ! function_exists( 'strip_entry_meta' ) ) :
80
+if ( ! function_exists('strip_entry_meta')) :
81 81
 	/**
82 82
 	 * Prints HTML with meta information for the current post-date/time and author.
83 83
 	 */
84 84
 	function strip_entry_meta() {
85
-		if ( is_sticky() && is_home() ) {
85
+		if (is_sticky() && is_home()) {
86 86
 			printf(
87
-				__( '<span class="featured-post"><a href="%1$s" title="%2$s" rel="bookmark">Sticky</a></span>', 'strip' ),
88
-				esc_url( get_permalink() ),
89
-				esc_attr( get_the_time() )
87
+				__('<span class="featured-post"><a href="%1$s" title="%2$s" rel="bookmark">Sticky</a></span>', 'strip'),
88
+				esc_url(get_permalink()),
89
+				esc_attr(get_the_time())
90 90
 			);
91 91
 		}
92 92
 
93
-		if ( 'post' === get_post_type() ) {
93
+		if ('post' === get_post_type()) {
94 94
 			printf(
95
-				__( '<span class="entry-date"><a href="%1$s" title="%2$s" rel="bookmark"><time datetime="%3$s">%4$s</time></a></span><span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span>', 'strip' ),
96
-				esc_url( get_permalink() ),
97
-				esc_attr( get_the_time() ),
98
-				esc_attr( get_the_date( 'c' ) ),
95
+				__('<span class="entry-date"><a href="%1$s" title="%2$s" rel="bookmark"><time datetime="%3$s">%4$s</time></a></span><span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span>', 'strip'),
96
+				esc_url(get_permalink()),
97
+				esc_attr(get_the_time()),
98
+				esc_attr(get_the_date('c')),
99 99
 				get_the_date(),
100
-				esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
101
-				esc_attr( sprintf( __( 'View all posts by %s', 'strip' ), get_the_author() ) ),
100
+				esc_url(get_author_posts_url(get_the_author_meta('ID'))),
101
+				esc_attr(sprintf(__('View all posts by %s', 'strip'), get_the_author())),
102 102
 				get_the_author()
103 103
 			);
104 104
 		}
105 105
 
106
-		$tags_list = get_the_tag_list( '', _x( ', ', 'Used between list items, there is a space after the comma.', 'strip' ) );
107
-		if ( $tags_list ) {
108
-			printf( '<span class="tags-links">' . esc_html( '%1$s', 'strip' ) . '</span>', $tags_list ); // WPCS: XSS OK.
106
+		$tags_list = get_the_tag_list('', _x(', ', 'Used between list items, there is a space after the comma.', 'strip'));
107
+		if ($tags_list) {
108
+			printf('<span class="tags-links">' . esc_html('%1$s', 'strip') . '</span>', $tags_list); // WPCS: XSS OK.
109 109
 		}
110 110
 	}
111 111
 endif;
112 112
 
113
-if ( ! function_exists( 'strip_term_description' ) ) :
113
+if ( ! function_exists('strip_term_description')) :
114 114
 	/**
115 115
 	 * Display optional term description for category, tag and custom taxonomy pages.
116 116
 	 *
@@ -120,8 +120,8 @@  discard block
 block discarded – undo
120 120
 		// Show an optional term description.
121 121
 		$term_description = term_description();
122 122
 
123
-		if ( is_post_type_archive( 'comic' ) || is_category() || is_tag() || is_tax( 'story' ) && ! empty( $term_description ) ) :
124
-			printf( '<div class="taxonomy-description">%s</div>', $term_description, 'strip' ); // WPCS: XSS OK.
123
+		if (is_post_type_archive('comic') || is_category() || is_tag() || is_tax('story') && ! empty($term_description)) :
124
+			printf('<div class="taxonomy-description">%s</div>', $term_description, 'strip'); // WPCS: XSS OK.
125 125
 			endif;
126 126
 	}
127 127
 endif; // ends check for strip_term_description.
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
  * @return bool
133 133
  */
134 134
 function strip_categorized_blog() {
135
-	if ( false === ( $all_the_cool_cats = get_transient( 'strip_categories' ) ) ) {
135
+	if (false === ($all_the_cool_cats = get_transient('strip_categories'))) {
136 136
 		// Create an array of all the categories that are attached to posts.
137 137
 		$all_the_cool_cats = get_categories(array(
138 138
 			'fields'     => 'ids',
@@ -142,12 +142,12 @@  discard block
 block discarded – undo
142 142
 		));
143 143
 
144 144
 		// Count the number of categories that are attached to the posts.
145
-		$all_the_cool_cats = count( $all_the_cool_cats );
145
+		$all_the_cool_cats = count($all_the_cool_cats);
146 146
 
147
-		set_transient( 'strip_categories', $all_the_cool_cats );
147
+		set_transient('strip_categories', $all_the_cool_cats);
148 148
 	}
149 149
 
150
-	if ( $all_the_cool_cats > 1 ) {
150
+	if ($all_the_cool_cats > 1) {
151 151
 		// This blog has more than 1 category so strip_categorized_blog should return true.
152 152
 		return true;
153 153
 	}
@@ -159,16 +159,16 @@  discard block
 block discarded – undo
159 159
  * Flushes out the transients used in strip_categorized_blog.
160 160
  */
161 161
 function strip_category_transient_flusher() {
162
-	if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
162
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
163 163
 		return;
164 164
 	}
165 165
 	// Like, beat it. Dig?
166
-	delete_transient( 'strip_categories' );
166
+	delete_transient('strip_categories');
167 167
 }
168
-add_action( 'edit_category', 'strip_category_transient_flusher' );
169
-add_action( 'save_post', 'strip_category_transient_flusher' );
168
+add_action('edit_category', 'strip_category_transient_flusher');
169
+add_action('save_post', 'strip_category_transient_flusher');
170 170
 
171
-if ( ! function_exists( 'strip_the_custom_logo' ) ) :
171
+if ( ! function_exists('strip_the_custom_logo')) :
172 172
 	/**
173 173
 	 * Displays the optional custom logo.
174 174
 	 *
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
 	 * @since strip 1.0
178 178
 	 */
179 179
 	function strip_the_custom_logo() {
180
-		if ( function_exists( 'the_custom_logo' ) ) {
180
+		if (function_exists('the_custom_logo')) {
181 181
 			the_custom_logo();
182 182
 		}
183 183
 	}
@@ -194,10 +194,10 @@  discard block
 block discarded – undo
194 194
  * @param string $taxonomy       Optional. Taxonomy, if $in_same_term is true. Default 'category'.
195 195
  * @return mixed Array containing the boundary post object if successful, null otherwise.
196 196
  */
197
-function get_comic_boundary_post( $in_same_term = false, $excluded_terms = '', $start = true, $taxonomy = 'category' ) {
197
+function get_comic_boundary_post($in_same_term = false, $excluded_terms = '', $start = true, $taxonomy = 'category') {
198 198
 	global $post;
199
-	setup_postdata( $post );
200
-	if ( ! taxonomy_exists( $taxonomy ) ) {
199
+	setup_postdata($post);
200
+	if ( ! taxonomy_exists($taxonomy)) {
201 201
 		return null;
202 202
 	}
203 203
 
@@ -212,39 +212,39 @@  discard block
 block discarded – undo
212 212
 
213 213
 	$term_array = array();
214 214
 
215
-	if ( ! is_array( $excluded_terms ) ) {
216
-		if ( ! empty( $excluded_terms ) ) {
217
-			$excluded_terms = explode( ',', $excluded_terms );
215
+	if ( ! is_array($excluded_terms)) {
216
+		if ( ! empty($excluded_terms)) {
217
+			$excluded_terms = explode(',', $excluded_terms);
218 218
 			return;
219 219
 		}
220 220
 			$excluded_terms = array();
221 221
 	}
222 222
 
223
-	if ( $in_same_term || ! empty( $excluded_terms ) ) {
224
-		if ( $in_same_term ) {
225
-			$term_array = wp_get_object_terms( $post->ID, $taxonomy, array( 'fields' => 'ids' ) );
223
+	if ($in_same_term || ! empty($excluded_terms)) {
224
+		if ($in_same_term) {
225
+			$term_array = wp_get_object_terms($post->ID, $taxonomy, array('fields' => 'ids'));
226 226
 		}
227 227
 
228
-		if ( ! empty( $excluded_terms ) ) {
229
-			$excluded_terms = array_map( 'intval', $excluded_terms );
230
-			$excluded_terms = array_diff( $excluded_terms, $term_array );
228
+		if ( ! empty($excluded_terms)) {
229
+			$excluded_terms = array_map('intval', $excluded_terms);
230
+			$excluded_terms = array_diff($excluded_terms, $term_array);
231 231
 
232 232
 			$inverse_terms = array();
233
-			foreach ( $excluded_terms as $excluded_term ) {
233
+			foreach ($excluded_terms as $excluded_term) {
234 234
 				$inverse_terms[] = $excluded_term * -1;
235 235
 			}
236 236
 			$excluded_terms = $inverse_terms;
237 237
 		}
238 238
 
239
-		$query_args['tax_query'] = array( array(
239
+		$query_args['tax_query'] = array(array(
240 240
 			'taxonomy' => $taxonomy,
241
-			'terms' => array_merge( $term_array, $excluded_terms ),
241
+			'terms' => array_merge($term_array, $excluded_terms),
242 242
 		),
243 243
 		);
244 244
 	}
245 245
 
246 246
 	$get_posts = new wp_query;
247
-	return $get_posts -> query( $query_args );
247
+	return $get_posts -> query($query_args);
248 248
 	wp_reset_postdata();
249 249
 }
250 250
 
@@ -252,18 +252,18 @@  discard block
 block discarded – undo
252 252
  * Link to the first comic post in same term
253 253
  */
254 254
 function first_comic_link() {
255
-	$first = get_comic_boundary_post( true, '', true, 'story' );
256
-	apply_filters( 'the_title', $first[0]->post_title );
255
+	$first = get_comic_boundary_post(true, '', true, 'story');
256
+	apply_filters('the_title', $first[0]->post_title);
257 257
 
258
-	echo esc_html( get_permalink( $first[0]->ID ) );
258
+	echo esc_html(get_permalink($first[0]->ID));
259 259
 }
260 260
 
261 261
 /**
262 262
  * Link to the last comic post in same term
263 263
  */
264 264
 function last_comic_link() {
265
-	$last = get_comic_boundary_post( true, '', false, 'story' );
266
-	apply_filters( 'the_title', $last[0]->post_title );
265
+	$last = get_comic_boundary_post(true, '', false, 'story');
266
+	apply_filters('the_title', $last[0]->post_title);
267 267
 
268
-	echo esc_html( get_permalink( $last[0]->ID ) );
268
+	echo esc_html(get_permalink($last[0]->ID));
269 269
 }
Please login to merge, or discard this patch.