@@ -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,24 +28,24 @@ 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 | 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 |
||
| 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 | } |
@@ -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 | endif; ?> |
| 27 | 27 | |
@@ -13,88 +13,88 @@ discard block |
||
| 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 | |
| 32 | - $nav_class = ( is_single() || is_post_type( 'comic' ) ) ? 'post-navigation' : 'paging-navigation' ; |
|
| 32 | + $nav_class = (is_single() || is_post_type('comic')) ? 'post-navigation' : 'paging-navigation'; |
|
| 33 | 33 | |
| 34 | 34 | ?> <div class="wrap clear"> |
| 35 | 35 | |
| 36 | - <nav role="navigation" id="<?php echo esc_attr( $nav_id ); ?>" class="<?php echo esc_attr( $nav_class ); ?> clear"> |
|
| 37 | - <h1 class="screen-reader-text"><?php esc_html_e( 'Post navigation', 'strip' ); ?></h1> |
|
| 36 | + <nav role="navigation" id="<?php echo esc_attr($nav_id); ?>" class="<?php echo esc_attr($nav_class); ?> clear"> |
|
| 37 | + <h1 class="screen-reader-text"><?php esc_html_e('Post navigation', 'strip'); ?></h1> |
|
| 38 | 38 | |
| 39 | - <?php if ( 'comic' === get_post_type() && ( is_single() ) ) : // comics navigation links. |
|
| 39 | + <?php if ('comic' === get_post_type() && (is_single())) : // comics navigation links. |
|
| 40 | 40 | |
| 41 | 41 | $nav_class .= ' navigation-comic'; ?> |
| 42 | 42 | |
| 43 | 43 | <div class="navigation-comic"> |
| 44 | - <nav class="nav-first"><a href="<?php echo esc_url( first_comic_link() ); ?>"><?php esc_html_e( 'Start', 'strip' ); ?></a></nav> |
|
| 45 | - <nav class="nav-previous"><?php previous_post_link( '%link', __( 'Previous', 'strip' ), true, '', 'story' ); ?></nav> |
|
| 46 | - <nav class="nav-title"><?php the_title( '<h4 class="series-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h4>' ); ?></nav> |
|
| 47 | - <nav class="nav-next"><?php next_post_link( '%link', __( 'Next', 'strip' ), true, '', 'story' ); ?></nav> |
|
| 48 | - <nav class="nav-last"><a href="<?php echo esc_url( last_comic_link() ); ?>"><?php esc_html_e( 'Last', 'strip' ); ?></a></nav> |
|
| 44 | + <nav class="nav-first"><a href="<?php echo esc_url(first_comic_link()); ?>"><?php esc_html_e('Start', 'strip'); ?></a></nav> |
|
| 45 | + <nav class="nav-previous"><?php previous_post_link('%link', __('Previous', 'strip'), true, '', 'story'); ?></nav> |
|
| 46 | + <nav class="nav-title"><?php the_title('<h4 class="series-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h4>'); ?></nav> |
|
| 47 | + <nav class="nav-next"><?php next_post_link('%link', __('Next', 'strip'), true, '', 'story'); ?></nav> |
|
| 48 | + <nav class="nav-last"><a href="<?php echo esc_url(last_comic_link()); ?>"><?php esc_html_e('Last', 'strip'); ?></a></nav> |
|
| 49 | 49 | </div><!-- .navigation-comic --> |
| 50 | 50 | |
| 51 | - <?php elseif ( is_single() ) : // navigation links for single posts. ?> |
|
| 51 | + <?php elseif (is_single()) : // navigation links for single posts. ?> |
|
| 52 | 52 | |
| 53 | - <?php previous_post_link( '<div class="nav-previous">%link</div>', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'strip' ) . '</span> %title' ); ?> |
|
| 54 | - <?php next_post_link( '<div class="nav-next">%link</div>', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'strip' ) . '</span>' ); ?> |
|
| 53 | + <?php previous_post_link('<div class="nav-previous">%link</div>', '<span class="meta-nav">' . _x('←', 'Previous post link', 'strip') . '</span> %title'); ?> |
|
| 54 | + <?php next_post_link('<div class="nav-next">%link</div>', '%title <span class="meta-nav">' . _x('→', 'Next post link', 'strip') . '</span>'); ?> |
|
| 55 | 55 | |
| 56 | 56 | <?php endif; ?> |
| 57 | 57 | |
| 58 | 58 | </div><!-- .entry-wrap --> |
| 59 | - </nav><!-- #<?php echo esc_attr( $nav_id ); ?> --> |
|
| 59 | + </nav><!-- #<?php echo esc_attr($nav_id); ?> --> |
|
| 60 | 60 | <?php |
| 61 | 61 | } |
| 62 | 62 | endif; // strip_content_nav. |
| 63 | 63 | |
| 64 | -if ( ! function_exists( 'strip_entry_meta' ) ) : |
|
| 64 | +if ( ! function_exists('strip_entry_meta')) : |
|
| 65 | 65 | /** |
| 66 | 66 | * Prints HTML with meta information for the current post-date/time and author. |
| 67 | 67 | */ |
| 68 | 68 | function strip_entry_meta() { |
| 69 | - if ( is_sticky() && is_home() ) { |
|
| 69 | + if (is_sticky() && is_home()) { |
|
| 70 | 70 | printf( |
| 71 | - wp_kses( '<span class="featured-post"><a href="%1$s" title="%2$s" rel="bookmark">Sticky</a></span>', 'strip' ), |
|
| 72 | - esc_url( get_permalink() ), |
|
| 73 | - esc_attr( get_the_time() ) |
|
| 71 | + wp_kses('<span class="featured-post"><a href="%1$s" title="%2$s" rel="bookmark">Sticky</a></span>', 'strip'), |
|
| 72 | + esc_url(get_permalink()), |
|
| 73 | + esc_attr(get_the_time()) |
|
| 74 | 74 | ); |
| 75 | 75 | } |
| 76 | 76 | |
| 77 | - if ( 'post' === get_post_type() ) { |
|
| 77 | + if ('post' === get_post_type()) { |
|
| 78 | 78 | printf( |
| 79 | - __( '<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' ), |
|
| 80 | - esc_url( get_permalink() ), |
|
| 81 | - esc_attr( get_the_time() ), |
|
| 82 | - esc_attr( get_the_date( 'c' ) ), |
|
| 79 | + __('<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'), |
|
| 80 | + esc_url(get_permalink()), |
|
| 81 | + esc_attr(get_the_time()), |
|
| 82 | + esc_attr(get_the_date('c')), |
|
| 83 | 83 | get_the_date(), |
| 84 | - esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), |
|
| 85 | - esc_attr( sprintf( __( 'View all posts by %s', 'strip' ), get_the_author() ) ), |
|
| 84 | + esc_url(get_author_posts_url(get_the_author_meta('ID'))), |
|
| 85 | + esc_attr(sprintf(__('View all posts by %s', 'strip'), get_the_author())), |
|
| 86 | 86 | get_the_author() |
| 87 | 87 | ); |
| 88 | 88 | } |
| 89 | 89 | |
| 90 | - $tags_list = get_the_tag_list( '', _x( ', ', 'Used between list items, there is a space after the comma.', 'strip' ) ); |
|
| 91 | - if ( $tags_list ) { |
|
| 92 | - printf( '<span class="tags-links">' . esc_html( '%1$s', 'strip' ) . '</span>', $tags_list ); // WPCS: XSS OK. |
|
| 90 | + $tags_list = get_the_tag_list('', _x(', ', 'Used between list items, there is a space after the comma.', 'strip')); |
|
| 91 | + if ($tags_list) { |
|
| 92 | + printf('<span class="tags-links">' . esc_html('%1$s', 'strip') . '</span>', $tags_list); // WPCS: XSS OK. |
|
| 93 | 93 | } |
| 94 | 94 | } |
| 95 | 95 | endif; |
| 96 | 96 | |
| 97 | -if ( ! function_exists( 'strip_term_description' ) ) : |
|
| 97 | +if ( ! function_exists('strip_term_description')) : |
|
| 98 | 98 | /** |
| 99 | 99 | * Display optional term description for category, tag and custom taxonomy pages. |
| 100 | 100 | * |
@@ -104,8 +104,8 @@ discard block |
||
| 104 | 104 | // Show an optional term description. |
| 105 | 105 | $term_description = term_description(); |
| 106 | 106 | |
| 107 | - if ( is_post_type_archive( 'comic' ) || is_category() || is_tag() || is_tax( 'story' ) && ! empty( $term_description ) ) : |
|
| 108 | - printf( '<div class="taxonomy-description">%s</div>', $term_description, 'strip' ); // WPCS: XSS OK. |
|
| 107 | + if (is_post_type_archive('comic') || is_category() || is_tag() || is_tax('story') && ! empty($term_description)) : |
|
| 108 | + printf('<div class="taxonomy-description">%s</div>', $term_description, 'strip'); // WPCS: XSS OK. |
|
| 109 | 109 | endif; |
| 110 | 110 | } |
| 111 | 111 | endif; // ends check for strip_term_description. |
@@ -116,25 +116,25 @@ discard block |
||
| 116 | 116 | * @return bool |
| 117 | 117 | */ |
| 118 | 118 | function strip_categorized_blog() { |
| 119 | - $category_count = get_transient( 'strip_categories' ); |
|
| 119 | + $category_count = get_transient('strip_categories'); |
|
| 120 | 120 | |
| 121 | - if ( false === $category_count ) { |
|
| 121 | + if (false === $category_count) { |
|
| 122 | 122 | // Create an array of all the categories that are attached to posts. |
| 123 | - $categories = get_categories( array( |
|
| 123 | + $categories = get_categories(array( |
|
| 124 | 124 | 'fields' => 'ids', |
| 125 | 125 | 'hide_empty' => 1, |
| 126 | 126 | // We only need to know if there is more than one category. |
| 127 | 127 | 'number' => 2, |
| 128 | - ) ); |
|
| 128 | + )); |
|
| 129 | 129 | |
| 130 | 130 | // Count the number of categories that are attached to the posts. |
| 131 | - $category_count = count( $categories ); |
|
| 131 | + $category_count = count($categories); |
|
| 132 | 132 | |
| 133 | - set_transient( 'strip_categories', $category_count ); |
|
| 133 | + set_transient('strip_categories', $category_count); |
|
| 134 | 134 | } |
| 135 | 135 | |
| 136 | 136 | // Allow viewing case of 0 or 1 categories in post preview. |
| 137 | - if ( is_preview() ) { |
|
| 137 | + if (is_preview()) { |
|
| 138 | 138 | return true; |
| 139 | 139 | } |
| 140 | 140 | |
@@ -146,16 +146,16 @@ discard block |
||
| 146 | 146 | * Flush out the transients used in strip_categorized_blog. |
| 147 | 147 | */ |
| 148 | 148 | function strip_category_transient_flusher() { |
| 149 | - if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { |
|
| 149 | + if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) { |
|
| 150 | 150 | return; |
| 151 | 151 | } |
| 152 | 152 | // Like, beat it. Dig? |
| 153 | - delete_transient( 'strip_categories' ); |
|
| 153 | + delete_transient('strip_categories'); |
|
| 154 | 154 | } |
| 155 | -add_action( 'edit_category', 'strip_category_transient_flusher' ); |
|
| 156 | -add_action( 'save_post', 'strip_category_transient_flusher' ); |
|
| 155 | +add_action('edit_category', 'strip_category_transient_flusher'); |
|
| 156 | +add_action('save_post', 'strip_category_transient_flusher'); |
|
| 157 | 157 | |
| 158 | -if ( ! function_exists( 'strip_the_custom_logo' ) ) : |
|
| 158 | +if ( ! function_exists('strip_the_custom_logo')) : |
|
| 159 | 159 | /** |
| 160 | 160 | * Displays the optional custom logo. |
| 161 | 161 | * |
@@ -164,7 +164,7 @@ discard block |
||
| 164 | 164 | * @since strip 1.0 |
| 165 | 165 | */ |
| 166 | 166 | function strip_the_custom_logo() { |
| 167 | - if ( function_exists( 'the_custom_logo' ) ) { |
|
| 167 | + if (function_exists('the_custom_logo')) { |
|
| 168 | 168 | the_custom_logo(); |
| 169 | 169 | } |
| 170 | 170 | } |
@@ -180,10 +180,10 @@ discard block |
||
| 180 | 180 | * @param string $taxonomy Optional. Taxonomy, if $in_same_term is true. Default 'category'. |
| 181 | 181 | * @return mixed Array containing the boundary post object if successful, null otherwise. |
| 182 | 182 | */ |
| 183 | -function get_comic_boundary_post( $in_same_term = false, $start = true, $taxonomy = 'category' ) { |
|
| 183 | +function get_comic_boundary_post($in_same_term = false, $start = true, $taxonomy = 'category') { |
|
| 184 | 184 | global $post; |
| 185 | - setup_postdata( $post ); |
|
| 186 | - if ( ! taxonomy_exists( $taxonomy ) ) { |
|
| 185 | + setup_postdata($post); |
|
| 186 | + if ( ! taxonomy_exists($taxonomy)) { |
|
| 187 | 187 | return null; |
| 188 | 188 | } |
| 189 | 189 | |
@@ -197,37 +197,37 @@ discard block |
||
| 197 | 197 | ); |
| 198 | 198 | |
| 199 | 199 | $term_array = array(); |
| 200 | - if ( $in_same_term ) { |
|
| 201 | - if ( $in_same_term ) { |
|
| 202 | - $term_array = wp_get_object_terms( $post->ID, $taxonomy, array( 'fields' => 'ids' ) ); |
|
| 200 | + if ($in_same_term) { |
|
| 201 | + if ($in_same_term) { |
|
| 202 | + $term_array = wp_get_object_terms($post->ID, $taxonomy, array('fields' => 'ids')); |
|
| 203 | 203 | } |
| 204 | - $query_args['tax_query'] = array( array( |
|
| 204 | + $query_args['tax_query'] = array(array( |
|
| 205 | 205 | 'taxonomy' => $taxonomy, |
| 206 | - 'terms' => array_merge( $term_array ), |
|
| 206 | + 'terms' => array_merge($term_array), |
|
| 207 | 207 | ), |
| 208 | 208 | ); |
| 209 | 209 | } |
| 210 | 210 | |
| 211 | 211 | $get_posts = new wp_query; |
| 212 | - return $get_posts -> query( $query_args ); |
|
| 212 | + return $get_posts -> query($query_args); |
|
| 213 | 213 | } |
| 214 | 214 | |
| 215 | 215 | /** |
| 216 | 216 | * Link to the first comic post in same term |
| 217 | 217 | */ |
| 218 | 218 | function first_comic_link() { |
| 219 | - $first = get_comic_boundary_post( true, true, 'story' ); |
|
| 220 | - apply_filters( 'the_title', $first[0]->post_title ); |
|
| 219 | + $first = get_comic_boundary_post(true, true, 'story'); |
|
| 220 | + apply_filters('the_title', $first[0]->post_title); |
|
| 221 | 221 | |
| 222 | - echo esc_html( get_permalink( $first[0]->ID ) ); |
|
| 222 | + echo esc_html(get_permalink($first[0]->ID)); |
|
| 223 | 223 | } |
| 224 | 224 | |
| 225 | 225 | /** |
| 226 | 226 | * Link to the last comic post in same term |
| 227 | 227 | */ |
| 228 | 228 | function last_comic_link() { |
| 229 | - $last = get_comic_boundary_post( true, false, 'story' ); |
|
| 230 | - apply_filters( 'the_title', $last[0]->post_title ); |
|
| 229 | + $last = get_comic_boundary_post(true, false, 'story'); |
|
| 230 | + apply_filters('the_title', $last[0]->post_title); |
|
| 231 | 231 | |
| 232 | - echo esc_html( get_permalink( $last[0]->ID ) ); |
|
| 232 | + echo esc_html(get_permalink($last[0]->ID)); |
|
| 233 | 233 | } |
@@ -11,39 +11,39 @@ |
||
| 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( '←', '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( '→', '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('←', '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('→', '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 | |
@@ -17,10 +17,10 @@ discard block |
||
| 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 |
||
| 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( '←', '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( '→', '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('←', '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('→', '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 | |
@@ -13,30 +13,30 @@ 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 | * Disable emojis introduced in WordPress 4.2. |
| 28 | 28 | */ |
| 29 | 29 | function disable_emojis() { |
| 30 | - remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); |
|
| 31 | - remove_action( 'admin_print_scripts', 'print_emoji_detection_script' ); |
|
| 32 | - remove_action( 'wp_print_styles', 'print_emoji_styles' ); |
|
| 33 | - remove_action( 'admin_print_styles', 'print_emoji_styles' ); |
|
| 34 | - remove_filter( 'the_content_feed', 'wp_staticize_emoji' ); |
|
| 35 | - remove_filter( 'comment_text_rss', 'wp_staticize_emoji' ); |
|
| 36 | - remove_filter( 'wp_mail', 'wp_staticize_emoji_for_email' ); |
|
| 37 | - add_filter( 'tiny_mce_plugins', 'disable_emojis_tinymce' ); |
|
| 38 | - add_filter( 'wp_resource_hints', 'disable_emojis_remove_dns_prefetch', 10, 2 ); |
|
| 39 | -} add_action( 'init', 'disable_emojis' ); |
|
| 30 | + remove_action('wp_head', 'print_emoji_detection_script', 7); |
|
| 31 | + remove_action('admin_print_scripts', 'print_emoji_detection_script'); |
|
| 32 | + remove_action('wp_print_styles', 'print_emoji_styles'); |
|
| 33 | + remove_action('admin_print_styles', 'print_emoji_styles'); |
|
| 34 | + remove_filter('the_content_feed', 'wp_staticize_emoji'); |
|
| 35 | + remove_filter('comment_text_rss', 'wp_staticize_emoji'); |
|
| 36 | + remove_filter('wp_mail', 'wp_staticize_emoji_for_email'); |
|
| 37 | + add_filter('tiny_mce_plugins', 'disable_emojis_tinymce'); |
|
| 38 | + add_filter('wp_resource_hints', 'disable_emojis_remove_dns_prefetch', 10, 2); |
|
| 39 | +} add_action('init', 'disable_emojis'); |
|
| 40 | 40 | |
| 41 | 41 | /** |
| 42 | 42 | * Filter function used to remove the tinymce emoji plugin. |
@@ -44,13 +44,13 @@ discard block |
||
| 44 | 44 | * @param array $plugins disable_emojis_tinymce. |
| 45 | 45 | * @return array Difference betwen the two arrays. |
| 46 | 46 | */ |
| 47 | -function disable_emojis_tinymce( $plugins ) { |
|
| 48 | - if ( is_array( $plugins ) ) { |
|
| 49 | - return array_diff( $plugins, array( 'wpemoji' ) ); |
|
| 47 | +function disable_emojis_tinymce($plugins) { |
|
| 48 | + if (is_array($plugins)) { |
|
| 49 | + return array_diff($plugins, array('wpemoji')); |
|
| 50 | 50 | } return array(); |
| 51 | 51 | } |
| 52 | 52 | /** |
| 53 | 53 | * Remove emoji CDN hostname from DNS prefetching hints. |
| 54 | 54 | */ |
| 55 | 55 | |
| 56 | -add_filter( 'emoji_svg_url', '__return_false' ); |
|
| 56 | +add_filter('emoji_svg_url', '__return_false'); |
|
@@ -26,20 +26,20 @@ discard block |
||
| 26 | 26 | */ |
| 27 | 27 | function disable_default_dashboard_widgets() { |
| 28 | 28 | global $wp_meta_boxes; |
| 29 | - unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_activity'] ); // Activity Widget. |
|
| 30 | - unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments'] ); // Comments Widget. |
|
| 31 | - unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links'] ); // Incoming Links Widget. |
|
| 32 | - unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins'] ); // Plugins Widget. |
|
| 29 | + unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_activity']); // Activity Widget. |
|
| 30 | + unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']); // Comments Widget. |
|
| 31 | + unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']); // Incoming Links Widget. |
|
| 32 | + unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']); // Plugins Widget. |
|
| 33 | 33 | |
| 34 | - unset( $wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press'] ); // Quick Press Widget. |
|
| 35 | - unset( $wp_meta_boxes['dashboard']['side']['core']['dashboard_recent_drafts'] ); // Recent Drafts Widget. |
|
| 36 | - unset( $wp_meta_boxes['dashboard']['side']['core']['dashboard_primary'] ); // WordPress related feed. |
|
| 37 | - unset( $wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary'] ); // |
|
| 34 | + unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']); // Quick Press Widget. |
|
| 35 | + unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_recent_drafts']); // Recent Drafts Widget. |
|
| 36 | + unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']); // WordPress related feed. |
|
| 37 | + unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']); // |
|
| 38 | 38 | |
| 39 | 39 | // remove plugin dashboard boxes |
| 40 | - unset( $wp_meta_boxes['dashboard']['normal']['core']['yoast_db_widget'] ); // Yoast's SEO Plugin Widget. |
|
| 41 | - unset( $wp_meta_boxes['dashboard']['normal']['core']['rg_forms_dashboard'] ); // Gravity Forms Plugin Widget. |
|
| 42 | - unset( $wp_meta_boxes['dashboard']['normal']['core']['bbp-dashboard-right-now'] ); // bbPress Plugin Widget. |
|
| 40 | + unset($wp_meta_boxes['dashboard']['normal']['core']['yoast_db_widget']); // Yoast's SEO Plugin Widget. |
|
| 41 | + unset($wp_meta_boxes['dashboard']['normal']['core']['rg_forms_dashboard']); // Gravity Forms Plugin Widget. |
|
| 42 | + unset($wp_meta_boxes['dashboard']['normal']['core']['bbp-dashboard-right-now']); // bbPress Plugin Widget. |
|
| 43 | 43 | |
| 44 | 44 | /* |
| 45 | 45 | Have more plugin widgets you'd like to remove? |
@@ -62,27 +62,27 @@ discard block |
||
| 62 | 62 | * RSS Dasboars Widget |
| 63 | 63 | */ |
| 64 | 64 | function strip_rss_dashboard_widget() { |
| 65 | - if ( function_exists( 'fetch_feed' ) ) { |
|
| 66 | - $feed = fetch_feed( 'https://silent-comics.tumblr.com/rss/' );// specify the source feed. |
|
| 67 | - if ( is_wp_error( $feed ) ) { |
|
| 65 | + if (function_exists('fetch_feed')) { |
|
| 66 | + $feed = fetch_feed('https://silent-comics.tumblr.com/rss/'); // specify the source feed. |
|
| 67 | + if (is_wp_error($feed)) { |
|
| 68 | 68 | return; |
| 69 | 69 | } |
| 70 | - $limit = $feed->get_item_quantity( 7 ); // specify number of items. |
|
| 71 | - $items = $feed->get_items( 0, $limit ); // create an array of items. |
|
| 70 | + $limit = $feed->get_item_quantity(7); // specify number of items. |
|
| 71 | + $items = $feed->get_items(0, $limit); // create an array of items. |
|
| 72 | 72 | } |
| 73 | - if ( 0 ) { echo '<div>The RSS Feed is either empty or unavailable.</div>'; // fallback message. |
|
| 73 | + if (0) { echo '<div>The RSS Feed is either empty or unavailable.</div>'; // fallback message. |
|
| 74 | 74 | return; |
| 75 | 75 | } |
| 76 | - foreach ( $items as $item ) { ?> |
|
| 76 | + foreach ($items as $item) { ?> |
|
| 77 | 77 | |
| 78 | 78 | <h4 style="margin-bottom: 0;"> |
| 79 | - <a href="<?php echo esc_url( $item->get_permalink() ); ?>" title="<?php echo esc_html( mysql2date( __( 'j F Y @ g:i a', 'strip' ), $item->get_date( 'Y-m-d H:i:s' ) ) ); ?>" target="_blank"> |
|
| 80 | - <?php echo esc_attr( $item->get_title() ); ?> |
|
| 79 | + <a href="<?php echo esc_url($item->get_permalink()); ?>" title="<?php echo esc_html(mysql2date(__('j F Y @ g:i a', 'strip'), $item->get_date('Y-m-d H:i:s'))); ?>" target="_blank"> |
|
| 80 | + <?php echo esc_attr($item->get_title()); ?> |
|
| 81 | 81 | </a> |
| 82 | 82 | </h4> |
| 83 | 83 | <p style="margin-top: 0.5em; |
| 84 | 84 | .inside { max-width: 240px;}"> |
| 85 | - <?php echo substr( $item->get_description(), 0, 600 ); ?> |
|
| 85 | + <?php echo substr($item->get_description(), 0, 600); ?> |
|
| 86 | 86 | </p> |
| 87 | 87 | <?php |
| 88 | 88 | } |
@@ -92,16 +92,16 @@ discard block |
||
| 92 | 92 | * Calling all custom dashboard widgets. |
| 93 | 93 | */ |
| 94 | 94 | function strip_custom_dashboard_widgets() { |
| 95 | - wp_add_dashboard_widget( 'strip_rss_dashboard_widget', __( 'SILENT COMICS on tumblr', 'strip' ), 'strip_rss_dashboard_widget' ); |
|
| 95 | + wp_add_dashboard_widget('strip_rss_dashboard_widget', __('SILENT COMICS on tumblr', 'strip'), 'strip_rss_dashboard_widget'); |
|
| 96 | 96 | /** |
| 97 | 97 | * Be sure to drop any other created Dashboard Widgets. |
| 98 | 98 | * in this function and they will all load. |
| 99 | 99 | */ |
| 100 | 100 | } |
| 101 | 101 | // removing the dashboard widgets. |
| 102 | -add_action( 'wp_dashboard_setup', 'disable_default_dashboard_widgets' ); |
|
| 102 | +add_action('wp_dashboard_setup', 'disable_default_dashboard_widgets'); |
|
| 103 | 103 | // adding any custom widgets. |
| 104 | -add_action( 'wp_dashboard_setup', 'strip_custom_dashboard_widgets' ); |
|
| 104 | +add_action('wp_dashboard_setup', 'strip_custom_dashboard_widgets'); |
|
| 105 | 105 | |
| 106 | 106 | |
| 107 | 107 | /************* CUSTOM LOGIN PAGE *****************/ |
@@ -112,10 +112,10 @@ discard block |
||
| 112 | 112 | * See http://codex.wordpress.org/Plugin_API/Action_Reference/login_enqueue_scripts. |
| 113 | 113 | */ |
| 114 | 114 | function strip_login_css() { |
| 115 | - wp_enqueue_style( 'strip_login_css', get_template_directory_uri() . '/assets/css/login.css', false ); |
|
| 115 | + wp_enqueue_style('strip_login_css', get_template_directory_uri() . '/assets/css/login.css', false); |
|
| 116 | 116 | |
| 117 | 117 | // Enqueue custom font to the login form. |
| 118 | - wp_enqueue_style( 'strip_inconsolata_css', get_template_directory_uri() . '/assets/fonts/inconsolata.css', array(), null ); |
|
| 118 | + wp_enqueue_style('strip_inconsolata_css', get_template_directory_uri() . '/assets/fonts/inconsolata.css', array(), null); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | /** |
@@ -132,12 +132,12 @@ discard block |
||
| 132 | 132 | * @return blog title. |
| 133 | 133 | */ |
| 134 | 134 | function strip_login_title() { |
| 135 | - return get_option( 'blogname' ); } |
|
| 135 | + return get_option('blogname'); } |
|
| 136 | 136 | |
| 137 | 137 | // calling only on the login page. |
| 138 | -add_action( 'login_enqueue_scripts', 'strip_login_css', 10 ); |
|
| 139 | -add_filter( 'login_headerurl', 'strip_login_url' ); |
|
| 140 | -add_filter( 'login_headertitle', 'strip_login_title' ); |
|
| 138 | +add_action('login_enqueue_scripts', 'strip_login_css', 10); |
|
| 139 | +add_filter('login_headerurl', 'strip_login_url'); |
|
| 140 | +add_filter('login_headertitle', 'strip_login_title'); |
|
| 141 | 141 | |
| 142 | 142 | /************* CUSTOMIZE ADMIN *******************/ |
| 143 | 143 | |
@@ -153,10 +153,10 @@ discard block |
||
| 153 | 153 | */ |
| 154 | 154 | function strip_custom_admin_footer() { |
| 155 | 155 | ?> |
| 156 | - <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> |
|
| 156 | + <span id="footer-thankyou"><a href="<?php echo esc_url(__('http://silent-comics.com/', 'strip')); ?>"><?php printf(esc_html__('Developed by %s', 'strip'), 'Silent Comics'); ?></a> |
|
| 157 | 157 | <span class="sep"> | </span> |
| 158 | - <a href="<?php echo esc_url( __( 'https://github.com/SilentComics/Strip/', 'strip' ) ); ?>"><?php printf( esc_html__( 'Contribute on %s', 'strip' ), 'GitHub' ); ?></a> |
|
| 158 | + <a href="<?php echo esc_url(__('https://github.com/SilentComics/Strip/', 'strip')); ?>"><?php printf(esc_html__('Contribute on %s', 'strip'), 'GitHub'); ?></a> |
|
| 159 | 159 | <?php } |
| 160 | 160 | |
| 161 | 161 | // adding it to the admin area. |
| 162 | -add_filter( 'admin_footer_text', 'strip_custom_admin_footer' ); |
|
| 162 | +add_filter('admin_footer_text', 'strip_custom_admin_footer'); |
|
@@ -13,70 +13,70 @@ discard block |
||
| 13 | 13 | <div id="primary" |
| 14 | 14 | <div 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 | <div class="wrap"> |
| 20 | 20 | <h1 class="page-title"> |
| 21 | 21 | <?php |
| 22 | - if ( is_author() && get_the_author_meta( 'description' ) ) { |
|
| 22 | + if (is_author() && get_the_author_meta('description')) { |
|
| 23 | 23 | echo '<div class="author-index shorter">'; |
| 24 | - get_template_part( 'inc/author','box' ); |
|
| 24 | + get_template_part('inc/author', 'box'); |
|
| 25 | 25 | echo '</div>'; |
| 26 | 26 | } |
| 27 | 27 | ?> |
| 28 | 28 | <?php |
| 29 | - if ( is_category() ) : |
|
| 30 | - printf( esc_html__( 'Category Archives: %s', 'strip' ), '<span>' . single_cat_title( '', false ) . '</span>' ); |
|
| 29 | + if (is_category()) : |
|
| 30 | + printf(esc_html__('Category Archives: %s', 'strip'), '<span>' . single_cat_title('', false) . '</span>'); |
|
| 31 | 31 | |
| 32 | - elseif ( is_tag() ) : |
|
| 33 | - printf( esc_html__( 'Tag Archives: %s', 'strip' ), '<span>' . single_tag_title( '', false ) . '</span>' ); |
|
| 32 | + elseif (is_tag()) : |
|
| 33 | + printf(esc_html__('Tag Archives: %s', 'strip'), '<span>' . single_tag_title('', false) . '</span>'); |
|
| 34 | 34 | |
| 35 | - elseif ( is_author() ) : |
|
| 36 | - printf( esc_html__( 'All articles by %s', 'strip' ), '<span class="vcard">' . get_the_author() . '</span>' ); |
|
| 35 | + elseif (is_author()) : |
|
| 36 | + printf(esc_html__('All articles by %s', 'strip'), '<span class="vcard">' . get_the_author() . '</span>'); |
|
| 37 | 37 | |
| 38 | - elseif ( is_day() ) : |
|
| 39 | - printf( esc_html__( 'Daily Archives: %s', 'strip' ), '<span>' . get_the_date() . '</span>' ); |
|
| 38 | + elseif (is_day()) : |
|
| 39 | + printf(esc_html__('Daily Archives: %s', 'strip'), '<span>' . get_the_date() . '</span>'); |
|
| 40 | 40 | |
| 41 | - elseif ( is_month() ) : |
|
| 42 | - printf( esc_html__( 'Monthly Archives: %s', 'strip' ), '<span>' . get_the_date( 'F Y' ) . '</span>' ); |
|
| 41 | + elseif (is_month()) : |
|
| 42 | + printf(esc_html__('Monthly Archives: %s', 'strip'), '<span>' . get_the_date('F Y') . '</span>'); |
|
| 43 | 43 | |
| 44 | - elseif ( is_year() ) : |
|
| 45 | - printf( esc_html__( 'Yearly Archives: %s', 'strip' ), '<span>' . get_the_date( 'Y' ) . '</span>' ); |
|
| 44 | + elseif (is_year()) : |
|
| 45 | + printf(esc_html__('Yearly Archives: %s', 'strip'), '<span>' . get_the_date('Y') . '</span>'); |
|
| 46 | 46 | |
| 47 | - elseif ( is_tax( 'post_format', 'post-format-aside' ) ) : |
|
| 48 | - esc_html_e( 'Asides', 'strip' ); |
|
| 47 | + elseif (is_tax('post_format', 'post-format-aside')) : |
|
| 48 | + esc_html_e('Asides', 'strip'); |
|
| 49 | 49 | |
| 50 | - elseif ( is_tax( 'post_format', 'post-format-gallery' ) ) : |
|
| 51 | - esc_html_e( 'Galleries', 'strip' ); |
|
| 50 | + elseif (is_tax('post_format', 'post-format-gallery')) : |
|
| 51 | + esc_html_e('Galleries', 'strip'); |
|
| 52 | 52 | |
| 53 | - elseif ( is_tax( 'post_format', 'post-format-image' ) ) : |
|
| 54 | - esc_html_e( 'Images', 'strip' ); |
|
| 53 | + elseif (is_tax('post_format', 'post-format-image')) : |
|
| 54 | + esc_html_e('Images', 'strip'); |
|
| 55 | 55 | |
| 56 | - elseif ( is_tax( 'post_format', 'post-format-video' ) ) : |
|
| 57 | - esc_html_e( 'Videos', 'strip' ); |
|
| 56 | + elseif (is_tax('post_format', 'post-format-video')) : |
|
| 57 | + esc_html_e('Videos', 'strip'); |
|
| 58 | 58 | |
| 59 | - elseif ( is_tax( 'post_format', 'post-format-quote' ) ) : |
|
| 60 | - esc_html_e( 'Quotes', 'strip' ); |
|
| 59 | + elseif (is_tax('post_format', 'post-format-quote')) : |
|
| 60 | + esc_html_e('Quotes', 'strip'); |
|
| 61 | 61 | |
| 62 | - elseif ( is_tax( 'post_format', 'post-format-link' ) ) : |
|
| 63 | - esc_html_e( 'Links', 'strip' ); |
|
| 62 | + elseif (is_tax('post_format', 'post-format-link')) : |
|
| 63 | + esc_html_e('Links', 'strip'); |
|
| 64 | 64 | |
| 65 | - elseif ( is_tax( 'post_format', 'post-format-audio' ) ) : |
|
| 66 | - esc_html_e( 'Audios', 'strip' ); |
|
| 65 | + elseif (is_tax('post_format', 'post-format-audio')) : |
|
| 66 | + esc_html_e('Audios', 'strip'); |
|
| 67 | 67 | |
| 68 | - elseif ( is_tax( 'post_format', 'post-format-chat' ) ) : |
|
| 69 | - esc_html_e( 'Chats', 'strip' ); |
|
| 68 | + elseif (is_tax('post_format', 'post-format-chat')) : |
|
| 69 | + esc_html_e('Chats', 'strip'); |
|
| 70 | 70 | |
| 71 | - elseif ( is_tax( 'story', 'story_term' ) ) : |
|
| 72 | - esc_html_e( 'Stories', 'strip' ); |
|
| 73 | - get_template_part( 'archive-comic' ); |
|
| 71 | + elseif (is_tax('story', 'story_term')) : |
|
| 72 | + esc_html_e('Stories', 'strip'); |
|
| 73 | + get_template_part('archive-comic'); |
|
| 74 | 74 | |
| 75 | - elseif ( ! 'comic' === get_post_type() ) : |
|
| 76 | - esc_html_e( 'Comics', 'strip' ); |
|
| 75 | + elseif ( ! 'comic' === get_post_type()) : |
|
| 76 | + esc_html_e('Comics', 'strip'); |
|
| 77 | 77 | |
| 78 | 78 | else : |
| 79 | - esc_html_e( 'Archives', 'strip' ); |
|
| 79 | + esc_html_e('Archives', 'strip'); |
|
| 80 | 80 | |
| 81 | 81 | endif; |
| 82 | 82 | ?> |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | <?php |
| 85 | 85 | // Show an optional term description. |
| 86 | 86 | $term_description = term_description(); |
| 87 | - if ( ! empty( $term_description ) ) : |
|
| 87 | + if ( ! empty($term_description)) : |
|
| 88 | 88 | echo '<div class="taxonomy-description">'; |
| 89 | 89 | echo term_description(); |
| 90 | 90 | echo '</div>'; |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | </header><!-- .page-header --> |
| 95 | 95 | |
| 96 | 96 | <?php /* Start the Loop */ ?> |
| 97 | - <?php while ( have_posts() ) : the_post(); ?> |
|
| 97 | + <?php while (have_posts()) : the_post(); ?> |
|
| 98 | 98 | |
| 99 | 99 | <?php |
| 100 | 100 | |
@@ -103,22 +103,22 @@ discard block |
||
| 103 | 103 | * If you want to overload this in a child theme then include a file |
| 104 | 104 | * called content-___.php (where ___ is the Post Format name) and that will be used instead. |
| 105 | 105 | */ |
| 106 | - get_template_part( 'content', get_post_format() ); |
|
| 106 | + get_template_part('content', get_post_format()); |
|
| 107 | 107 | ?> |
| 108 | 108 | |
| 109 | 109 | <?php endwhile; ?> |
| 110 | 110 | |
| 111 | 111 | <div class="wrap"> |
| 112 | - <?php the_posts_pagination( array( |
|
| 113 | - 'prev_text' => esc_html_x( '←', 'Previous page link', 'strip' ) . '<span class="screen-reader-text">' . esc_html_e( 'Previous page', 'strip' ) . '</span>', |
|
| 114 | - 'next_text' => '<span class="screen-reader-text">' . esc_html_e( 'Next page', 'strip' ) . '</span>' . esc_html_x( '→', 'Next post link', 'strip' ), |
|
| 115 | - 'before_page_number' => '<span class="meta-nav screen-reader-text">' . esc_html_e( 'Page', 'strip' ) . ' </span>', |
|
| 116 | - ) ); ?> |
|
| 112 | + <?php the_posts_pagination(array( |
|
| 113 | + 'prev_text' => esc_html_x('←', 'Previous page link', 'strip') . '<span class="screen-reader-text">' . esc_html_e('Previous page', 'strip') . '</span>', |
|
| 114 | + 'next_text' => '<span class="screen-reader-text">' . esc_html_e('Next page', 'strip') . '</span>' . esc_html_x('→', 'Next post link', 'strip'), |
|
| 115 | + 'before_page_number' => '<span class="meta-nav screen-reader-text">' . esc_html_e('Page', 'strip') . ' </span>', |
|
| 116 | + )); ?> |
|
| 117 | 117 | </div> |
| 118 | 118 | |
| 119 | 119 | <?php else : ?> |
| 120 | 120 | |
| 121 | - <?php get_template_part( 'no-results', 'archive' ); ?> |
|
| 121 | + <?php get_template_part('no-results', 'archive'); ?> |
|
| 122 | 122 | |
| 123 | 123 | <?php endif; ?> |
| 124 | 124 | |
@@ -9,11 +9,11 @@ discard block |
||
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | 11 | // Set the content width based on the theme's design and stylesheet. |
| 12 | -if ( ! isset( $content_width ) ) { |
|
| 12 | +if ( ! isset($content_width)) { |
|
| 13 | 13 | $content_width = 1920; |
| 14 | 14 | } /* pixels */ |
| 15 | 15 | |
| 16 | -if ( ! function_exists( 'strip_setup' ) ) : |
|
| 16 | +if ( ! function_exists('strip_setup')) : |
|
| 17 | 17 | /** |
| 18 | 18 | * Sets up theme defaults and registers support for various WordPress features. |
| 19 | 19 | * |
@@ -28,31 +28,31 @@ discard block |
||
| 28 | 28 | * adding custom login css |
| 29 | 29 | * changing text in footer of admin |
| 30 | 30 | */ |
| 31 | - require_once( 'assets/admin.php' ); |
|
| 31 | + require_once('assets/admin.php'); |
|
| 32 | 32 | /** |
| 33 | 33 | * Make theme available for translation |
| 34 | 34 | * Translations can be filed in the /languages/ directory |
| 35 | 35 | * If you're building a theme based on strip, use a find and replace |
| 36 | 36 | * to change 'strip' to the name of your theme in all the template files |
| 37 | 37 | */ |
| 38 | - load_theme_textdomain( 'strip', get_template_directory() . '/languages' ); |
|
| 38 | + load_theme_textdomain('strip', get_template_directory() . '/languages'); |
|
| 39 | 39 | |
| 40 | 40 | /** |
| 41 | 41 | * Add default posts and comments RSS feed links to head |
| 42 | 42 | */ |
| 43 | - add_theme_support( 'automatic-feed-links' ); |
|
| 43 | + add_theme_support('automatic-feed-links'); |
|
| 44 | 44 | |
| 45 | 45 | /** |
| 46 | 46 | * Enable support for title-tag. Allows themes to add document title tag to HTML <head> (since version 4.1.). |
| 47 | 47 | */ |
| 48 | - add_theme_support( 'title-tag' ); |
|
| 48 | + add_theme_support('title-tag'); |
|
| 49 | 49 | |
| 50 | 50 | /** |
| 51 | 51 | * Enable support for custom logo. |
| 52 | 52 | * |
| 53 | 53 | * @since strip 1.0 |
| 54 | 54 | */ |
| 55 | - add_theme_support( 'custom-logo', array( |
|
| 55 | + add_theme_support('custom-logo', array( |
|
| 56 | 56 | 'height' => 156, |
| 57 | 57 | 'width' => 312, |
| 58 | 58 | 'flex-height' => true, |
@@ -65,10 +65,10 @@ discard block |
||
| 65 | 65 | * |
| 66 | 66 | * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ |
| 67 | 67 | */ |
| 68 | - add_theme_support( 'post-thumbnails' ); |
|
| 69 | - add_image_size( 'stri-featured-image', 1920, 960, true ); |
|
| 70 | - add_image_size( 'strip-medium', 624, 312, true ); // cropped. |
|
| 71 | - add_image_size( 'strip-thumbnail', 312, 156, true ); // cropped. |
|
| 68 | + add_theme_support('post-thumbnails'); |
|
| 69 | + add_image_size('stri-featured-image', 1920, 960, true); |
|
| 70 | + add_image_size('strip-medium', 624, 312, true); // cropped. |
|
| 71 | + add_image_size('strip-thumbnail', 312, 156, true); // cropped. |
|
| 72 | 72 | |
| 73 | 73 | /** |
| 74 | 74 | * See https://css-tricks.com/snippets/wordpress/remove-paragraph-tags-from-around-images/ |
@@ -76,34 +76,34 @@ discard block |
||
| 76 | 76 | * |
| 77 | 77 | * @param $strings $content filter_ptags_on_images. |
| 78 | 78 | */ |
| 79 | - function filter_ptags_on_images( $content ) { |
|
| 80 | - return preg_replace( '/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $content ); |
|
| 79 | + function filter_ptags_on_images($content) { |
|
| 80 | + return preg_replace('/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $content); |
|
| 81 | 81 | } |
| 82 | - add_filter( 'the_content', 'filter_ptags_on_images' ); |
|
| 82 | + add_filter('the_content', 'filter_ptags_on_images'); |
|
| 83 | 83 | |
| 84 | 84 | /** |
| 85 | 85 | * This theme uses wp_nav_menu() in one location. |
| 86 | 86 | */ |
| 87 | 87 | register_nav_menus(array( |
| 88 | - 'primary' => __( 'Primary Menu', 'strip' ), |
|
| 88 | + 'primary' => __('Primary Menu', 'strip'), |
|
| 89 | 89 | )); |
| 90 | 90 | |
| 91 | 91 | /* |
| 92 | 92 | * Switch default core markup for search form, comment form, and comments |
| 93 | 93 | * to output valid HTML5. |
| 94 | 94 | */ |
| 95 | - add_theme_support( 'html5', array( |
|
| 95 | + add_theme_support('html5', array( |
|
| 96 | 96 | 'search-form', |
| 97 | 97 | 'comment-form', |
| 98 | 98 | 'comment-list', |
| 99 | 99 | 'gallery', |
| 100 | 100 | 'caption', |
| 101 | - ) ); |
|
| 101 | + )); |
|
| 102 | 102 | |
| 103 | 103 | /** |
| 104 | 104 | * Enable support for Post Formats |
| 105 | 105 | */ |
| 106 | - add_theme_support( 'post-formats', array( |
|
| 106 | + add_theme_support('post-formats', array( |
|
| 107 | 107 | 'aside', |
| 108 | 108 | 'image', |
| 109 | 109 | 'video', |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | 'status', |
| 114 | 114 | 'audio', |
| 115 | 115 | 'chat', |
| 116 | - ) ); |
|
| 116 | + )); |
|
| 117 | 117 | |
| 118 | 118 | // Setup the WordPress core custom background feature. |
| 119 | 119 | add_theme_support('custom-background', apply_filters('strip_custom_background_args', array( |
@@ -126,22 +126,22 @@ discard block |
||
| 126 | 126 | * This theme styles the visual editor to resemble the theme style, |
| 127 | 127 | * specifically font, colors, icons, and column width. |
| 128 | 128 | */ |
| 129 | - add_editor_style( array( '/assets/css/editor-style.css', '/assets/fonts/fenix.css' ) ); |
|
| 129 | + add_editor_style(array('/assets/css/editor-style.css', '/assets/fonts/fenix.css')); |
|
| 130 | 130 | |
| 131 | 131 | // Indicate widget sidebars can use selective refresh in the Customizer. |
| 132 | 132 | // See https://make.wordpress.org/core/2016/03/22/implementing-selective-refresh-support-for-widgets/ for detail. |
| 133 | - add_theme_support( 'customize-selective-refresh-widgets' ); |
|
| 133 | + add_theme_support('customize-selective-refresh-widgets'); |
|
| 134 | 134 | endif; // strip_setup. |
| 135 | -add_action( 'after_setup_theme', 'strip_setup' ); |
|
| 135 | +add_action('after_setup_theme', 'strip_setup'); |
|
| 136 | 136 | |
| 137 | 137 | /** |
| 138 | 138 | * Register widgetized area and update sidebar with default widgets |
| 139 | 139 | */ |
| 140 | 140 | function strip_widgets_init() { |
| 141 | 141 | register_sidebar(array( |
| 142 | - 'name' => __( 'Main Sidebar', 'strip' ), |
|
| 142 | + 'name' => __('Main Sidebar', 'strip'), |
|
| 143 | 143 | 'id' => 'sidebar', |
| 144 | - 'description' => __( 'The main body widget area', 'strip' ), |
|
| 144 | + 'description' => __('The main body widget area', 'strip'), |
|
| 145 | 145 | 'before_widget' => '<aside id="%1$s" class="widget %2$s">', |
| 146 | 146 | 'after_widget' => '</aside>', |
| 147 | 147 | 'before_title' => '<h2 class="widget-title">', |
@@ -149,10 +149,10 @@ discard block |
||
| 149 | 149 | )); |
| 150 | 150 | |
| 151 | 151 | // First footer widget area, located in the footer. Empty by default. |
| 152 | - register_sidebar( array( |
|
| 153 | - 'name' => __( 'First Footer Widget', 'strip' ), |
|
| 152 | + register_sidebar(array( |
|
| 153 | + 'name' => __('First Footer Widget', 'strip'), |
|
| 154 | 154 | 'id' => 'first-footer-widget', |
| 155 | - 'description' => __( 'The first footer widget', 'strip' ), |
|
| 155 | + 'description' => __('The first footer widget', 'strip'), |
|
| 156 | 156 | 'before_widget' => '<aside id="%1$s" class="widget %2$s">', |
| 157 | 157 | 'after_widget' => '</aside>', |
| 158 | 158 | 'before_title' => '<h3 class="widget-title">', |
@@ -161,9 +161,9 @@ discard block |
||
| 161 | 161 | |
| 162 | 162 | // Second Footer Widget Area, located in the footer. Empty by default. |
| 163 | 163 | register_sidebar(array( |
| 164 | - 'name' => __( 'Second Footer Widget', 'strip' ), |
|
| 164 | + 'name' => __('Second Footer Widget', 'strip'), |
|
| 165 | 165 | 'id' => 'second-footer-widget', |
| 166 | - 'description' => __( 'The second footer widget', 'strip' ), |
|
| 166 | + 'description' => __('The second footer widget', 'strip'), |
|
| 167 | 167 | 'before_widget' => '<aside id="%1$s" class="widget %2$s">', |
| 168 | 168 | 'after_widget' => '</aside>', |
| 169 | 169 | 'before_title' => '<h3 class="widget-title">', |
@@ -172,9 +172,9 @@ discard block |
||
| 172 | 172 | |
| 173 | 173 | // Third Footer Widget Area, located in the footer. Empty by default. |
| 174 | 174 | register_sidebar(array( |
| 175 | - 'name' => __( 'Third Footer Widget', 'strip' ), |
|
| 175 | + 'name' => __('Third Footer Widget', 'strip'), |
|
| 176 | 176 | 'id' => 'third-footer-widget', |
| 177 | - 'description' => __( 'The third footer widget', 'strip' ), |
|
| 177 | + 'description' => __('The third footer widget', 'strip'), |
|
| 178 | 178 | 'before_widget' => '<aside id="%1$s" class="widget %2$s">', |
| 179 | 179 | 'after_widget' => '</aside>', |
| 180 | 180 | 'before_title' => '<h3 class="widget-title">', |
@@ -183,9 +183,9 @@ discard block |
||
| 183 | 183 | |
| 184 | 184 | // Fourth Footer Widget Area, located in the footer. Empty by default. |
| 185 | 185 | register_sidebar(array( |
| 186 | - 'name' => __( 'Fourth Footer Widget', 'strip' ), |
|
| 186 | + 'name' => __('Fourth Footer Widget', 'strip'), |
|
| 187 | 187 | 'id' => 'fourth-footer-widget', |
| 188 | - 'description' => __( 'The fourth footer widget', 'strip' ), |
|
| 188 | + 'description' => __('The fourth footer widget', 'strip'), |
|
| 189 | 189 | 'before_widget' => '<aside id="%1$s" class="widget %2$s">', |
| 190 | 190 | 'after_widget' => '</aside>', |
| 191 | 191 | 'before_title' => '<h3 class="widget-title">', |
@@ -193,7 +193,7 @@ discard block |
||
| 193 | 193 | )); |
| 194 | 194 | |
| 195 | 195 | } |
| 196 | -add_action( 'widgets_init', 'strip_widgets_init' ); |
|
| 196 | +add_action('widgets_init', 'strip_widgets_init'); |
|
| 197 | 197 | |
| 198 | 198 | /** |
| 199 | 199 | * Handles JavaScript detection. |
@@ -205,47 +205,47 @@ discard block |
||
| 205 | 205 | function strip_javascript_detection() { |
| 206 | 206 | echo "<script>(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);</script>\n"; |
| 207 | 207 | } |
| 208 | -add_action( 'wp_head', 'strip_javascript_detection', 0 ); |
|
| 208 | +add_action('wp_head', 'strip_javascript_detection', 0); |
|
| 209 | 209 | |
| 210 | 210 | /** |
| 211 | 211 | * Enqueue_styles for custom fonts. |
| 212 | 212 | */ |
| 213 | 213 | function strip_scripts() { |
| 214 | 214 | // add custom font here if any. |
| 215 | - wp_enqueue_style( 'fenix', get_template_directory_uri() . '/assets/fonts/fenix.css', array(), null ); |
|
| 215 | + wp_enqueue_style('fenix', get_template_directory_uri() . '/assets/fonts/fenix.css', array(), null); |
|
| 216 | 216 | |
| 217 | - wp_enqueue_style( 'inconsolata', get_template_directory_uri() . '/assets/fonts/inconsolata.css', array(), null ); |
|
| 217 | + wp_enqueue_style('inconsolata', get_template_directory_uri() . '/assets/fonts/inconsolata.css', array(), null); |
|
| 218 | 218 | |
| 219 | 219 | // Theme stylesheet. |
| 220 | - wp_enqueue_style( 'strip-style', get_stylesheet_uri() ); |
|
| 220 | + wp_enqueue_style('strip-style', get_stylesheet_uri()); |
|
| 221 | 221 | |
| 222 | 222 | // Load the Internet Explorer specific stylesheet. Conditional stylesheet — tested and works with IE9 on Windows7. |
| 223 | - wp_enqueue_style( 'strip-ie', get_template_directory_uri() . 'assets/css/ie.css', array( 'strip-style' ), '20160305' ); |
|
| 224 | - wp_style_add_data( 'strip-ie', 'conditional', 'lt IE 10' ); |
|
| 223 | + wp_enqueue_style('strip-ie', get_template_directory_uri() . 'assets/css/ie.css', array('strip-style'), '20160305'); |
|
| 224 | + wp_style_add_data('strip-ie', 'conditional', 'lt IE 10'); |
|
| 225 | 225 | |
| 226 | - if ( has_nav_menu( 'primary' ) ) { |
|
| 227 | - wp_enqueue_script( 'strip-navigation', get_template_directory_uri() . '/assets/js/min/navigation-min.js', array(), '1.0', true ); |
|
| 226 | + if (has_nav_menu('primary')) { |
|
| 227 | + wp_enqueue_script('strip-navigation', get_template_directory_uri() . '/assets/js/min/navigation-min.js', array(), '1.0', true); |
|
| 228 | 228 | } |
| 229 | 229 | |
| 230 | 230 | // Load the html5 shiv. |
| 231 | - wp_enqueue_script( 'strip-html5', get_template_directory_uri() . '/assets/js/min/html5-min.js', array(), '3.7.3' ); |
|
| 232 | - wp_script_add_data( 'strip-html5', 'conditional', 'lt IE 9' ); |
|
| 231 | + wp_enqueue_script('strip-html5', get_template_directory_uri() . '/assets/js/min/html5-min.js', array(), '3.7.3'); |
|
| 232 | + wp_script_add_data('strip-html5', 'conditional', 'lt IE 9'); |
|
| 233 | 233 | |
| 234 | - wp_enqueue_script( 'strip-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/min/skip-link-focus-fix-min.js', array(), '1.0', true ); |
|
| 234 | + wp_enqueue_script('strip-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/min/skip-link-focus-fix-min.js', array(), '1.0', true); |
|
| 235 | 235 | |
| 236 | 236 | // toggle comments js. |
| 237 | - wp_enqueue_script( 'strip-toggle-comments', get_template_directory_uri() . '/assets/js/min/toggle-comments-min.js', array( 'jquery' ), '1.2', true ); |
|
| 237 | + wp_enqueue_script('strip-toggle-comments', get_template_directory_uri() . '/assets/js/min/toggle-comments-min.js', array('jquery'), '1.2', true); |
|
| 238 | 238 | |
| 239 | - if ( is_single() && comments_open() && get_option( 'thread_comments' ) ) { |
|
| 240 | - wp_enqueue_script( 'comment-reply' ); |
|
| 239 | + if (is_single() && comments_open() && get_option('thread_comments')) { |
|
| 240 | + wp_enqueue_script('comment-reply'); |
|
| 241 | 241 | |
| 242 | - if ( is_single() && wp_attachment_is_image() ) { |
|
| 243 | - wp_enqueue_script( 'strip-keyboard-image-navigation', get_template_directory_uri() . '/assets/js/min/keyboard-image-navigation-min.js', array( 'jquery' ), '20160412', true ); |
|
| 242 | + if (is_single() && wp_attachment_is_image()) { |
|
| 243 | + wp_enqueue_script('strip-keyboard-image-navigation', get_template_directory_uri() . '/assets/js/min/keyboard-image-navigation-min.js', array('jquery'), '20160412', true); |
|
| 244 | 244 | } |
| 245 | 245 | } |
| 246 | 246 | } |
| 247 | 247 | |
| 248 | -add_action( 'wp_enqueue_scripts', 'strip_scripts' ); |
|
| 248 | +add_action('wp_enqueue_scripts', 'strip_scripts'); |
|
| 249 | 249 | |
| 250 | 250 | /** |
| 251 | 251 | * Implement the Custom Header feature. |
@@ -272,15 +272,15 @@ discard block |
||
| 272 | 272 | */ |
| 273 | 273 | require get_template_directory() . '/inc/jetpack.php'; |
| 274 | 274 | |
| 275 | -add_action( 'wp_enqueue_scripts', 'enqueue_royal_sliders' ); |
|
| 275 | +add_action('wp_enqueue_scripts', 'enqueue_royal_sliders'); |
|
| 276 | 276 | /** |
| 277 | 277 | * Register RoyalSLider |
| 278 | 278 | */ |
| 279 | 279 | function enqueue_royal_sliders() { |
| 280 | 280 | global $posts; |
| 281 | 281 | |
| 282 | - if ( function_exists( 'register_new_royalslider_files' ) ) { |
|
| 283 | - register_new_royalslider_files( 1 ); // place register_new_royalslider_files function here. |
|
| 282 | + if (function_exists('register_new_royalslider_files')) { |
|
| 283 | + register_new_royalslider_files(1); // place register_new_royalslider_files function here. |
|
| 284 | 284 | } |
| 285 | 285 | } |
| 286 | 286 | |
@@ -291,57 +291,57 @@ discard block |
||
| 291 | 291 | * @link https://css-tricks.com/snippets/wordpress/get-the-first-image-from-a-post/ |
| 292 | 292 | * see https://gist.github.com/SilentComics/0a7ea47942eb759dbb48eac2b7be1bbc |
| 293 | 293 | */ |
| 294 | -function get_first_image( $size = 'thumbnail' ) { |
|
| 294 | +function get_first_image($size = 'thumbnail') { |
|
| 295 | 295 | global $post, $slider; |
| 296 | 296 | $first_img = ''; |
| 297 | - preg_match_all( '/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', do_shortcode( $post->post_content, 'gallery' ), $matches ); |
|
| 298 | - $first_img = isset( $matches[1][0] ) ? $matches[1][0] : null; |
|
| 297 | + preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', do_shortcode($post->post_content, 'gallery'), $matches); |
|
| 298 | + $first_img = isset($matches[1][0]) ? $matches[1][0] : null; |
|
| 299 | 299 | |
| 300 | - if ( empty( $first_img ) ) { |
|
| 300 | + if (empty($first_img)) { |
|
| 301 | 301 | return get_template_directory_uri() . '/assets/images/empty.png'; // path to default image. |
| 302 | 302 | } |
| 303 | 303 | |
| 304 | - if ( '[' !== $slider[0] ) { |
|
| 304 | + if ('[' !== $slider[0]) { |
|
| 305 | 305 | return $first_img; |
| 306 | - foreach ( $first_img as $first_img => $size ) { |
|
| 307 | - return $size( 'strip-medium' ); |
|
| 306 | + foreach ($first_img as $first_img => $size) { |
|
| 307 | + return $size('strip-medium'); |
|
| 308 | 308 | } // because RoyalSLider resizes images on its own we let it do so. |
| 309 | 309 | } |
| 310 | 310 | |
| 311 | 311 | // Now we have the $first_img but we want the thumbnail of that image. |
| 312 | - $explode = explode( '.', $first_img ); |
|
| 313 | - $count = count( $explode ); |
|
| 312 | + $explode = explode('.', $first_img); |
|
| 313 | + $count = count($explode); |
|
| 314 | 314 | $size = '-624x312'; // Our panel ratio (2:1) 312x156 for lighther page, 624x312 for retina; use add_image_size() and Force Regenerate Thumbnails plugin when changing sizes. |
| 315 | - $explode[ $count -2 ] = $explode[ $count -2 ] . '' . $size; |
|
| 316 | - $thumb_img = implode( '.', $explode ); |
|
| 315 | + $explode[$count - 2] = $explode[$count - 2] . '' . $size; |
|
| 316 | + $thumb_img = implode('.', $explode); |
|
| 317 | 317 | return $thumb_img; |
| 318 | 318 | } |
| 319 | 319 | |
| 320 | - add_filter( 'get_first_image', 'thumbnail' ); |
|
| 320 | + add_filter('get_first_image', 'thumbnail'); |
|
| 321 | 321 | /** |
| 322 | 322 | * Register Custom Post Type for comics |
| 323 | 323 | */ |
| 324 | 324 | function comic_post_type() { |
| 325 | 325 | |
| 326 | 326 | $labels = array( |
| 327 | - 'name' => _x( 'Comics', 'Post Type General Name', 'strip' ), |
|
| 328 | - 'singular_name' => _x( 'Comic', 'Post Type Singular Name', 'strip' ), |
|
| 329 | - 'menu_name' => _x( 'Comics', 'admin menu', 'strip' ), |
|
| 330 | - 'name_admin_bar' => _x( 'Comic', 'add new on admin bar', 'strip' ), |
|
| 331 | - 'parent_item_colon' => __( 'Parent Comic:', 'strip' ), |
|
| 332 | - 'all_items' => __( 'All Comics', 'strip' ), |
|
| 333 | - 'add_new_item' => __( 'Add New Comic', 'strip' ), |
|
| 334 | - 'add_new' => __( 'Add New Comic', 'strip' ), |
|
| 335 | - 'new_item' => __( 'New Comic', 'strip' ), |
|
| 336 | - 'edit_item' => __( 'Edit Comic', 'strip' ), |
|
| 337 | - 'update_item' => __( 'Update Comic', 'strip' ), |
|
| 338 | - 'view_item' => __( 'View Comic', 'strip' ), |
|
| 339 | - 'search_items' => __( 'Search Item', 'strip' ), |
|
| 340 | - 'not_found' => __( 'No Comics found', 'strip' ), |
|
| 341 | - 'not_found_in_trash' => __( 'No Comics found in Trash', 'strip' ), |
|
| 342 | - 'items_list' => __( 'Comics list', 'strip' ), |
|
| 343 | - 'items_list_navigation' => __( 'Comics list navigation', 'strip' ), |
|
| 344 | - 'filter_items_list' => __( 'Filter Comics list', 'strip' ), |
|
| 327 | + 'name' => _x('Comics', 'Post Type General Name', 'strip'), |
|
| 328 | + 'singular_name' => _x('Comic', 'Post Type Singular Name', 'strip'), |
|
| 329 | + 'menu_name' => _x('Comics', 'admin menu', 'strip'), |
|
| 330 | + 'name_admin_bar' => _x('Comic', 'add new on admin bar', 'strip'), |
|
| 331 | + 'parent_item_colon' => __('Parent Comic:', 'strip'), |
|
| 332 | + 'all_items' => __('All Comics', 'strip'), |
|
| 333 | + 'add_new_item' => __('Add New Comic', 'strip'), |
|
| 334 | + 'add_new' => __('Add New Comic', 'strip'), |
|
| 335 | + 'new_item' => __('New Comic', 'strip'), |
|
| 336 | + 'edit_item' => __('Edit Comic', 'strip'), |
|
| 337 | + 'update_item' => __('Update Comic', 'strip'), |
|
| 338 | + 'view_item' => __('View Comic', 'strip'), |
|
| 339 | + 'search_items' => __('Search Item', 'strip'), |
|
| 340 | + 'not_found' => __('No Comics found', 'strip'), |
|
| 341 | + 'not_found_in_trash' => __('No Comics found in Trash', 'strip'), |
|
| 342 | + 'items_list' => __('Comics list', 'strip'), |
|
| 343 | + 'items_list_navigation' => __('Comics list navigation', 'strip'), |
|
| 344 | + 'filter_items_list' => __('Filter Comics list', 'strip'), |
|
| 345 | 345 | ); |
| 346 | 346 | |
| 347 | 347 | $supports = array( |
@@ -358,11 +358,11 @@ discard block |
||
| 358 | 358 | ); |
| 359 | 359 | |
| 360 | 360 | $args = array( |
| 361 | - 'label' => __( 'Comic', 'strip' ), |
|
| 362 | - 'description' => __( 'Publish Comics and Webcomics', 'strip' ), |
|
| 361 | + 'label' => __('Comic', 'strip'), |
|
| 362 | + 'description' => __('Publish Comics and Webcomics', 'strip'), |
|
| 363 | 363 | 'labels' => $labels, |
| 364 | 364 | 'supports' => $supports, |
| 365 | - 'taxonomies' => array( 'story', 'story_term', 'draft' ), |
|
| 365 | + 'taxonomies' => array('story', 'story_term', 'draft'), |
|
| 366 | 366 | 'hierarchical' => true, |
| 367 | 367 | 'public' => true, |
| 368 | 368 | 'show_ui' => true, |
@@ -375,40 +375,40 @@ discard block |
||
| 375 | 375 | 'has_archive' => true, |
| 376 | 376 | 'feeds' => true, |
| 377 | 377 | 'exclude_from_search' => false, |
| 378 | - 'rewrite' => array( 'slug' => 'stories', 'with_front' => true ), |
|
| 378 | + 'rewrite' => array('slug' => 'stories', 'with_front' => true), |
|
| 379 | 379 | 'publicly_queryable' => true, |
| 380 | 380 | 'capability_type' => 'post', |
| 381 | 381 | ); |
| 382 | - register_post_type( 'comic', $args ); |
|
| 382 | + register_post_type('comic', $args); |
|
| 383 | 383 | } |
| 384 | 384 | |
| 385 | 385 | // Hook into the 'init' action. |
| 386 | -add_action( 'init', 'comic_post_type', 0 ); // End of register_cpt_comic(). |
|
| 386 | +add_action('init', 'comic_post_type', 0); // End of register_cpt_comic(). |
|
| 387 | 387 | |
| 388 | 388 | /** |
| 389 | 389 | * Register Custom Taxonomy 'story' |
| 390 | 390 | */ |
| 391 | 391 | function comic_story_taxonomy() { |
| 392 | 392 | $labels = array( |
| 393 | - 'name' => _x( 'Comic Story', 'Taxonomy General Name', 'strip' ), |
|
| 394 | - 'singular_name' => _x( 'Comic Story', 'Taxonomy Singular Name', 'strip' ), |
|
| 395 | - 'menu_name' => __( 'Comic Stories', 'strip' ), |
|
| 396 | - 'all_items' => __( 'All Comic Stories', 'strip' ), |
|
| 397 | - 'parent_item' => __( 'Parent Story', 'strip' ), |
|
| 398 | - 'parent_item_colon' => __( 'Parent Story:', 'strip' ), |
|
| 399 | - 'new_item_name' => __( 'New Comic Story', 'strip' ), |
|
| 400 | - 'add_new_item' => __( 'Add New Story', 'strip' ), |
|
| 401 | - 'edit_item' => __( 'Edit Story', 'strip' ), |
|
| 402 | - 'update_item' => __( 'Update Story', 'strip' ), |
|
| 403 | - 'view_item' => __( 'View Item', 'strip' ), |
|
| 404 | - 'separate_items_with_commas' => __( 'Separate stories with commas', 'strip' ), |
|
| 405 | - 'add_or_remove_items' => __( 'Add or Remove Stories', 'strip' ), |
|
| 406 | - 'choose_from_most_used' => __( 'Choose from the most used stories', 'strip' ), |
|
| 407 | - 'popular_items' => __( 'Popular comic stories', 'strip' ), |
|
| 408 | - 'search_items' => __( 'Search Stories', 'strip' ), |
|
| 409 | - 'not_found' => __( 'No comic Stories found', 'strip' ), |
|
| 410 | - 'items_list' => __( 'Comic Stories list', 'strip' ), |
|
| 411 | - 'items_list_navigation' => __( 'Comic Stories list navigation', 'strip' ), |
|
| 393 | + 'name' => _x('Comic Story', 'Taxonomy General Name', 'strip'), |
|
| 394 | + 'singular_name' => _x('Comic Story', 'Taxonomy Singular Name', 'strip'), |
|
| 395 | + 'menu_name' => __('Comic Stories', 'strip'), |
|
| 396 | + 'all_items' => __('All Comic Stories', 'strip'), |
|
| 397 | + 'parent_item' => __('Parent Story', 'strip'), |
|
| 398 | + 'parent_item_colon' => __('Parent Story:', 'strip'), |
|
| 399 | + 'new_item_name' => __('New Comic Story', 'strip'), |
|
| 400 | + 'add_new_item' => __('Add New Story', 'strip'), |
|
| 401 | + 'edit_item' => __('Edit Story', 'strip'), |
|
| 402 | + 'update_item' => __('Update Story', 'strip'), |
|
| 403 | + 'view_item' => __('View Item', 'strip'), |
|
| 404 | + 'separate_items_with_commas' => __('Separate stories with commas', 'strip'), |
|
| 405 | + 'add_or_remove_items' => __('Add or Remove Stories', 'strip'), |
|
| 406 | + 'choose_from_most_used' => __('Choose from the most used stories', 'strip'), |
|
| 407 | + 'popular_items' => __('Popular comic stories', 'strip'), |
|
| 408 | + 'search_items' => __('Search Stories', 'strip'), |
|
| 409 | + 'not_found' => __('No comic Stories found', 'strip'), |
|
| 410 | + 'items_list' => __('Comic Stories list', 'strip'), |
|
| 411 | + 'items_list_navigation' => __('Comic Stories list navigation', 'strip'), |
|
| 412 | 412 | ); |
| 413 | 413 | $args = array( |
| 414 | 414 | 'labels' => $labels, |
@@ -420,14 +420,14 @@ discard block |
||
| 420 | 420 | 'show_in_nav_menus' => true, |
| 421 | 421 | 'show_tagcloud' => true, |
| 422 | 422 | 'query_var' => true, |
| 423 | - 'rewrite' => array( 'slug' => 'story' ), |
|
| 423 | + 'rewrite' => array('slug' => 'story'), |
|
| 424 | 424 | ); |
| 425 | - register_taxonomy( 'story', array( 'comic' ), $args ); |
|
| 426 | - register_taxonomy_for_object_type( 'story', 'comic' ); |
|
| 425 | + register_taxonomy('story', array('comic'), $args); |
|
| 426 | + register_taxonomy_for_object_type('story', 'comic'); |
|
| 427 | 427 | } |
| 428 | 428 | |
| 429 | 429 | // Hook into the 'init' action. |
| 430 | -add_action( 'init', 'comic_story_taxonomy', 0 ); |
|
| 430 | +add_action('init', 'comic_story_taxonomy', 0); |
|
| 431 | 431 | |
| 432 | 432 | /** |
| 433 | 433 | * Function strip rewrite rules. |
@@ -436,31 +436,31 @@ discard block |
||
| 436 | 436 | flush_rewrite_rules(); |
| 437 | 437 | } |
| 438 | 438 | /* Flush rewrite rules for custom post types. */ |
| 439 | -add_action( 'after_switch_theme', 'strip_rewrite_rules' ); |
|
| 439 | +add_action('after_switch_theme', 'strip_rewrite_rules'); |
|
| 440 | 440 | |
| 441 | 441 | // Add Print taxonomy, NOT hierarchical (like tags) |
| 442 | 442 | // Register Custom Taxonomy. |
| 443 | 443 | $labels = array( |
| 444 | - 'name' => _x( 'Prints', 'Taxonomy General Name', 'strip' ), |
|
| 445 | - 'singular_name' => _x( 'Print', 'Taxonomy Singular Name', 'strip' ), |
|
| 446 | - 'menu_name' => __( 'Print', 'strip' ), |
|
| 447 | - 'all_items' => __( 'All Prints', 'strip' ), |
|
| 448 | - 'parent_item' => __( 'Parent Print', 'strip' ), |
|
| 449 | - 'parent_item_colon' => __( 'Parent Print:', 'strip' ), |
|
| 450 | - 'new_item_name' => __( 'New Print Name', 'strip' ), |
|
| 451 | - 'add_new_item' => __( 'Add New Print', 'strip' ), |
|
| 452 | - 'edit_item' => __( 'Edit Print', 'strip' ), |
|
| 453 | - 'update_item' => __( 'Update Pring', 'strip' ), |
|
| 454 | - 'view_item' => __( 'View Print', 'strip' ), |
|
| 455 | - 'separate_items_with_commas' => __( 'Separate prints with commas', 'strip' ), |
|
| 456 | - 'add_or_remove_items' => __( 'Add or remove prints', 'strip' ), |
|
| 457 | - 'choose_from_most_used' => __( 'Choose from the most used', 'strip' ), |
|
| 458 | - 'popular_items' => __( 'Popular Prints', 'strip' ), |
|
| 459 | - 'search_items' => __( 'Search Prints', 'strip' ), |
|
| 460 | - 'not_found' => __( 'Not Found', 'strip' ), |
|
| 461 | - 'no_terms' => __( 'No prints', 'strip' ), |
|
| 462 | - 'items_list' => __( 'Prints list', 'strip' ), |
|
| 463 | - 'items_list_navigation' => __( 'Prints list navigation', 'strip' ), |
|
| 444 | + 'name' => _x('Prints', 'Taxonomy General Name', 'strip'), |
|
| 445 | + 'singular_name' => _x('Print', 'Taxonomy Singular Name', 'strip'), |
|
| 446 | + 'menu_name' => __('Print', 'strip'), |
|
| 447 | + 'all_items' => __('All Prints', 'strip'), |
|
| 448 | + 'parent_item' => __('Parent Print', 'strip'), |
|
| 449 | + 'parent_item_colon' => __('Parent Print:', 'strip'), |
|
| 450 | + 'new_item_name' => __('New Print Name', 'strip'), |
|
| 451 | + 'add_new_item' => __('Add New Print', 'strip'), |
|
| 452 | + 'edit_item' => __('Edit Print', 'strip'), |
|
| 453 | + 'update_item' => __('Update Pring', 'strip'), |
|
| 454 | + 'view_item' => __('View Print', 'strip'), |
|
| 455 | + 'separate_items_with_commas' => __('Separate prints with commas', 'strip'), |
|
| 456 | + 'add_or_remove_items' => __('Add or remove prints', 'strip'), |
|
| 457 | + 'choose_from_most_used' => __('Choose from the most used', 'strip'), |
|
| 458 | + 'popular_items' => __('Popular Prints', 'strip'), |
|
| 459 | + 'search_items' => __('Search Prints', 'strip'), |
|
| 460 | + 'not_found' => __('Not Found', 'strip'), |
|
| 461 | + 'no_terms' => __('No prints', 'strip'), |
|
| 462 | + 'items_list' => __('Prints list', 'strip'), |
|
| 463 | + 'items_list_navigation' => __('Prints list navigation', 'strip'), |
|
| 464 | 464 | ); |
| 465 | 465 | |
| 466 | 466 | $args = array( |
@@ -472,21 +472,21 @@ discard block |
||
| 472 | 472 | 'show_in_nav_menus' => true, |
| 473 | 473 | 'show_tagcloud' => true, |
| 474 | 474 | ); |
| 475 | - register_taxonomy( 'print', array( 'comic' ), $args ); |
|
| 475 | + register_taxonomy('print', array('comic'), $args); |
|
| 476 | 476 | |
| 477 | 477 | /* |
| 478 | 478 | * WooCommerce Hooks |
| 479 | 479 | * Layout |
| 480 | 480 | */ |
| 481 | - remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 ); |
|
| 482 | - remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 ); |
|
| 483 | - remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 ); |
|
| 484 | - remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 ); |
|
| 485 | - remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); |
|
| 486 | - remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 ); |
|
| 481 | + remove_action('woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0); |
|
| 482 | + remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10); |
|
| 483 | + remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10); |
|
| 484 | + remove_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 10); |
|
| 485 | + remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20); |
|
| 486 | + remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30); |
|
| 487 | 487 | |
| 488 | - add_action( 'woocommerce_before_main_content', 'strip_wrapper_start', 10 ); |
|
| 489 | - add_action( 'woocommerce_after_main_content', 'strip_wrapper_end', 10 ); |
|
| 488 | + add_action('woocommerce_before_main_content', 'strip_wrapper_start', 10); |
|
| 489 | + add_action('woocommerce_after_main_content', 'strip_wrapper_end', 10); |
|
| 490 | 490 | |
| 491 | 491 | /** |
| 492 | 492 | * WooCommerce wrapper |
@@ -502,13 +502,13 @@ discard block |
||
| 502 | 502 | echo '</section>'; |
| 503 | 503 | } |
| 504 | 504 | |
| 505 | - add_action( 'after_setup_theme', 'woocommerce_support' ); |
|
| 505 | + add_action('after_setup_theme', 'woocommerce_support'); |
|
| 506 | 506 | /** |
| 507 | 507 | * Add WooCommerce support |
| 508 | 508 | * https://docs.woothemes.com/document/third-party-custom-theme-compatibility/* |
| 509 | 509 | */ |
| 510 | 510 | function woocommerce_support() { |
| 511 | - add_theme_support( 'woocommerce' ); |
|
| 511 | + add_theme_support('woocommerce'); |
|
| 512 | 512 | } |
| 513 | 513 | |
| 514 | 514 | /** |
@@ -516,13 +516,13 @@ discard block |
||
| 516 | 516 | */ |
| 517 | 517 | function wp_enqueue_woocommerce_style() { |
| 518 | 518 | |
| 519 | - wp_register_style( 'strip-woocommerce', get_template_directory_uri() . '/assets/css/woocommerce-min.css' ); |
|
| 520 | - if ( class_exists( 'woocommerce' ) ) { |
|
| 521 | - wp_enqueue_style( 'strip-woocommerce' ); |
|
| 519 | + wp_register_style('strip-woocommerce', get_template_directory_uri() . '/assets/css/woocommerce-min.css'); |
|
| 520 | + if (class_exists('woocommerce')) { |
|
| 521 | + wp_enqueue_style('strip-woocommerce'); |
|
| 522 | 522 | } |
| 523 | 523 | } |
| 524 | 524 | |
| 525 | - add_action( 'wp_enqueue_scripts', 'wp_enqueue_woocommerce_style' ); |
|
| 525 | + add_action('wp_enqueue_scripts', 'wp_enqueue_woocommerce_style'); |
|
| 526 | 526 | |
| 527 | 527 | /** |
| 528 | 528 | * Optimize WooCommerce Scripts |
@@ -533,53 +533,53 @@ discard block |
||
| 533 | 533 | * @link https://gist.github.com/DevinWalker/7621777 |
| 534 | 534 | * @link http://dessky.com/blog/disable-woocommerce-scripts-and-styles/ |
| 535 | 535 | */ |
| 536 | - add_action( 'wp_enqueue_scripts', 'strip_manage_woocommerce_styles', 99 ); |
|
| 536 | + add_action('wp_enqueue_scripts', 'strip_manage_woocommerce_styles', 99); |
|
| 537 | 537 | |
| 538 | 538 | /** |
| 539 | 539 | * Remove some WooCommerce queries. |
| 540 | 540 | */ |
| 541 | 541 | function strip_manage_woocommerce_styles() { |
| 542 | 542 | // remove generator meta tag. |
| 543 | - remove_action( 'wp_head', array( 'woocommerce', 'generator' ) ); // this line when used with $GLOBALS['woocommerce'] prompts an error when Woo is deactivated though. |
|
| 543 | + remove_action('wp_head', array('woocommerce', 'generator')); // this line when used with $GLOBALS['woocommerce'] prompts an error when Woo is deactivated though. |
|
| 544 | 544 | // first check that woo exists to prevent fatal errors. |
| 545 | - if ( function_exists( 'strip_is_woocommerce_activated' ) ) { |
|
| 545 | + if (function_exists('strip_is_woocommerce_activated')) { |
|
| 546 | 546 | // dequeue scripts and styles, unless we're in the store. |
| 547 | - if ( ! is_woocommerce() && ! is_cart() && ! is_checkout() ) { |
|
| 548 | - wp_dequeue_style( 'woocommerce_frontend_styles' ); |
|
| 549 | - wp_dequeue_style( 'woocommerce-general' ); |
|
| 550 | - wp_dequeue_style( 'woocommerce-layout' ); |
|
| 551 | - wp_dequeue_style( 'woocommerce-smallscreen' ); |
|
| 552 | - wp_dequeue_style( 'woocommerce_fancybox_styles' ); |
|
| 553 | - wp_dequeue_style( 'woocommerce_chosen_styles' ); |
|
| 554 | - wp_dequeue_style( 'woocommerce_prettyPhoto_css' ); |
|
| 555 | - wp_dequeue_style( 'select2' ); |
|
| 556 | - wp_dequeue_style( 'strip-woocommerce' ); // the theme's CSS overwrite. |
|
| 557 | - wp_dequeue_script( 'wc-add-payment-method' ); |
|
| 558 | - wp_dequeue_script( 'wc-lost-password' ); |
|
| 559 | - wp_dequeue_script( 'wc_price_slider' ); |
|
| 560 | - wp_dequeue_script( 'wc-single-product' ); |
|
| 561 | - wp_dequeue_script( 'wc-add-to-cart' ); |
|
| 562 | - wp_dequeue_script( 'wc-cart-fragments' ); |
|
| 563 | - wp_dequeue_script( 'wc-credit-card-form' ); |
|
| 564 | - wp_dequeue_script( 'wc-checkout' ); |
|
| 565 | - wp_dequeue_script( 'wc-add-to-cart-variation' ); |
|
| 566 | - wp_dequeue_script( 'wc-single-product' ); |
|
| 567 | - wp_dequeue_script( 'wc-cart' ); |
|
| 568 | - wp_dequeue_script( 'wc-chosen' ); |
|
| 569 | - wp_dequeue_script( 'woocommerce' ); |
|
| 570 | - wp_dequeue_script( 'jquery-cookie' ); |
|
| 571 | - wp_dequeue_script( 'prettyPhoto' ); |
|
| 572 | - wp_dequeue_script( 'prettyPhoto-init' ); |
|
| 573 | - wp_dequeue_script( 'jquery-blockui' ); |
|
| 574 | - wp_dequeue_script( 'jquery-placeholder' ); |
|
| 575 | - wp_dequeue_script( 'jquery-payment' ); |
|
| 576 | - wp_dequeue_script( 'fancybox' ); |
|
| 577 | - wp_dequeue_script( 'jqueryui' ); |
|
| 547 | + if ( ! is_woocommerce() && ! is_cart() && ! is_checkout()) { |
|
| 548 | + wp_dequeue_style('woocommerce_frontend_styles'); |
|
| 549 | + wp_dequeue_style('woocommerce-general'); |
|
| 550 | + wp_dequeue_style('woocommerce-layout'); |
|
| 551 | + wp_dequeue_style('woocommerce-smallscreen'); |
|
| 552 | + wp_dequeue_style('woocommerce_fancybox_styles'); |
|
| 553 | + wp_dequeue_style('woocommerce_chosen_styles'); |
|
| 554 | + wp_dequeue_style('woocommerce_prettyPhoto_css'); |
|
| 555 | + wp_dequeue_style('select2'); |
|
| 556 | + wp_dequeue_style('strip-woocommerce'); // the theme's CSS overwrite. |
|
| 557 | + wp_dequeue_script('wc-add-payment-method'); |
|
| 558 | + wp_dequeue_script('wc-lost-password'); |
|
| 559 | + wp_dequeue_script('wc_price_slider'); |
|
| 560 | + wp_dequeue_script('wc-single-product'); |
|
| 561 | + wp_dequeue_script('wc-add-to-cart'); |
|
| 562 | + wp_dequeue_script('wc-cart-fragments'); |
|
| 563 | + wp_dequeue_script('wc-credit-card-form'); |
|
| 564 | + wp_dequeue_script('wc-checkout'); |
|
| 565 | + wp_dequeue_script('wc-add-to-cart-variation'); |
|
| 566 | + wp_dequeue_script('wc-single-product'); |
|
| 567 | + wp_dequeue_script('wc-cart'); |
|
| 568 | + wp_dequeue_script('wc-chosen'); |
|
| 569 | + wp_dequeue_script('woocommerce'); |
|
| 570 | + wp_dequeue_script('jquery-cookie'); |
|
| 571 | + wp_dequeue_script('prettyPhoto'); |
|
| 572 | + wp_dequeue_script('prettyPhoto-init'); |
|
| 573 | + wp_dequeue_script('jquery-blockui'); |
|
| 574 | + wp_dequeue_script('jquery-placeholder'); |
|
| 575 | + wp_dequeue_script('jquery-payment'); |
|
| 576 | + wp_dequeue_script('fancybox'); |
|
| 577 | + wp_dequeue_script('jqueryui'); |
|
| 578 | 578 | } |
| 579 | 579 | } |
| 580 | 580 | } |
| 581 | 581 | |
| 582 | - add_action( 'pre_get_posts', 'strip_set_posts_per_page' ); |
|
| 582 | + add_action('pre_get_posts', 'strip_set_posts_per_page'); |
|
| 583 | 583 | /** |
| 584 | 584 | * Set posts, WooCommerce products & comics number per archive page |
| 585 | 585 | * Fixes 404 error on pagination due to CTP conflicting with WordPress posts_per_page default |
@@ -587,28 +587,28 @@ discard block |
||
| 587 | 587 | * |
| 588 | 588 | * @param string $query strip_set_posts_per_page. |
| 589 | 589 | */ |
| 590 | - function strip_set_posts_per_page( $query ) { |
|
| 590 | + function strip_set_posts_per_page($query) { |
|
| 591 | 591 | global $wp_the_query; |
| 592 | - if ( ( ! is_admin() ) && ( $query === $wp_the_query ) && ( is_home() ) && ( is_search() ) ) { |
|
| 593 | - $query->set( 'post_type', array( 'post', 'page', 'comic', 'posts_per_page', 12 ) ); |
|
| 592 | + if (( ! is_admin()) && ($query === $wp_the_query) && (is_home()) && (is_search())) { |
|
| 593 | + $query->set('post_type', array('post', 'page', 'comic', 'posts_per_page', 12)); |
|
| 594 | 594 | } |
| 595 | - if ( ( ! is_admin() ) && ( $query === $wp_the_query ) && ( is_post_type_archive( 'product' ) ) && ( taxonomy_exists( 'category' ) ) ) { |
|
| 596 | - $query->set( 'posts_per_page', 4 ); |
|
| 597 | - } elseif ( ( ! is_admin() ) && ( $query === $wp_the_query ) && ( is_archive() ) && ( is_tax( 'story' ) ) ) { |
|
| 598 | - $query->set( 'posts_per_page', 3 ); |
|
| 595 | + if (( ! is_admin()) && ($query === $wp_the_query) && (is_post_type_archive('product')) && (taxonomy_exists('category'))) { |
|
| 596 | + $query->set('posts_per_page', 4); |
|
| 597 | + } elseif (( ! is_admin()) && ($query === $wp_the_query) && (is_archive()) && (is_tax('story'))) { |
|
| 598 | + $query->set('posts_per_page', 3); |
|
| 599 | 599 | } |
| 600 | 600 | return $query; |
| 601 | 601 | } |
| 602 | 602 | |
| 603 | - add_action( 'pre_get_posts', 'add_my_post_types_to_query' ); |
|
| 603 | + add_action('pre_get_posts', 'add_my_post_types_to_query'); |
|
| 604 | 604 | /** |
| 605 | 605 | * Show 'comics' post types on home page. |
| 606 | 606 | * |
| 607 | 607 | * @param string $query add_my_post_types_to_query. |
| 608 | 608 | */ |
| 609 | - function add_my_post_types_to_query( $query ) { |
|
| 610 | - if ( is_home() && $query->is_main_query() ) { |
|
| 611 | - $query->set( 'post_type', array( 'post', 'page', 'comic' ) ); |
|
| 609 | + function add_my_post_types_to_query($query) { |
|
| 610 | + if (is_home() && $query->is_main_query()) { |
|
| 611 | + $query->set('post_type', array('post', 'page', 'comic')); |
|
| 612 | 612 | |
| 613 | 613 | } |
| 614 | 614 | return $query; |
@@ -621,35 +621,35 @@ discard block |
||
| 621 | 621 | * @param string $post_id set_default_object_terms. |
| 622 | 622 | * @param string $post set_default_object_terms. |
| 623 | 623 | */ |
| 624 | - function set_default_object_terms( $post_id, $post ) { |
|
| 625 | - if ( 'publish' === $post->post_status && 'comic' === $post->post_type ) { |
|
| 624 | + function set_default_object_terms($post_id, $post) { |
|
| 625 | + if ('publish' === $post->post_status && 'comic' === $post->post_type) { |
|
| 626 | 626 | $defaults = array( |
| 627 | - 'story' => array( 'draft' ), |
|
| 627 | + 'story' => array('draft'), |
|
| 628 | 628 | ); |
| 629 | - $taxonomies = get_object_taxonomies( $post->post_type ); |
|
| 630 | - foreach ( (array) $taxonomies as $taxonomy ) { |
|
| 631 | - $terms = get_the_terms( $post_id, $taxonomy ); |
|
| 632 | - if ( empty( $terms ) && array_key_exists( $taxonomy, $defaults ) ) { |
|
| 633 | - wp_set_object_terms( $post_id, $defaults[ $taxonomy ], $taxonomy ); |
|
| 629 | + $taxonomies = get_object_taxonomies($post->post_type); |
|
| 630 | + foreach ((array) $taxonomies as $taxonomy) { |
|
| 631 | + $terms = get_the_terms($post_id, $taxonomy); |
|
| 632 | + if (empty($terms) && array_key_exists($taxonomy, $defaults)) { |
|
| 633 | + wp_set_object_terms($post_id, $defaults[$taxonomy], $taxonomy); |
|
| 634 | 634 | } |
| 635 | 635 | } |
| 636 | 636 | } |
| 637 | 637 | } |
| 638 | - add_action( 'save_post', 'set_default_object_terms', 0, 2 ); |
|
| 638 | + add_action('save_post', 'set_default_object_terms', 0, 2); |
|
| 639 | 639 | |
| 640 | 640 | /** |
| 641 | 641 | * Remove jquery migrate $scripts for enhanced performance. |
| 642 | 642 | * |
| 643 | 643 | * @param strings $scripts remove_jquery_migrate. |
| 644 | 644 | */ |
| 645 | - function remove_jquery_migrate( $scripts ) { |
|
| 646 | - if ( is_admin() ) { |
|
| 645 | + function remove_jquery_migrate($scripts) { |
|
| 646 | + if (is_admin()) { |
|
| 647 | 647 | return; |
| 648 | 648 | } |
| 649 | - $scripts->remove( 'jquery' ); |
|
| 650 | - $scripts->add( 'jquery', false, array( 'jquery-core' ), '1.10.2' ); |
|
| 649 | + $scripts->remove('jquery'); |
|
| 650 | + $scripts->add('jquery', false, array('jquery-core'), '1.10.2'); |
|
| 651 | 651 | } |
| 652 | - add_action( 'wp_default_scripts', 'remove_jquery_migrate' ); |
|
| 652 | + add_action('wp_default_scripts', 'remove_jquery_migrate'); |
|
| 653 | 653 | |
| 654 | 654 | /** |
| 655 | 655 | * Remove login errors notices (security) |
@@ -657,4 +657,4 @@ discard block |
||
| 657 | 657 | function no_wordpress_errors() { |
| 658 | 658 | return 'Something is wrong!'; |
| 659 | 659 | } |
| 660 | - add_filter( 'login_errors', 'no_wordpress_errors' ); |
|
| 660 | + add_filter('login_errors', 'no_wordpress_errors'); |
|