Completed
Push — master ( 1a766a...402478 )
by SILENT
02:52
created
content.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -10,24 +10,24 @@  discard block
 block discarded – undo
10 10
 
11 11
 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
12 12
 	<div class="wrap">
13
-			<?php if ( '' !== get_the_post_thumbnail() && ! is_single() ) : ?>
14
-			<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'strip' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="<?php the_ID(); ?>" class="strip-featured-thumbnail">
15
-				<?php the_post_thumbnail( 'strip-featured-thumbnail' ); ?>
13
+			<?php if ('' !== get_the_post_thumbnail() && ! is_single()) : ?>
14
+			<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr(sprintf(__('Permalink to %s', 'strip'), the_title_attribute('echo=0'))); ?>" rel="<?php the_ID(); ?>" class="strip-featured-thumbnail">
15
+				<?php the_post_thumbnail('strip-featured-thumbnail'); ?>
16 16
 			</a>
17 17
 			<?php else : ?>
18
-				<?php the_post_thumbnail( 'strip-featured-thumbnail' ); ?>
18
+				<?php the_post_thumbnail('strip-featured-thumbnail'); ?>
19 19
 			<?php endif; ?>
20 20
 
21 21
 		<header class="entry-header">
22 22
 			<?php
23
-			$categories_list = get_the_category_list( __( ', ', 'strip' ) );
24
-			if ( $categories_list && strip_categorized_blog() ) {
23
+			$categories_list = get_the_category_list(__(', ', 'strip'));
24
+			if ($categories_list && strip_categorized_blog()) {
25 25
 				echo '<span class="categories-links">' . $categories_list . '</span>';
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 -->
@@ -35,14 +35,14 @@  discard block
 block discarded – undo
35 35
 		<footer class="entry-meta">
36 36
 			<?php strip_entry_meta(); ?>
37 37
 
38
-			<?php if ( ! post_password_required() && ( comments_open() || '0' !== get_comments_number() ) ) : ?>
39
-			<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'strip' ), __( '1 Comment', 'strip' ), __( '% Comments', 'strip' ) ); ?></span>
38
+			<?php if ( ! post_password_required() && (comments_open() || '0' !== get_comments_number())) : ?>
39
+			<span class="comments-link"><?php comments_popup_link(__('Leave a comment', 'strip'), __('1 Comment', 'strip'), __('% Comments', 'strip')); ?></span>
40 40
 			<?php endif; ?>
41 41
 
42
-			<?php edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?>
42
+			<?php edit_post_link(__('Edit', 'strip'), '<span class="edit-link">', '</span>'); ?>
43 43
 		</footer><!-- .entry-meta -->
44 44
 
45
-		<?php if ( is_search() ) : // Only display Excerpts for Search. ?>
45
+		<?php if (is_search()) : // Only display Excerpts for Search. ?>
46 46
 		<div class="entry-summary">
47 47
 			<?php the_excerpt(); ?>
48 48
 		</div><!-- .entry-summary -->
@@ -51,16 +51,16 @@  discard block
 block discarded – undo
51 51
 			<?php
52 52
 			the_content(sprintf(
53 53
 				/* translators: %s: Name of current post. */
54
-				esc_html( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'strip' ), array( 'span' => array( 'class' => array() ) ) ),
55
-				get_the_title( '<span class="screen-reader-text">"', '"</span>', false )
54
+				esc_html(__('Continue reading %s <span class="meta-nav">&rarr;</span>', 'strip'), array('span' => array('class' => array()))),
55
+				get_the_title('<span class="screen-reader-text">"', '"</span>', false)
56 56
 			));
57 57
 
58 58
 			wp_link_pages(array(
59
-				'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'strip' ) . '</span>',
59
+				'before'      => '<div class="page-links"><span class="page-links-title">' . __('Pages:', 'strip') . '</span>',
60 60
 				'after'       => '</div>',
61 61
 				'link_before' => '<span>',
62 62
 				'link_after'  => '</span>',
63
-				'pagelink'    => '<span class="screen-reader-text">' . __( 'Page', 'strip' ) . ' </span>%',
63
+				'pagelink'    => '<span class="screen-reader-text">' . __('Page', 'strip') . ' </span>%',
64 64
 				'separator'   => '<span class="screen-reader-text">, </span>',
65 65
 			));
66 66
 		?>
Please login to merge, or discard this patch.
inc/custom-header.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
  * @package strip
19 19
  */
