@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | * @subpackage Strip |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! is_active_sidebar( 'sidebar' ) ) { |
|
9 | +if ( ! is_active_sidebar('sidebar')) { |
|
10 | 10 | return; |
11 | 11 | } |
12 | 12 | ?> |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | |
18 | 18 | <div class="main-sidebar"> |
19 | 19 | |
20 | - <?php dynamic_sidebar( 'sidebar' ); ?> |
|
20 | + <?php dynamic_sidebar('sidebar'); ?> |
|
21 | 21 | |
22 | 22 | </div> |
23 | 23 | </div><!-- .widget-wrap --> |
@@ -16,21 +16,21 @@ discard block |
||
16 | 16 | <div id="primary" |
17 | 17 | <main id="content" class="wrap" role="main"> |
18 | 18 | |
19 | - <?php if ( have_posts() ) : ?> |
|
19 | + <?php if (have_posts()) : ?> |
|
20 | 20 | <header class="page-header"> |
21 | 21 | </br> |
22 | 22 | <?php |
23 | 23 | // Show an optional term description. |
24 | 24 | $term_description = term_description(); |
25 | - if ( ! empty( $term_description ) ) : |
|
26 | - printf( '<div class="taxonomy-description">%s</div>', $term_description, 'strip' ); // WPCS: XSS OK. |
|
25 | + if ( ! empty($term_description)) : |
|
26 | + printf('<div class="taxonomy-description">%s</div>', $term_description, 'strip'); // WPCS: XSS OK. |
|
27 | 27 | endif; ?> |
28 | 28 | <h4 class="comic-blurb">Here are your uncategorized comics. To order them, go to Add New Comic, then + Add New Story and write a series title of your choice, or check an existing series box, if you had one. To write your own custom taxonomies, clone taxonomy-story-draft.php and replace "draft" by your own story name.</h4> |
29 | 29 | </header><!-- .page-header --> |
30 | 30 | |
31 | 31 | <?php // Create and run first loop in reverse order. |
32 | 32 | $comic = new WP_Query(); |
33 | - $comic->query( array( |
|
33 | + $comic->query(array( |
|
34 | 34 | 'post_type' => 'comic', |
35 | 35 | 'showposts' => -1, |
36 | 36 | 'story' => 'draft', |
@@ -39,9 +39,9 @@ discard block |
||
39 | 39 | ) |
40 | 40 | ); |
41 | 41 | |
42 | -while ( $comic->have_posts() ) : $comic->the_post(); |
|
42 | +while ($comic->have_posts()) : $comic->the_post(); |
|
43 | 43 | |
44 | - get_template_part( 'content-comic' ); ?> |
|
44 | + get_template_part('content-comic'); ?> |
|
45 | 45 | |
46 | 46 | <?php endwhile; ?> |
47 | 47 | <?php |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | ?> |
50 | 50 | <?php else : ?> |
51 | 51 | |
52 | - <?php get_template_part( 'no-results', 'archive-comic' ); ?> |
|
52 | + <?php get_template_part('no-results', 'archive-comic'); ?> |
|
53 | 53 | |
54 | 54 | <?php endif; ?> |
55 | 55 |
@@ -14,13 +14,13 @@ discard block |
||
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 | - echo apply_filters( 'taxonomy_archive_meta', '<div class="taxonomy-description">' . $term_description . '</div>' ); |
|
22 | + if ( ! empty($term_description)) : |
|
23 | + echo apply_filters('taxonomy_archive_meta', '<div class="taxonomy-description">' . $term_description . '</div>'); |
|
24 | 24 | endif; |
25 | 25 | ?> |
26 | 26 | |
@@ -28,10 +28,10 @@ discard block |
||
28 | 28 | |
29 | 29 | <?php |
30 | 30 | // get the correct paged figure on a static page. |
31 | - if ( get_query_var( 'paged' ) ) { |
|
32 | - $paged = get_query_var( 'paged' ); |
|
33 | - } elseif ( get_query_var( 'page' ) ) { |
|
34 | - $paged = get_query_var( 'page' ); |
|
31 | + if (get_query_var('paged')) { |
|
32 | + $paged = get_query_var('paged'); |
|
33 | + } elseif (get_query_var('page')) { |
|
34 | + $paged = get_query_var('page'); |
|
35 | 35 | } else { |
36 | 36 | $paged = 1; |
37 | 37 | } |
@@ -47,12 +47,12 @@ discard block |
||
47 | 47 | 'order' => 'ASC', |
48 | 48 | ); |
49 | 49 | |
50 | - $loop = new WP_Query( $args ); |
|
50 | + $loop = new WP_Query($args); |
|
51 | 51 | // Start the loop. |
52 | - if ( $loop->have_posts() ) : |
|
53 | - while ( $loop->have_posts() ) : $loop->the_post(); |
|
52 | + if ($loop->have_posts()) : |
|
53 | + while ($loop->have_posts()) : $loop->the_post(); |
|
54 | 54 | |
55 | - get_template_part( 'content-series' ); ?> |
|
55 | + get_template_part('content-series'); ?> |
|
56 | 56 | |
57 | 57 | <?php endwhile; |
58 | 58 | wp_reset_postdata(); ?> |
@@ -61,13 +61,13 @@ discard block |
||
61 | 61 | global $wp_query; |
62 | 62 | |
63 | 63 | $big = 999999999; // need an unlikely integer. |
64 | - $translated = __( 'Page', 'strip' ); // supply translatable string. |
|
64 | + $translated = __('Page', 'strip'); // supply translatable string. |
|
65 | 65 | |
66 | 66 | echo paginate_links( |
67 | 67 | array( |
68 | - 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), |
|
68 | + 'base' => str_replace($big, '%#%', esc_url(get_pagenum_link($big))), |
|
69 | 69 | 'format' => '?paged=%#%', |
70 | - 'current' => max( 1, get_query_var( 'paged' ) ), |
|
70 | + 'current' => max(1, get_query_var('paged')), |
|
71 | 71 | 'total' => $loop->max_num_pages, |
72 | 72 | 'before_page_number' => '<span class="screen-reader-text">' . $translated . ' </span>', |
73 | 73 | ) |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | |
76 | 76 | |
77 | 77 | else : |
78 | - get_template_part( 'no-results', 'archive-comic' ); |
|
78 | + get_template_part('no-results', 'archive-comic'); |
|
79 | 79 | endif; ?> |
80 | 80 | |
81 | 81 | </main><!-- #content --> |
@@ -11,35 +11,35 @@ |
||
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 | - strip_content_nav( 'nav-below' ); |
|
28 | + strip_content_nav('nav-below'); |
|
29 | 29 | |
30 | 30 | else : ?> |
31 | 31 | |
32 | 32 | <article id="post-0" class="no-results"> |
33 | 33 | <header class="page-header"> |
34 | - <h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'strip' ); ?></h1> |
|
34 | + <h1 class="page-title"><?php esc_html_e('Nothing Found', 'strip'); ?></h1> |
|
35 | 35 | </header><!-- .page-header --> |
36 | 36 | <div class="entry-content"> |
37 | - <p> <?php esc_html_e( 'Bummer, I cannot find what you are looking for. |
|
38 | - Would you like to search in the', 'strip' ); ?> |
|
37 | + <p> <?php esc_html_e('Bummer, I cannot find what you are looking for. |
|
38 | + Would you like to search in the', 'strip'); ?> |
|
39 | 39 | |
40 | - <a href="<?php echo esc_url( get_post_type_archive_link( 'comic' ) ); ?>">Comics Archive</a>? Great stuff there.</p> |
|
40 | + <a href="<?php echo esc_url(get_post_type_archive_link('comic')); ?>">Comics Archive</a>? Great stuff there.</p> |
|
41 | 41 | |
42 | - <p><?php esc_html_e( 'Or do you prefer trying another search with different keywords?', 'strip' ); ?></p> |
|
42 | + <p><?php esc_html_e('Or do you prefer trying another search with different keywords?', 'strip'); ?></p> |
|
43 | 43 | |
44 | 44 | <?php get_search_form(); ?> |
45 | 45 |
@@ -13,15 +13,15 @@ |
||
13 | 13 | <section id="primary"> |
14 | 14 | <main id="content" role="main"> |
15 | 15 | |
16 | - <?php while ( have_posts() ) : the_post(); ?> |
|
16 | + <?php while (have_posts()) : the_post(); ?> |
|
17 | 17 | |
18 | - <?php get_template_part( 'content', get_post_format() ); ?> |
|
18 | + <?php get_template_part('content', get_post_format()); ?> |
|
19 | 19 | |
20 | - <?php strip_content_nav( 'nav-below' ); ?> |
|
20 | + <?php strip_content_nav('nav-below'); ?> |
|
21 | 21 | |
22 | 22 | <?php |
23 | 23 | // If comments are open or we have at least one comment, load up the comment template. |
24 | - if ( comments_open() || '0' !== get_comments_number() ) { |
|
24 | + if (comments_open() || '0' !== get_comments_number()) { |
|
25 | 25 | comments_template(); |
26 | 26 | } |
27 | 27 | ?> |
@@ -13,14 +13,14 @@ |
||
13 | 13 | <footer id="colophon" class="site-footer" role="contentinfo"> |
14 | 14 | |
15 | 15 | <div class="site-info"> |
16 | - © <span class="site-name"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span> <?php |
|
16 | + © <span class="site-name"><a href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a></span> <?php |
|
17 | 17 | $from_year = 2013; |
18 | - $this_year = (int) date( 'Y' ); |
|
19 | - echo esc_html( $from_year . (($from_year !== $this_year) ? '-' . $this_year : '') );?> |
|
18 | + $this_year = (int) date('Y'); |
|
19 | + echo esc_html($from_year . (($from_year !== $this_year) ? '-' . $this_year : '')); ?> |
|
20 | 20 | <span class="sep"> | </span> |
21 | - <?php do_action( 'strip_credits' ); |
|
21 | + <?php do_action('strip_credits'); |
|
22 | 22 | ?> |
23 | - <a href="<?php echo esc_url( __( 'https://github.com/SilentComics/Strip', 'strip' ) ); ?>"><?php printf( esc_html__( 'Theme: %1$s by %2$s.', 'strip' ), 'strip', 'Hoa' ); ?></a> |
|
23 | + <a href="<?php echo esc_url(__('https://github.com/SilentComics/Strip', 'strip')); ?>"><?php printf(esc_html__('Theme: %1$s by %2$s.', 'strip'), 'strip', 'Hoa'); ?></a> |
|
24 | 24 | </div><!-- .site-info --> |
25 | 25 | </footer><!-- #colophon --> |
26 | 26 | </div><!-- #page --> |
@@ -13,15 +13,15 @@ discard block |
||
13 | 13 | * |
14 | 14 | * @param $strings $classes group-blog. |
15 | 15 | */ |
16 | -function strip_body_classes( $classes ) { |
|
16 | +function strip_body_classes($classes) { |
|
17 | 17 | // Adds a class of group-blog to blogs with more than 1 published author. |
18 | - if ( is_multi_author() ) { |
|
18 | + if (is_multi_author()) { |
|
19 | 19 | $classes[] = 'group-blog'; |
20 | 20 | } |
21 | 21 | |
22 | 22 | return $classes; |
23 | 23 | } |
24 | -add_filter( 'body_class', 'strip_body_classes' ); |
|
24 | +add_filter('body_class', 'strip_body_classes'); |
|
25 | 25 | |
26 | 26 | /** |
27 | 27 | * Filters wp_title to print a neat <title> tag based on what is being viewed. |
@@ -29,27 +29,27 @@ discard block |
||
29 | 29 | * @param $strings $title $paged. |
30 | 30 | * @param $strings $sep title. |
31 | 31 | */ |
32 | -function strip_wp_title( $title, $sep ) { |
|
32 | +function strip_wp_title($title, $sep) { |
|
33 | 33 | global $page, $paged; |
34 | 34 | |
35 | - if ( is_feed() ) { |
|
35 | + if (is_feed()) { |
|
36 | 36 | return $title; |
37 | 37 | } |
38 | 38 | |
39 | 39 | // Add the blog name. |
40 | - $title .= get_bloginfo( 'name' ); |
|
40 | + $title .= get_bloginfo('name'); |
|
41 | 41 | |
42 | 42 | // Add the blog description for the home/front page. |
43 | - $site_description = get_bloginfo( 'description', 'display' ); |
|
44 | - if ( $site_description && ( is_home() || is_front_page() ) ) { |
|
43 | + $site_description = get_bloginfo('description', 'display'); |
|
44 | + if ($site_description && (is_home() || is_front_page())) { |
|
45 | 45 | $title .= " $sep $site_description"; |
46 | 46 | } |
47 | 47 | |
48 | 48 | // Add a page number if necessary. |
49 | - if ( $paged >= 2 || $page >= 2 ) { |
|
50 | - $title .= " $sep " . sprintf( __( 'Page %s', 'strip' ), max( $paged, $page ) ); |
|
49 | + if ($paged >= 2 || $page >= 2) { |
|
50 | + $title .= " $sep " . sprintf(__('Page %s', 'strip'), max($paged, $page)); |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | return $title; |
54 | 54 | } |
55 | -add_filter( 'wp_title', 'strip_wp_title', 10, 2 ); |
|
55 | +add_filter('wp_title', 'strip_wp_title', 10, 2); |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | 'posts_per_page' => false, |
24 | 24 | )); |
25 | 25 | } |
26 | -add_action( 'after_setup_theme', 'strip_infinite_scroll_setup' ); |
|
26 | +add_action('after_setup_theme', 'strip_infinite_scroll_setup'); |
|
27 | 27 | |
28 | 28 | /** |
29 | 29 | * Enables Jetpack's Infinite Scroll for home (blog), disables it in WooCommerce product archives |
@@ -32,6 +32,6 @@ discard block |
||
32 | 32 | * https://wordpress.org/support/topic/suppress-infinite-blog-with-woocommerce |
33 | 33 | */ |
34 | 34 | function strip_jetpack_infinite_scroll_supported() { |
35 | - return current_theme_supports( 'infinite-scroll' ) && ( is_admin() || is_home() || is_search() && ! is_post_type_archive( 'product' ) ); |
|
35 | + return current_theme_supports('infinite-scroll') && (is_admin() || is_home() || is_search() && ! is_post_type_archive('product')); |
|
36 | 36 | } |
37 | -add_filter( 'infinite_scroll_archive_supported', 'strip_jetpack_infinite_scroll_supported' ); |
|
37 | +add_filter('infinite_scroll_archive_supported', 'strip_jetpack_infinite_scroll_supported'); |
@@ -18,7 +18,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
75 | 75 | ?> |
76 | 76 | .site-title a, |
77 | 77 | .site-description { |
78 | - color: #<?php echo esc_attr( $header_text_color ); ?>; |
|
78 | + color: #<?php echo esc_attr($header_text_color); ?>; |
|
79 | 79 | } |
80 | 80 | .site-title { |
81 | - border-color: #<?php echo esc_attr( $header_text_color ); ?>; |
|
81 | + border-color: #<?php echo esc_attr($header_text_color); ?>; |
|
82 | 82 | } |
83 | 83 | <?php endif; ?> |
84 | 84 | |
@@ -87,7 +87,7 @@ discard block |
||
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,20 +120,20 @@ discard block |
||
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 | $header_image = get_header_image(); |
132 | 132 | ?> |
133 | 133 | <div id="headimg"> |
134 | - <h1 class="displaying-header-text"><a id="name"<?php echo $style; ?> onclick="return false;" href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></h1> |
|
135 | - <div class="displaying-header-text" id="desc"<?php echo $style; ?>><?php bloginfo( 'description' ); ?></div> |
|
136 | - <?php if ( get_header_image() ) : ?> |
|
134 | + <h1 class="displaying-header-text"><a id="name"<?php echo $style; ?> onclick="return false;" href="<?php echo esc_url(home_url('/')); ?>"><?php bloginfo('name'); ?></a></h1> |
|
135 | + <div class="displaying-header-text" id="desc"<?php echo $style; ?>><?php bloginfo('description'); ?></div> |
|
136 | + <?php if (get_header_image()) : ?> |
|
137 | 137 | <img src="<?php header_image(); ?>" alt=""> |
138 | 138 | <?php endif; ?> |
139 | 139 | </div><!-- #headimg --> |