Completed
Push — master ( f28081...a9d059 )
by SILENT
02:27
created
inc/template-tags.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
 /**
130 130
  * Returns true if a blog has more than 1 category.
131 131
  *
132
- * @return bool
132
+ * @return boolean|null
133 133
  */
134 134
 function strip_categorized_blog() {
135 135
 	if ( false === ( $all_the_cool_cats = get_transient( 'strip_categories' ) ) ) {
Please login to merge, or discard this patch.
Spacing   +69 added lines, -69 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;
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, '', '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, '', '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,16 +142,16 @@  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
 	}
154
-	if ( $all_the_cool_cats = 1 ) {
154
+	if ($all_the_cool_cats = 1) {
155 155
 		// This blog has only 1 category so strip_categorized_blog should return false.
156 156
 		return false;
157 157
 	}
@@ -161,16 +161,16 @@  discard block
 block discarded – undo
161 161
  * Flushes out the transients used in strip_categorized_blog.
162 162
  */
163 163
 function strip_category_transient_flusher() {
164
-	if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
164
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
165 165
 		return;
166 166
 	}
167 167
 	// Like, beat it. Dig?
168
-	delete_transient( 'strip_categories' );
168
+	delete_transient('strip_categories');
169 169
 }
170
-add_action( 'edit_category', 'strip_category_transient_flusher' );
171
-add_action( 'save_post', 'strip_category_transient_flusher' );
170
+add_action('edit_category', 'strip_category_transient_flusher');
171
+add_action('save_post', 'strip_category_transient_flusher');
172 172
 
173
-if ( ! function_exists( 'strip_the_custom_logo' ) ) :
173
+if ( ! function_exists('strip_the_custom_logo')) :
174 174
 	/**
175 175
 	 * Displays the optional custom logo.
176 176
 	 *
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
 	 * @since strip 1.0
180 180
 	 */
181 181
 	function strip_the_custom_logo() {
182
-		if ( function_exists( 'the_custom_logo' ) ) {
182
+		if (function_exists('the_custom_logo')) {
183 183
 			the_custom_logo();
184 184
 		}
185 185
 	}
@@ -196,10 +196,10 @@  discard block
 block discarded – undo
196 196
  * @param string $taxonomy       Optional. Taxonomy, if $in_same_term is true. Default 'category'.
197 197
  * @return mixed Array containing the boundary post object if successful, null otherwise.
198 198
  */
199
-function get_comic_boundary_post( $in_same_term = false, $excluded_terms = '', $start = true, $taxonomy = 'category' ) {
199
+function get_comic_boundary_post($in_same_term = false, $excluded_terms = '', $start = true, $taxonomy = 'category') {
200 200
 	global $post;
201
-	setup_postdata( $post );
202
-	if ( ! taxonomy_exists( $taxonomy ) ) {
201
+	setup_postdata($post);
202
+	if ( ! taxonomy_exists($taxonomy)) {
203 203
 		return null;
204 204
 	}
205 205
 
@@ -213,19 +213,19 @@  discard block
 block discarded – undo
213 213
 	);
214 214
 
215 215
 	$term_array = array();
216
-	if ( $in_same_term ) {
217
-		if ( $in_same_term ) {
218
-			$term_array = wp_get_object_terms( $post->ID, $taxonomy, array( 'fields' => 'ids' ) );
216
+	if ($in_same_term) {
217
+		if ($in_same_term) {
218
+			$term_array = wp_get_object_terms($post->ID, $taxonomy, array('fields' => 'ids'));
219 219
 		}
220
-		$query_args['tax_query'] = array( array(
220
+		$query_args['tax_query'] = array(array(
221 221
 			'taxonomy' => $taxonomy,
222
-			'terms' => array_merge( $term_array ),
222
+			'terms' => array_merge($term_array),
223 223
 		),
224 224
 		);
225 225
 	}
226 226
 
227 227
 	$get_posts = new wp_query;
228
-	return $get_posts -> query( $query_args );
228
+	return $get_posts -> query($query_args);
229 229
 	wp_reset_postdata();
230 230
 }
231 231
 
@@ -233,18 +233,18 @@  discard block
 block discarded – undo
233 233
  * Link to the first comic post in same term
234 234
  */
235 235
 function first_comic_link() {
236
-	$first = get_comic_boundary_post( true, '', true, 'story' );
237
-	apply_filters( 'the_title', $first[0]->post_title );
236
+	$first = get_comic_boundary_post(true, '', true, 'story');
237
+	apply_filters('the_title', $first[0]->post_title);
238 238
 
239
-	echo esc_html( get_permalink( $first[0]->ID ) );
239
+	echo esc_html(get_permalink($first[0]->ID));
240 240
 }
241 241
 
242 242
 /**
243 243
  * Link to the last comic post in same term
244 244
  */
245 245
 function last_comic_link() {
246
-	$last = get_comic_boundary_post( true, '', false, 'story' );
247
-	apply_filters( 'the_title', $last[0]->post_title );
246
+	$last = get_comic_boundary_post(true, '', false, 'story');
247
+	apply_filters('the_title', $last[0]->post_title);
248 248
 
249
-	echo esc_html( get_permalink( $last[0]->ID ) );
249
+	echo esc_html(get_permalink($last[0]->ID));
250 250
 }
Please login to merge, or discard this patch.