20 20
 function strip_custom_header_setup() {
21
-	add_theme_support( 'custom-header', apply_filters( 'strip_custom_header_args', array(
21
+	add_theme_support('custom-header', apply_filters('strip_custom_header_args', array(
22 22
 		'default-image'          => get_template_directory_uri() . '/assets/images/Default-header.png',
23 23
 		'default-text-color'     => '000',
24 24
 		'flex-width'             => true,
@@ -28,24 +28,24 @@  discard block
 block discarded – undo
28 28
 		'wp-head-callback'       => 'strip_header_style',
29 29
 		'admin-head-callback'    => 'strip_admin_header_style',
30 30
 			'admin-preview-callback' => 'strip_admin_header_image',
31
-	) ) );
31
+	)));
32 32
 	/**
33 33
  * Register default header image
34 34
  */
35
-	register_default_headers( array(
35
+	register_default_headers(array(
36 36
 		'DefaultHeader' => array(
37 37
 		'url'  			=> get_template_directory_uri() . '/assets/images/Default-header.png',
38 38
 		'thumbnail_url' => get_template_directory_uri() . '/assets/images/Default-header.png',
39
-		'description'   => _x( 'DefaultHeader', 'header image description', 'strip' ),
39
+		'description'   => _x('DefaultHeader', 'header image description', 'strip'),
40 40
 		),
41 41
 		)
42 42
 	);
43 43
 
44 44
 }
45 45
 
46
-add_action( 'after_setup_theme', 'strip_custom_header_setup' );
46
+add_action('after_setup_theme', 'strip_custom_header_setup');
47 47
 
48
-if ( ! function_exists( 'strip_header_style' ) ) :
48
+if ( ! function_exists('strip_header_style')) :
49 49
 	/**
50 50
 	 * Styles the header image and text displayed on the blog
51 51
 	 *
@@ -57,34 +57,34 @@  discard block
 block discarded – undo
57 57
 		  $header_text_color = get_header_textcolor();
58 58
 
59 59
 			/* Header image. */
60
-		$header_image = esc_url( get_header_image() );
60
+		$header_image = esc_url(get_header_image());
61 61
 
62 62
 		/* Start header styles. */
63 63
 		$style = '';
64 64
 
65 65
 		/* When to show header image. */
66
-		$min_width = absint( apply_filters( 'strip_header_bg_show', 1 ) );
66
+		$min_width = absint(apply_filters('strip_header_bg_show', 1));
67 67
 
68 68
 		/* Background arguments. */
69
-		$background_arguments = esc_attr( apply_filters( 'strip_header_bg_arguments', 'no-repeat 50% 50%' ) );
69
+		$background_arguments = esc_attr(apply_filters('strip_header_bg_arguments', 'no-repeat 50% 50%'));
70 70
 
71
-		if ( ! empty( $header_image ) ) {
71
+		if ( ! empty($header_image)) {
72 72
 			$style .= "@media screen and (min-width: {$min_width}px) { body.custom-header-image .site-header { background: url({$header_image}) {$background_arguments}; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } }";
73 73
 		}
74 74
 
75 75
 		/* Site title styles. */
76
-		if ( display_header_text() ) {
76
+		if (display_header_text()) {
77 77
 			$style .= ".site-title, .site-title a, .site-description, .site-description a { color: #{$header_text_color} }";
78 78
 			$style .= ".site-title { border-color: #{$header_text_color} }";
79 79
 		}
80 80
 
81
-		if ( ! display_header_text() ) {
81
+		if ( ! display_header_text()) {
82 82
 			$style .= '.site-title, .site-title a, .site-description, .site-description a { clip: rect(1px, 1px, 1px, 1px); position: absolute; }';
83 83
 		}
84 84
 
85 85
 		/* Echo styles if it's not empty. */
86
-		if ( ! empty( $style ) ) {
87
-			echo "\n" . '<style type="text/css" id="custom-header-css">' . esc_attr( trim( $style ) ) . '</style>' . "\n";
86
+		if ( ! empty($style)) {
87
+			echo "\n" . '<style type="text/css" id="custom-header-css">' . esc_attr(trim($style)) . '</style>' . "\n";
88 88
 		}
89 89
 
90 90
 	}
Please login to merge, or discard this patch.
search.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -11,39 +11,39 @@
 block discarded – undo
11 11
 	<section id="primary"
12 12
 	<main id="content" role="main">
13 13
 
14
-		<?php if ( have_posts() ) : ?>
14
+		<?php if (have_posts()) : ?>
15 15
 
16 16
 			<header class="page-header">
17
-				<h1 class="page-title"><?php printf( esc_html__( 'Search Results for: %s', 'strip' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
17
+				<h1 class="page-title"><?php printf(esc_html__('Search Results for: %s', 'strip'), '<span>' . get_search_query() . '</span>'); ?></h1>
18 18
 			</header><!-- .page-header -->
19 19
 
20 20
 			<?php /* Start the Loop */ ?>
21
-			<?php while ( have_posts() ) :
21
+			<?php while (have_posts()) :
22 22
 				the_post();
23 23
 
24
-				get_template_part( 'content', get_post_format() );
24
+				get_template_part('content', get_post_format());
25 25
 
26 26
 			endwhile;
27 27
 
28
-			the_posts_pagination( array(
29
-				'prev_text' => _x( '&#8592;', 'Previous page link', 'strip' ) . '<span class="screen-reader-text">' . __( 'Previous page', 'strip' ) . '</span>',
30
-				'next_text' => '<span class="screen-reader-text">' . __( 'Next page', 'strip' ) . '</span>' . _x( '&#8594;', 'Next post link', 'strip' ),
31
-				'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'strip' ) . ' </span>',
32
-			) );
28
+			the_posts_pagination(array(
29
+				'prev_text' => _x('&#8592;', 'Previous page link', 'strip') . '<span class="screen-reader-text">' . __('Previous page', 'strip') . '</span>',
30
+				'next_text' => '<span class="screen-reader-text">' . __('Next page', 'strip') . '</span>' . _x('&#8594;', 'Next post link', 'strip'),
31
+				'before_page_number' => '<span class="meta-nav screen-reader-text">' . __('Page', 'strip') . ' </span>',
32
+			));
33 33
 
34 34
 		else : ?>
35 35
 
36 36
 <article id="post-0" class="no-results">
37 37
 	<header class="page-header">
38
-		<h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'strip' ); ?></h1>
38
+		<h1 class="page-title"><?php esc_html_e('Nothing Found', 'strip'); ?></h1>
39 39
 	</header><!-- .page-header -->
40 40
 <div class="entry-content">
41
-			<p> <?php esc_html_e( 'Bummer, I cannot find what you are looking for.
42
-				Would you like to search in the', 'strip' ); ?>
41
+			<p> <?php esc_html_e('Bummer, I cannot find what you are looking for.
42
+				Would you like to search in the', 'strip'); ?>
43 43
 
44
-			<a href="<?php echo esc_url( get_post_type_archive_link( 'comic' ) ); ?>">Comics Archive</a>? Great stuff there.</p>
44
+			<a href="<?php echo esc_url(get_post_type_archive_link('comic')); ?>">Comics Archive</a>? Great stuff there.</p>
45 45
 
46
-			<p><?php esc_html_e( 'Or do you prefer trying another search with different keywords?', 'strip' ); ?></p>
46
+			<p><?php esc_html_e('Or do you prefer trying another search with different keywords?', 'strip'); ?></p>
47 47
 
48 48
 			<?php get_search_form(); ?>
49 49
 
Please login to merge, or discard this patch.
index.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -17,10 +17,10 @@  discard block
 block discarded – undo
17 17
 	<div id="primary" class="content-area">
18 18
 		<div id="content" class="site-content" role="main">
19 19
 
20
-		<?php if ( have_posts() ) : ?>
20
+		<?php if (have_posts()) : ?>
21 21
 
22 22
 	<?php /* Start the Loop */ ?>
23
-			<?php while ( have_posts() ) :
23
+			<?php while (have_posts()) :
24 24
 				the_post(); ?>
25 25
 
26 26
 				<?php
@@ -31,22 +31,22 @@  discard block
 block discarded – undo
31 31
 				* If you want to override this in a child theme, then include a file
32 32
 				* called content-___.php (where ___ is the Post Format name) and that will be used instead.
33 33
 				*/
34
-					get_template_part( 'content', get_post_format() );
34
+					get_template_part('content', get_post_format());
35 35
 				?>
36 36
 
37 37
 			<?php endwhile; ?>
38 38
 
39 39
 			<div class="wrap">
40
-					<?php the_posts_pagination( array(
41
-						'prev_text' => _x( '&#8592;', 'Previous page link', 'strip' ) . '<span class="screen-reader-text">' . __( 'Previous page', 'strip' ) . '</span>',
42
-						'next_text' => '<span class="screen-reader-text">' . __( 'Next page', 'strip' ) . '</span>' . _x( '&#8594;', 'Next post link', 'strip' ),
43
-						'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'strip' ) . ' </span>',
44
-					) ); ?>
40
+					<?php the_posts_pagination(array(
41
+						'prev_text' => _x('&#8592;', 'Previous page link', 'strip') . '<span class="screen-reader-text">' . __('Previous page', 'strip') . '</span>',
42
+						'next_text' => '<span class="screen-reader-text">' . __('Next page', 'strip') . '</span>' . _x('&#8594;', 'Next post link', 'strip'),
43
+						'before_page_number' => '<span class="meta-nav screen-reader-text">' . __('Page', 'strip') . ' </span>',
44
+					)); ?>
45 45
 	</div>
46 46
 
47 47
 		<?php else : ?>
48 48
 
49
-			<?php get_template_part( 'no-results', 'index' ); ?>
49
+			<?php get_template_part('no-results', 'index'); ?>
50 50
 
51 51
 		<?php endif; ?>
52 52
 
Please login to merge, or discard this patch.
archive.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -14,19 +14,19 @@  discard block
 block discarded – undo
14 14
 	<main id="main" class="site-main" role="main">
15 15
 
16 16
 	<?php
17
-	if ( have_posts() ) : ?>
17
+	if (have_posts()) : ?>
18 18
 
19 19
 		<header class="page-header">
20 20
 			<div class="wrap">
21 21
 			<?php
22
-				the_archive_title( '<h1 class="page-title">', '</h1>' );
23
-				the_archive_description( '<div class="taxonomy-description">', '</div>' );
22
+				the_archive_title('<h1 class="page-title">', '</h1>');
23
+				the_archive_description('<div class="taxonomy-description">', '</div>');
24 24
 			?>
25 25
 				</div><!-- .wrap -->
26 26
 			</header><!-- .page-header -->
27 27
 
28 28
 			<?php /* Start the Loop */ ?>
29
-			<?php while ( have_posts() ) : the_post(); ?>
29
+			<?php while (have_posts()) : the_post(); ?>
30 30
 
31 31
 				<?php
32 32
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 					 * If you want to overload this in a child theme then include a file
36 36
 					 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
37 37
 					 */
38
-					get_template_part( 'content', get_post_format() );
38
+					get_template_part('content', get_post_format());
39 39
 				?>
40 40
 
41 41
 			<?php endwhile; ?>
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
 		<?php else : ?>
48 48
 
49
-			<?php get_template_part( 'no-results', 'archive' ); ?>
49
+			<?php get_template_part('no-results', 'archive'); ?>
50 50
 
51 51
 		<?php endif; ?>
52 52
 
Please login to merge, or discard this patch.
assets/admin.php 1 patch
Spacing   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -25,20 +25,20 @@  discard block
 block discarded – undo
25 25
  */
26 26
 function disable_default_dashboard_widgets() {
27 27
 	global $wp_meta_boxes;
28
-	unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_activity'] );        // Activity Widget.
29
-	unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments'] ); // Comments Widget.
30
-	unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links'] );  // Incoming Links Widget.
31
-	unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins'] );         // Plugins Widget.
28
+	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_activity']); // Activity Widget.
29
+	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']); // Comments Widget.
30
+	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']); // Incoming Links Widget.
31
+	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']); // Plugins Widget.
32 32
 
33
-	unset( $wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press'] );       // Quick Press Widget.
34
-	unset( $wp_meta_boxes['dashboard']['side']['core']['dashboard_recent_drafts'] );     // Recent Drafts Widget.
35
-	unset( $wp_meta_boxes['dashboard']['side']['core']['dashboard_primary'] );           // WordPress related feed.
36
-	unset( $wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary'] );         //
33
+	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']); // Quick Press Widget.
34
+	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_recent_drafts']); // Recent Drafts Widget.
35
+	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']); // WordPress related feed.
36
+	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']); //
37 37
 
38 38
 	// remove plugin dashboard boxes
39
-	unset( $wp_meta_boxes['dashboard']['normal']['core']['yoast_db_widget'] );           // Yoast's SEO Plugin Widget.
40
-	unset( $wp_meta_boxes['dashboard']['normal']['core']['rg_forms_dashboard'] );        // Gravity Forms Plugin Widget.
41
-	unset( $wp_meta_boxes['dashboard']['normal']['core']['bbp-dashboard-right-now'] );   // bbPress Plugin Widget.
39
+	unset($wp_meta_boxes['dashboard']['normal']['core']['yoast_db_widget']); // Yoast's SEO Plugin Widget.
40
+	unset($wp_meta_boxes['dashboard']['normal']['core']['rg_forms_dashboard']); // Gravity Forms Plugin Widget.
41
+	unset($wp_meta_boxes['dashboard']['normal']['core']['bbp-dashboard-right-now']); // bbPress Plugin Widget.
42 42
 
43 43
 	/*
44 44
 	Have more plugin widgets you'd like to remove?
@@ -61,31 +61,31 @@  discard block
 block discarded – undo
61 61
  * RSS Dasboars Widget
62 62
  */
63 63
 function strip_rss_dashboard_widget() {
64
-	if ( function_exists( 'fetch_feed' ) ) {
65
-		$feed = fetch_feed( 'https://silent-comics.tumblr.com/rss/' );// specify the source feed.
66
-		if ( is_wp_error( $feed ) ) {
64
+	if (function_exists('fetch_feed')) {
65
+		$feed = fetch_feed('https://silent-comics.tumblr.com/rss/'); // specify the source feed.
66
+		if (is_wp_error($feed)) {
67 67
 			return;
68 68
 		}
69
-			$limit = $feed->get_item_quantity( 7 );                        // specify number of items.
70
-			$items = $feed->get_items( 0, $limit );                        // create an array of items.
69
+			$limit = $feed->get_item_quantity(7); // specify number of items.
70
+			$items = $feed->get_items(0, $limit); // create an array of items.
71 71
 	}
72
-	if ( 0 ) { echo '<div>The RSS Feed is either empty or unavailable.</div>'; // fallback message.
72
+	if (0) { echo '<div>The RSS Feed is either empty or unavailable.</div>'; // fallback message.
73 73
 		return;
74 74
 	}
75
-	foreach ( $items as $item ) { ?>
75
+	foreach ($items as $item) { ?>
76 76
 
77 77
 			<h4 style="margin-bottom: 1em; max-width: 384px;">
78
-				<a href="<?php echo esc_url( $item->get_permalink() ); ?>" title="" target="_blank">
79
-					<?php echo esc_attr( $item->get_title() ); ?>
78
+				<a href="<?php echo esc_url($item->get_permalink()); ?>" title="" target="_blank">
79
+					<?php echo esc_attr($item->get_title()); ?>
80 80
 					<br>
81 81
 				</a>
82 82
 			</h4>
83 83
 
84
-			<?php echo esc_html( mysql2date( __( 'j F Y @ g:i a', 'strip' ), $item->get_date( 'Y-m-d H:i:s' ) ) ); ?>
84
+			<?php echo esc_html(mysql2date(__('j F Y @ g:i a', 'strip'), $item->get_date('Y-m-d H:i:s'))); ?>
85 85
 
86 86
 			<p style="margin-top: 1.2em;
87 87
 					  #strip_rss_dashboard_widget .postbox.postbox-container { width: 12px; }">
88
-			<?php echo wp_kses_post( substr( $item->get_description(), 0, 742 ) ); ?>
88
+			<?php echo wp_kses_post(substr($item->get_description(), 0, 742)); ?>
89 89
 			</p>
90 90
 			<?php
91 91
 	}
@@ -95,16 +95,16 @@  discard block
 block discarded – undo
95 95
  * Calling all custom dashboard widgets.
96 96
  */
97 97
 function strip_custom_dashboard_widgets() {
98
-	wp_add_dashboard_widget( 'strip_rss_dashboard_widget', __( 'SILENT COMICS on tumblr', 'strip' ), 'strip_rss_dashboard_widget' );
98
+	wp_add_dashboard_widget('strip_rss_dashboard_widget', __('SILENT COMICS on tumblr', 'strip'), 'strip_rss_dashboard_widget');
99 99
 	/**
100 100
 	* Be sure to drop any other created Dashboard Widgets.
101 101
 	* in this function and they will all load.
102 102
 	*/
103 103
 }
104 104
 // removing the dashboard widgets.
105
-add_action( 'wp_dashboard_setup', 'disable_default_dashboard_widgets' );
105
+add_action('wp_dashboard_setup', 'disable_default_dashboard_widgets');
106 106
 // adding any custom widgets.
107
-add_action( 'wp_dashboard_setup', 'strip_custom_dashboard_widgets' );
107
+add_action('wp_dashboard_setup', 'strip_custom_dashboard_widgets');
108 108
 
109 109
 
110 110
 /************* CUSTOM LOGIN PAGE *****************/
@@ -115,10 +115,10 @@  discard block
 block discarded – undo
115 115
  * See http://codex.wordpress.org/Plugin_API/Action_Reference/login_enqueue_scripts.
116 116
  */
117 117
 function strip_login_css() {
118
-	 wp_enqueue_style( 'strip_login_css', get_template_directory_uri() . '/assets/css/login.css', false );
118
+	 wp_enqueue_style('strip_login_css', get_template_directory_uri() . '/assets/css/login.css', false);
119 119
 
120 120
 	// Enqueue custom font to the login form.
121
-	wp_enqueue_style( 'strip_inconsolata_css', get_template_directory_uri() . '/assets/fonts/inconsolata.css', array(), null );
121
+	wp_enqueue_style('strip_inconsolata_css', get_template_directory_uri() . '/assets/fonts/inconsolata.css', array(), null);
122 122
 }
123 123
 
124 124
 /**
@@ -135,12 +135,12 @@  discard block
 block discarded – undo
135 135
 	 * @return blog title.
136 136
 	 */
137 137
 function strip_login_title() {
138
-	return get_option( 'blogname' ); }
138
+	return get_option('blogname'); }
139 139
 
140 140
 // calling only on the login page.
141
-add_action( 'login_enqueue_scripts', 'strip_login_css', 10 );
142
-add_filter( 'login_headerurl', 'strip_login_url' );
143
-add_filter( 'login_headertitle', 'strip_login_title' );
141
+add_action('login_enqueue_scripts', 'strip_login_css', 10);
142
+add_filter('login_headerurl', 'strip_login_url');
143
+add_filter('login_headertitle', 'strip_login_title');
144 144
 
145 145
 /************* CUSTOMIZE ADMIN *******************/
146 146
 
@@ -156,10 +156,10 @@  discard block
 block discarded – undo
156 156
  */
157 157
 function strip_custom_admin_footer() {
158 158
 	?>
159
-	<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>
159
+	<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>
160 160
 			<span class="sep"> | </span>
161
-			<a href="<?php echo esc_url( __( 'https://github.com/SilentComics/Strip/', 'strip' ) ); ?>"><?php printf( esc_html__( 'Contribute on %s', 'strip' ), 'GitHub' ); ?></a>
161
+			<a href="<?php echo esc_url(__('https://github.com/SilentComics/Strip/', 'strip')); ?>"><?php printf(esc_html__('Contribute on %s', 'strip'), 'GitHub'); ?></a>
162 162
 <?php }
163 163
 
164 164
 // adding it to the admin area.
165
-add_filter( 'admin_footer_text', 'strip_custom_admin_footer' );
165
+add_filter('admin_footer_text', 'strip_custom_admin_footer');
Please login to merge, or discard this patch.
inc/extras.php 1 patch
Spacing   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -14,30 +14,30 @@  discard block
 block discarded – undo
14 14
  * @param array $classes group-blog.
15 15
  * @return array
16 16
  */
17
-function strip_body_classes( $classes ) {
17
+function strip_body_classes($classes) {
18 18
 	// Adds a class of group-blog to blogs with more than 1 published author.
19
-	if ( is_multi_author() ) {
19
+	if (is_multi_author()) {
20 20
 		$classes[] = 'group-blog';
21 21
 	}
22 22
 
23 23
 	return $classes;
24 24
 }
25
-add_filter( 'body_class', 'strip_body_classes' );
25
+add_filter('body_class', 'strip_body_classes');
26 26
 
27 27
 /**
28 28
  * Disable emojis introduced in WordPress 4.2.
29 29
  */
30 30
 function disable_emojis() {
31
-	remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
32
-	remove_action( 'admin_print_scripts', 'print_emoji_detection_script' );
33
-	remove_action( 'wp_print_styles', 'print_emoji_styles' );
34
-	remove_action( 'admin_print_styles', 'print_emoji_styles' );
35
-	remove_filter( 'the_content_feed', 'wp_staticize_emoji' );
36
-	remove_filter( 'comment_text_rss', 'wp_staticize_emoji' );
37
-	remove_filter( 'wp_mail', 'wp_staticize_emoji_for_email' );
38
-	add_filter( 'tiny_mce_plugins', 'disable_emojis_tinymce' );
39
-	add_filter( 'wp_resource_hints', 'disable_emojis_remove_dns_prefetch', 10, 2 );
40
-} add_action( 'init', 'disable_emojis' );
31
+	remove_action('wp_head', 'print_emoji_detection_script', 7);
32
+	remove_action('admin_print_scripts', 'print_emoji_detection_script');
33
+	remove_action('wp_print_styles', 'print_emoji_styles');
34
+	remove_action('admin_print_styles', 'print_emoji_styles');
35
+	remove_filter('the_content_feed', 'wp_staticize_emoji');
36
+	remove_filter('comment_text_rss', 'wp_staticize_emoji');
37
+	remove_filter('wp_mail', 'wp_staticize_emoji_for_email');
38
+	add_filter('tiny_mce_plugins', 'disable_emojis_tinymce');
39
+	add_filter('wp_resource_hints', 'disable_emojis_remove_dns_prefetch', 10, 2);
40
+} add_action('init', 'disable_emojis');
41 41
 
42 42
 /**
43 43
  * Filter function used to remove the tinymce emoji plugin.
@@ -45,9 +45,9 @@  discard block
 block discarded – undo
45 45
  * @param array $plugins disable_emojis_tinymce.
46 46
  * @return array Difference betwen the two arrays.
47 47
  */
48
-function disable_emojis_tinymce( $plugins ) {
49
-	if ( is_array( $plugins ) ) {
50
-		return array_diff( $plugins, array( 'wpemoji' ) );
48
+function disable_emojis_tinymce($plugins) {
49
+	if (is_array($plugins)) {
50
+		return array_diff($plugins, array('wpemoji'));
51 51
 	} return array();
52 52
 }
53 53
 	/**
@@ -57,10 +57,10 @@  discard block
 block discarded – undo
57 57
 	 * @param string $relation_type The relation type the URLs are printed for.
58 58
 	 * @return array Difference betwen the two arrays.
59 59
 	 */
60
-function disable_emojis_remove_dns_prefetch( $urls, $relation_type ) {
61
-	if ( 'dns-prefetch' !== $relation_type ) { /** This filter is documented in wp-includes/formatting.php */
62
-		$emoji_svg_url = apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/2/svg/' );
63
-		$urls = array_diff( $urls, array( $emoji_svg_url ) );
60
+function disable_emojis_remove_dns_prefetch($urls, $relation_type) {
61
+	if ('dns-prefetch' !== $relation_type) { /** This filter is documented in wp-includes/formatting.php */
62
+		$emoji_svg_url = apply_filters('emoji_svg_url', 'https://s.w.org/images/core/emoji/2/svg/');
63
+		$urls = array_diff($urls, array($emoji_svg_url));
64 64
 	}
65 65
 	return $urls; }
66 66
 
@@ -70,22 +70,22 @@  discard block
 block discarded – undo
70 70
 	 * @since    1.1.3
71 71
 	 * @link: http://cubiq.org/clean-up-and-optimize-wordpress-for-your-next-theme
72 72
 	 */
73
-			remove_action( 'wp_head', 'wp_generator' );					// WP Version.
74
-			remove_action( 'wp_head', 'wlwmanifest_link' );
75
-			remove_action( 'wp_head', 'rsd_link' );
76
-			remove_action( 'wp_head', 'rel_canonical', 10, 0 );
77
-			remove_action( 'wp_head', 'wp_shortlink_wp_head', 10, 0 );
73
+			remove_action('wp_head', 'wp_generator'); // WP Version.
74
+			remove_action('wp_head', 'wlwmanifest_link');
75
+			remove_action('wp_head', 'rsd_link');
76
+			remove_action('wp_head', 'rel_canonical', 10, 0);
77
+			remove_action('wp_head', 'wp_shortlink_wp_head', 10, 0);
78 78
 
79
-			remove_action( 'wp_head', 'parent_post_rel_link', 10, 0 );// Parent rel link.
80
-			remove_action( 'wp_head', 'start_post_rel_link', 10, 0 );	// Start post rel link.
81
-			remove_action( 'wp_head', 'index_rel_link' );
79
+			remove_action('wp_head', 'parent_post_rel_link', 10, 0); // Parent rel link.
80
+			remove_action('wp_head', 'start_post_rel_link', 10, 0); // Start post rel link.
81
+			remove_action('wp_head', 'index_rel_link');
82 82
 
83
-			remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0 ); // Adjacent post rel link.
83
+			remove_action('wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0); // Adjacent post rel link.
84 84
 
85
-			add_filter( 'the_generator', '__return_false' );
85
+			add_filter('the_generator', '__return_false');
86 86
 
87
-			remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
88
-			remove_action( 'wp_print_styles', 'print_emoji_styles' );
87
+			remove_action('wp_head', 'print_emoji_detection_script', 7);
88
+			remove_action('wp_print_styles', 'print_emoji_styles');
89 89
 	/**
90 90
 	 * Cleanup head remove rss version
91 91
 	 *
@@ -100,8 +100,8 @@  discard block
 block discarded – undo
100 100
 	 * @param array $headers remove x pingback.
101 101
 	 * @since    1.1.3
102 102
 	 */
103
-function strip_remove_x_pingback( $headers ) {
104
-	unset( $headers['X-Pingback'] );
103
+function strip_remove_x_pingback($headers) {
104
+	unset($headers['X-Pingback']);
105 105
 	return $headers;
106 106
 }
107 107
 
@@ -112,9 +112,9 @@  discard block
 block discarded – undo
112 112
 	 */
113 113
 function strip_remove_comments_inline_styles() {
114 114
 	global $wp_widget_factory;
115
-	if ( has_filter( 'wp_head', 'wp_widget_recent_comments_style' ) ) {
116
-		remove_filter( 'wp_head', 'wp_widget_recent_comments_style' );
115
+	if (has_filter('wp_head', 'wp_widget_recent_comments_style')) {
116
+		remove_filter('wp_head', 'wp_widget_recent_comments_style');
117 117
 	}
118 118
 
119
-	remove_action( 'wp_head', array( $wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 'recent_comments_style' ) );
119
+	remove_action('wp_head', array($wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 'recent_comments_style'));
120 120
 }
Please login to merge, or discard this patch.
archive-comic.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -13,14 +13,14 @@  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>
@@ -28,8 +28,8 @@  discard block
 block discarded – undo
28 28
 				<?php
29 29
 					// Show an optional term description.
30 30
 					$term_description = term_description();
31
-				if ( ! empty( $term_description ) ) :
32
-					'<div class="taxonomy-description"' . printf( esc_html( '%s', $term_description ) ) . '</div>';
31
+				if ( ! empty($term_description)) :
32
+					'<div class="taxonomy-description"' . printf(esc_html('%s', $term_description)) . '</div>';
33 33
 				endif;
34 34
 				?>
35 35
 			</header><!-- .page-header -->
@@ -47,24 +47,24 @@  discard block
 block discarded – undo
47 47
 		)
48 48
 	);
49 49
 
50
-while ( $comic->have_posts() ) : $comic->the_post();
51
-	get_template_part( 'content-comic' );
50
+while ($comic->have_posts()) : $comic->the_post();
51
+	get_template_part('content-comic');
52 52
 	// change to 'content' to style it like the blog entry page.
53 53
 		?>
54 54
 	<?php endwhile;
55 55
 						wp_reset_postdata(); ?>
56 56
 
57 57
 						<div class="wrap">
58
-								<?php the_posts_pagination( array(
59
-									'prev_text' => _x( '&#8592;', 'Previous page link', 'strip' ) . '<span class="screen-reader-text">' . __( 'Previous page', 'strip' ) . '</span>',
60
-									'next_text' => '<span class="screen-reader-text">' . __( 'Next page', 'strip' ) . '</span>' . _x( '&#8594;', 'Next post link', 'strip' ),
61
-									'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'strip' ) . ' </span>',
62
-								) ); ?>
58
+								<?php the_posts_pagination(array(
59
+									'prev_text' => _x('&#8592;', 'Previous page link', 'strip') . '<span class="screen-reader-text">' . __('Previous page', 'strip') . '</span>',
60
+									'next_text' => '<span class="screen-reader-text">' . __('Next page', 'strip') . '</span>' . _x('&#8594;', 'Next post link', 'strip'),
61
+									'before_page_number' => '<span class="meta-nav screen-reader-text">' . __('Page', 'strip') . ' </span>',
62
+								)); ?>
63 63
 				</div>
64 64
 
65 65
 	<?php else : ?>
66 66
 
67
-	<?php get_template_part( 'no-results', 'archive-comic' ); ?>
67
+	<?php get_template_part('no-results', 'archive-comic'); ?>
68 68
 
69 69
 	<?php endif;
70 70
 			wp_reset_postdata(); ?>
Please login to merge, or discard this patch.
taxonomy-story-name.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -14,13 +14,13 @@  discard block
 block discarded – undo
14 14
 
15 15
 	<header class="page-header">
16 16
 
17
-	<h1 class="page-title"><?php single_term_title( 'All episodes: ' ); ?></h1>
17
+	<h1 class="page-title"><?php single_term_title('All episodes: '); ?></h1>
18 18
 
19 19
 	<?php
20 20
 	// Show an optional term description.
21 21
 	$term_description = term_description();
22
-	if ( ! empty( $term_description ) ) :
23
-		printf( '<div class="taxonomy-description">%s</div>', $term_description, 'strip' ); // WPCS: XSS OK.
22
+	if ( ! empty($term_description)) :
23
+		printf('<div class="taxonomy-description">%s</div>', $term_description, 'strip'); // WPCS: XSS OK.
24 24
 endif;
25 25
 ?>
26 26
 
@@ -36,30 +36,30 @@  discard block
 block discarded – undo
36 36
 	'order'           => 'ASC',
37 37
 	);
38 38
 
39
-	$loop = new WP_Query( $args );
39
+	$loop = new WP_Query($args);
40 40
 	// Start the loop.
41
-	if ( $loop->have_posts() ) :
41
+	if ($loop->have_posts()) :
42 42
 		$i = 1;
43
-		while ( $loop->have_posts() && $i < 3 ) : $loop->the_post(); // 3 sets the posts per page. @link https://digwp.com/2009/12/limit-posts-without-plugin/
43
+		while ($loop->have_posts() && $i < 3) : $loop->the_post(); // 3 sets the posts per page. @link https://digwp.com/2009/12/limit-posts-without-plugin/
44 44
 
45
-			get_template_part( 'content-series' ); ?>
45
+			get_template_part('content-series'); ?>
46 46
 
47 47
 				<?php  $i++;
48 48
 endwhile;
49 49
 		wp_reset_postdata(); ?>
50 50
 
51 51
 <div class="wrap">
52
-	<?php the_posts_pagination( array(
53
-		'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'strip' ) . ' </span>',
54
-		'prev_text' => __( 'Previous', 'strip' ), // In case you want to change the previous link text.
55
-		'next_text' => __( 'Next', 'strip' ), // In case you want to change the next link text.
52
+	<?php the_posts_pagination(array(
53
+		'before_page_number' => '<span class="meta-nav screen-reader-text">' . __('Page', 'strip') . ' </span>',
54
+		'prev_text' => __('Previous', 'strip'), // In case you want to change the previous link text.
55
+		'next_text' => __('Next', 'strip'), // In case you want to change the next link text.
56 56
 		'type' => 'title', // How you want the return value to be formatted.
57 57
 		'add_fragment' => '#result', // Your anchor.
58
-	) ); ?>
58
+	)); ?>
59 59
 </div>
60 60
 
61 61
 <?php else :
62
-	get_template_part( 'no-results', 'archive-comic' );
62
+	get_template_part('no-results', 'archive-comic');
63 63
 endif; ?>
64 64
 
65 65
 		</main><!-- #content -->
Please login to merge, or discard this patch.