Completed
Push — master ( be3ddb...6dfb16 )
by SILENT
11:30 queued 05:32
created
content-video.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,8 +30,10 @@
 block discarded – undo
30 30
 
31 31
 		if ( ! is_single() ) :
32 32
 			the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
33
-		else :
33
+		else {
34
+			:
34 35
 			the_title( '<h1 class="entry-title">', '</h1>' );
36
+		}
35 37
 		endif;
36 38
 		?>
37 39
 	</header><!-- .entry-header -->
Please login to merge, or discard this 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-comic.php 2 patches
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -13,36 +13,36 @@  discard block
 block discarded – undo
13 13
 	<section id="primary"
14 14
 		<main id="content" role="main">
15 15
 
16
-			<?php if ( have_posts() ) : ?>
16
+			<?php if (have_posts()) : ?>
17 17
 
18 18
 				<header class="page-header">
19 19
 					<h1 class="page-title">
20 20
 						<?php
21 21
 							printf(
22
-								esc_html( 'STORIES %s', 'strip' ), '<span>' .
23
-								single_cat_title( '', false ) . '</span>'
22
+								esc_html('STORIES %s', 'strip'), '<span>' .
23
+								single_cat_title('', false) . '</span>'
24 24
 							);
25 25
 						?>
26 26
 					</h1>
27 27
 
28 28
 					<h2 class="taxonomy-description">
29
-						<a href="<?php echo esc_url( home_url( '/series/' ) ); ?>">
30
-						<?php '<span class="meta-nav"' . printf( esc_html_e( 'Series', 'strip' ) ) . '</span>'; ?>
29
+						<a href="<?php echo esc_url(home_url('/series/')); ?>">
30
+						<?php '<span class="meta-nav"' . printf(esc_html_e('Series', 'strip')) . '</span>'; ?>
31 31
 						</a>
32 32
 					</h2>
33 33
 
34 34
 					<h4 class="series-title">
35
-					<a href="<?php echo esc_url( home_url( '/story/exile/' ) ); ?>">ExIle</a></h4>
35
+					<a href="<?php echo esc_url(home_url('/story/exile/')); ?>">ExIle</a></h4>
36 36
 					<h4 class="series-title">
37
-					<a href="<?php echo esc_url( home_url( '/story/tofu/' ) ); ?>">Morning Tofu Chase</a></h4>
37
+					<a href="<?php echo esc_url(home_url('/story/tofu/')); ?>">Morning Tofu Chase</a></h4>
38 38
 					<h3 class="series-title">
39
-					<a href="<?php echo esc_url( home_url( '/story/sentient-drone/' ) ); ?>">Sentient Drone</a></h3>
39
+					<a href="<?php echo esc_url(home_url('/story/sentient-drone/')); ?>">Sentient Drone</a></h3>
40 40
 
41 41
 				<?php
42 42
 					// Show an optional term description.
43 43
 					$term_description = term_description();
44
-				if ( ! empty( $term_description ) ) :
45
-					'<div class="taxonomy-description"' . printf( esc_html( '%s', $term_description ) ) . '</div>';
44
+				if ( ! empty($term_description)) :
45
+					'<div class="taxonomy-description"' . printf(esc_html('%s', $term_description)) . '</div>';
46 46
 				endif;
47 47
 				?>
48 48
 			</header><!-- .page-header -->
@@ -60,18 +60,18 @@  discard block
 block discarded – undo
60 60
 		)
61 61
 	);
62 62
 
63
-while ( $comic->have_posts() ) : $comic->the_post();
64
-	get_template_part( 'content-comic' );
63
+while ($comic->have_posts()) : $comic->the_post();
64
+	get_template_part('content-comic');
65 65
 	// change to 'content' to style it like the blog entry page.
66 66
 		?>
67 67
 	<?php endwhile;
68 68
 						wp_reset_postdata(); ?>
69 69
 
70
-		<?php strip_content_nav( 'nav-below' ); ?>
70
+		<?php strip_content_nav('nav-below'); ?>
71 71
 
72 72
 	<?php else : ?>
73 73
 
74
-	<?php get_template_part( 'no-results', 'archive-comic' ); ?>
74
+	<?php get_template_part('no-results', 'archive-comic'); ?>
75 75
 
76 76
 	<?php endif;
77 77
 			wp_reset_postdata(); ?>
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,9 +69,12 @@
 block discarded – undo
69 69
 
70 70
 		<?php strip_content_nav( 'nav-below' ); ?>
71 71
 
72
-	<?php else : ?>
72
+	<?php else {
73
+	: ?>
73 74
 
74
-	<?php get_template_part( 'no-results', 'archive-comic' ); ?>
75
+	<?php get_template_part( 'no-results', 'archive-comic' );
76
+}
77
+?>
75 78
 
76 79
 	<?php endif;
77 80
 			wp_reset_postdata(); ?>
Please login to merge, or discard this patch.
content-page.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -11,18 +11,18 @@
 block discarded – undo
11 11
 <article id="post-<?php the_ID(); ?>" >
12 12
 	<div class="wrap">
13 13
 	<?php
14
-	if ( '' !== get_the_post_thumbnail() ) :
15
-		the_post_thumbnail( 'strip-featured-thumbnail' );
14
+	if ('' !== get_the_post_thumbnail()) :
15
+		the_post_thumbnail('strip-featured-thumbnail');
16 16
 	endif;
17 17
 	?>
18 18
 		<header class="entry-header">
19
-	<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
19
+	<?php the_title('<h1 class="entry-title">', '</h1>'); ?>
20 20
 		</header><!-- .entry-header -->
21 21
 
22 22
 	<footer class="entry-meta">
23 23
 	<?php strip_entry_meta(); ?>
24 24
 
25
-	<?php edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?>
25
+	<?php edit_post_link(__('Edit', 'strip'), '<span class="edit-link">', '</span>'); ?>
26 26
 		</footer><!-- .entry-meta -->
27 27
 
28 28
 		<div class="entry-content clear">
Please login to merge, or discard this patch.
content-quote.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
 	?>
@@ -21,13 +21,13 @@  discard block
 block discarded – undo
21 21
 
22 22
 		<footer class="entry-meta">
23 23
 
24
-			<span class="entry-format"><a href="<?php echo esc_url( get_post_format_link( 'quote' ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'All %s posts', 'strip' ), get_post_format_string( 'quote' ) ) ); ?>"><?php echo esc_html( get_post_format_string( 'quote' ) ); ?></a></span>
24
+			<span class="entry-format"><a href="<?php echo esc_url(get_post_format_link('quote')); ?>" title="<?php echo esc_attr(sprintf(__('All %s posts', 'strip'), get_post_format_string('quote'))); ?>"><?php echo esc_html(get_post_format_string('quote')); ?></a></span>
25 25
 
26
-	<?php edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?>
26
+	<?php edit_post_link(__('Edit', 'strip'), '<span class="edit-link">', '</span>'); ?>
27 27
 		</footer><!-- .entry-meta -->
28 28
 
29 29
 		<div class="entry-content">
30
-	<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'strip' ) ); ?>
30
+	<?php the_content(__('Continue reading <span class="meta-nav">&rarr;</span>', 'strip')); ?>
31 31
 
32 32
 		</div><!-- .entry-content -->
33 33
 		</div><!-- .entry-wrap -->
Please login to merge, or discard this patch.
archive-story.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,8 +30,10 @@
 block discarded – undo
30 30
 
31 31
 		if ( ! is_single() ) :
32 32
 			the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
33
-		else :
33
+		else {
34
+			:
34 35
 			the_title( '<h1 class="entry-title">', '</h1>' );
36
+		}
35 37
 		endif;
36 38
 		?>
37 39
 	</header><!-- .entry-header -->
Please login to merge, or discard this 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.
content-aside.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( 'aside' ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'All %s posts', 'strip' ), get_post_format_string( 'aside' ) ) ); ?>"><?php echo esc_html( get_post_format_string( 'aside' ) ); ?></a></span>
25
+			<span class="entry-format"><a href="<?php echo esc_url(get_post_format_link('aside')); ?>" title="<?php echo esc_attr(sprintf(__('All %s posts', 'strip'), get_post_format_string('aside'))); ?>"><?php echo esc_html(get_post_format_string('aside')); ?></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-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.
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.
inc/custom-header.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
  * @package strip
19 19
  */
20 20
 function strip_custom_header_setup() {
21
-	add_theme_support( 'custom-header', apply_filters( 'strip_custom_header_args', array(
21
+	add_theme_support('custom-header', apply_filters('strip_custom_header_args', array(
22 22
 		'default-image'          => get_template_directory_uri() . '/assets/images/Default-header.png',
23 23
 		'default-text-color'     => '000',
24 24
 		'flex-width'             => true,
@@ -28,20 +28,20 @@  discard block
 block discarded – undo
28 28
 		'wp-head-callback'       => 'strip_header_style',
29 29
 		'admin-head-callback'    => 'strip_admin_header_style',
30 30
 		'admin-preview-callback' => 'strip_admin_header_image',
31
-	) ) );
31
+	)));
32 32
 }
33
-add_action( 'after_setup_theme', 'strip_custom_header_setup' );
33
+add_action('after_setup_theme', 'strip_custom_header_setup');
34 34
 
35
-if ( ! function_exists( 'strip_header_style' ) ) :
35
+if ( ! function_exists('strip_header_style')) :
36 36
 
37 37
 	/**
38 38
 * Register default header image
39 39
 */
40
-	register_default_headers( array(
40
+	register_default_headers(array(
41 41
 		'DefaultHeader' => array(
42 42
 		'url'  			=> get_template_directory_uri() . '/assets/images/Default-header.png',
43 43
 		'thumbnail_url' => get_template_directory_uri() . '/assets/images/Default-header.png',
44
-		'description'   => _x( 'DefaultHeader', 'header image description', 'strip' ),
44
+		'description'   => _x('DefaultHeader', 'header image description', 'strip'),
45 45
 		),
46 46
 	));
47 47
 	/**
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 
55 55
 		// If no custom options for text are set, let's bail
56 56
 		// get_header_textcolor() options: add_theme_support( 'custom-header' ) is default, hide text (returns 'blank') or any hex value.
57
-		if ( get_theme_support( 'custom-header', 'default-text-color' ) === $header_text_color ) {
57
+		if (get_theme_support('custom-header', 'default-text-color') === $header_text_color) {
58 58
 			return;
59 59
 		}
60 60
 		// If we get this far, we have custom styles. Let's do this.
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 		<style type="text/css">
63 63
 		<?php
64 64
 		// Has the text been hidden?
65
-		if ( 'blank' === $header_text_color ) :
65
+		if ('blank' === $header_text_color) :
66 66
 	?>
67 67
 		.site-title,
68 68
 		.site-description {
@@ -75,10 +75,10 @@  discard block
 block discarded – undo
75 75
 	?>
76 76
 		.site-title a,
77 77
 		.site-description {
78
-			color: #<?php echo esc_html( $header_text_color ); ?>;
78
+			color: #<?php echo esc_html($header_text_color); ?>;
79 79
 		}
80 80
 		.site-title {
81
-			border-color: #<?php echo esc_html( $header_text_color ); ?>;
81
+			border-color: #<?php echo esc_html($header_text_color); ?>;
82 82
 		}
83 83
 	<?php endif; ?>
84 84
 
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 	}
88 88
 endif; // strip_header_style.
89 89
 
90
-if ( ! function_exists( 'strip_admin_header_style' ) ) :
90
+if ( ! function_exists('strip_admin_header_style')) :
91 91
 	/**
92 92
 	 * Styles the header image displayed on the Appearance > Header admin panel.
93 93
 	 *
@@ -120,19 +120,19 @@  discard block
 block discarded – undo
120 120
 	}
121 121
 endif; // strip_admin_header_style.
122 122
 
123
-if ( ! function_exists( 'strip_admin_header_image' ) ) :
123
+if ( ! function_exists('strip_admin_header_image')) :
124 124
 	/**
125 125
 	 * Custom header image markup displayed on the Appearance > Header admin panel.
126 126
 	 *
127 127
 	 * @see strip_custom_header_setup().
128 128
 	 */
129 129
 	function strip_admin_header_image() {
130
-		$style        = sprintf( ' style="color:#%s;"', get_header_textcolor() );
130
+		$style = sprintf(' style="color:#%s;"', get_header_textcolor());
131 131
 		?>
132 132
 		<div id="headimg">
133
-		<h1 class="displaying-header-text"><a id="name"<?php echo esc_attr( $style ); ?> onclick="return false;" href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></h1>
134
-		<div class="displaying-header-text" id="desc"<?php echo esc_attr( $style ); ?>><?php bloginfo( 'description' ); ?></div>
135
-		<?php if ( get_header_image() ) : ?>
133
+		<h1 class="displaying-header-text"><a id="name"<?php echo esc_attr($style); ?> onclick="return false;" href="<?php echo esc_url(home_url('/')); ?>"><?php bloginfo('name'); ?></a></h1>
134
+		<div class="displaying-header-text" id="desc"<?php echo esc_attr($style); ?>><?php bloginfo('description'); ?></div>
135
+		<?php if (get_header_image()) : ?>
136 136
 		<img src="<?php header_image(); ?>" alt="">
137 137
 		<?php endif; ?>
138 138
 	</div><!-- #headimg -->
Please login to merge, or discard this patch.