@@ -17,38 +17,38 @@ discard block |
||
| 17 | 17 | 'quote' => 'quote', |
| 18 | 18 | 'video' => 'video', |
| 19 | 19 | ); |
| 20 | - $no_thumb_post_formats = apply_filters( 'lsx_no_thumb_post_formats', $no_thumb_post_types ); |
|
| 20 | + $no_thumb_post_formats = apply_filters('lsx_no_thumb_post_formats', $no_thumb_post_types); |
|
| 21 | 21 | |
| 22 | - $has_thumb = has_post_thumbnail() && ! has_post_format( $no_thumb_post_formats ); |
|
| 22 | + $has_thumb = has_post_thumbnail() && ! has_post_format($no_thumb_post_formats); |
|
| 23 | 23 | |
| 24 | - if ( $has_thumb ) { |
|
| 24 | + if ($has_thumb) { |
|
| 25 | 25 | $thumb_class = 'has-thumb'; |
| 26 | 26 | } else { |
| 27 | 27 | $thumb_class = 'no-thumb'; |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | - $blog_layout = apply_filters( 'lsx_blog_layout', 'default' ); |
|
| 30 | + $blog_layout = apply_filters('lsx_blog_layout', 'default'); |
|
| 31 | 31 | |
| 32 | 32 | $image_class = ''; |
| 33 | 33 | |
| 34 | - $thumbnail_id = get_post_thumbnail_id( get_the_ID() ); |
|
| 35 | - $image_arr = wp_get_attachment_image_src( $thumbnail_id, 'lsx-thumbnail-single' ); |
|
| 34 | + $thumbnail_id = get_post_thumbnail_id(get_the_ID()); |
|
| 35 | + $image_arr = wp_get_attachment_image_src($thumbnail_id, 'lsx-thumbnail-single'); |
|
| 36 | 36 | |
| 37 | - if ( is_array( $image_arr ) ) { |
|
| 37 | + if (is_array($image_arr)) { |
|
| 38 | 38 | $image_src = $image_arr[0]; |
| 39 | 39 | } |
| 40 | 40 | ?> |
| 41 | 41 | |
| 42 | -<article id="post-<?php the_ID(); ?>" <?php post_class( array( 'lsx-slot', $thumb_class ) ); ?>> |
|
| 42 | +<article id="post-<?php the_ID(); ?>" <?php post_class(array('lsx-slot', $thumb_class)); ?>> |
|
| 43 | 43 | <?php lsx_entry_top(); ?> |
| 44 | 44 | |
| 45 | 45 | <div class="entry-layout"> |
| 46 | 46 | <div class="entry-layout-content entry-layout-content-<?php echo has_post_thumbnail() ? '67' : '100'; ?>"> |
| 47 | 47 | <header class="entry-header"> |
| 48 | - <?php if ( $has_thumb ) : ?> |
|
| 49 | - <div class="entry-image <?php echo esc_attr( $image_class ); ?>"> |
|
| 48 | + <?php if ($has_thumb) : ?> |
|
| 49 | + <div class="entry-image <?php echo esc_attr($image_class); ?>"> |
|
| 50 | 50 | <a class="thumbnail" href="<?php the_permalink(); ?>"> |
| 51 | - <?php lsx_thumbnail( 'lsx-thumbnail-single' ); ?> |
|
| 51 | + <?php lsx_thumbnail('lsx-thumbnail-single'); ?> |
|
| 52 | 52 | </a> |
| 53 | 53 | </div> |
| 54 | 54 | <?php endif; ?> |
@@ -60,53 +60,53 @@ discard block |
||
| 60 | 60 | <?php |
| 61 | 61 | $format = get_post_format(); |
| 62 | 62 | |
| 63 | - if ( false === $format ) { |
|
| 63 | + if (false === $format) { |
|
| 64 | 64 | $format = 'standard'; |
| 65 | - $show_on_front = get_option( 'show_on_front', 'posts' ); |
|
| 65 | + $show_on_front = get_option('show_on_front', 'posts'); |
|
| 66 | 66 | |
| 67 | - if ( 'page' === $show_on_front ) { |
|
| 68 | - $archive_link = get_permalink( get_option( 'page_for_posts' ) ); |
|
| 67 | + if ('page' === $show_on_front) { |
|
| 68 | + $archive_link = get_permalink(get_option('page_for_posts')); |
|
| 69 | 69 | } else { |
| 70 | 70 | $archive_link = home_url(); |
| 71 | 71 | } |
| 72 | 72 | } else { |
| 73 | - $archive_link = get_post_format_link( $format ); |
|
| 73 | + $archive_link = get_post_format_link($format); |
|
| 74 | 74 | } |
| 75 | 75 | |
| 76 | - $format = lsx_translate_format_to_fontawesome( $format ); |
|
| 76 | + $format = lsx_translate_format_to_fontawesome($format); |
|
| 77 | 77 | ?> |
| 78 | 78 | |
| 79 | 79 | <h1 class="entry-title"> |
| 80 | - <?php if ( has_post_thumbnail() ) : ?> |
|
| 81 | - <a href="<?php echo esc_url( $archive_link ); ?>" class="format-link has-thumb fa fa-<?php echo esc_attr( $format ); ?>"></a> |
|
| 80 | + <?php if (has_post_thumbnail()) : ?> |
|
| 81 | + <a href="<?php echo esc_url($archive_link); ?>" class="format-link has-thumb fa fa-<?php echo esc_attr($format); ?>"></a> |
|
| 82 | 82 | <?php else : ?> |
| 83 | - <a href="<?php echo esc_url( $archive_link ); ?>" class="format-link fa fa-<?php echo esc_attr( $format ); ?>"></a> |
|
| 83 | + <a href="<?php echo esc_url($archive_link); ?>" class="format-link fa fa-<?php echo esc_attr($format); ?>"></a> |
|
| 84 | 84 | <?php endif; ?> |
| 85 | 85 | |
| 86 | - <?php if ( has_post_format( array( 'link' ) ) ) : ?> |
|
| 87 | - <a href="<?php echo esc_url( lsx_get_my_url() ); ?>" rel="bookmark"><?php the_title(); ?> <span class="fa fa-external-link"></span></a> |
|
| 86 | + <?php if (has_post_format(array('link'))) : ?> |
|
| 87 | + <a href="<?php echo esc_url(lsx_get_my_url()); ?>" rel="bookmark"><?php the_title(); ?> <span class="fa fa-external-link"></span></a> |
|
| 88 | 88 | <?php else : ?> |
| 89 | 89 | <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a> |
| 90 | 90 | <?php endif; ?> |
| 91 | 91 | |
| 92 | - <?php if ( is_sticky() ) : ?> |
|
| 93 | - <span class="label label-default label-sticky"><?php esc_html_e( 'Featured', 'lsx' ); ?></span> |
|
| 92 | + <?php if (is_sticky()) : ?> |
|
| 93 | + <span class="label label-default label-sticky"><?php esc_html_e('Featured', 'lsx'); ?></span> |
|
| 94 | 94 | <?php endif; ?> |
| 95 | 95 | </h1> |
| 96 | 96 | </header><!-- .entry-header --> |
| 97 | 97 | |
| 98 | - <?php if ( has_post_format( array( 'quote' ) ) || apply_filters( 'lsx_blog_display_text_on_list', true ) ) : ?> |
|
| 98 | + <?php if (has_post_format(array('quote')) || apply_filters('lsx_blog_display_text_on_list', true)) : ?> |
|
| 99 | 99 | |
| 100 | - <?php if ( lsx_post_format_force_content_on_list() && ! apply_filters( 'lsx_blog_force_content_on_list', false ) ) : ?> |
|
| 100 | + <?php if (lsx_post_format_force_content_on_list() && ! apply_filters('lsx_blog_force_content_on_list', false)) : ?> |
|
| 101 | 101 | |
| 102 | 102 | <div class="entry-summary"> |
| 103 | 103 | <?php the_excerpt(); ?> |
| 104 | - <?php edit_post_link( esc_html__( 'Edit', 'lsx' ), '<p class="edit-link">', '</p>' ); ?> |
|
| 104 | + <?php edit_post_link(esc_html__('Edit', 'lsx'), '<p class="edit-link">', '</p>'); ?> |
|
| 105 | 105 | </div><!-- .entry-summary --> |
| 106 | 106 | |
| 107 | - <?php elseif ( has_post_format( array( 'link' ) ) ) : ?> |
|
| 107 | + <?php elseif (has_post_format(array('link'))) : ?> |
|
| 108 | 108 | |
| 109 | - <?php elseif ( apply_filters( 'lsx_blog_force_content_on_list', false ) ) : ?> |
|
| 109 | + <?php elseif (apply_filters('lsx_blog_force_content_on_list', false)) : ?> |
|
| 110 | 110 | |
| 111 | 111 | <div class="entry-content"> |
| 112 | 112 | <?php the_content(); ?> |
@@ -118,12 +118,12 @@ discard block |
||
| 118 | 118 | <?php |
| 119 | 119 | the_content(); |
| 120 | 120 | |
| 121 | - wp_link_pages( array( |
|
| 121 | + wp_link_pages(array( |
|
| 122 | 122 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
| 123 | 123 | 'after' => '</div></div>', |
| 124 | 124 | 'link_before' => '<span>', |
| 125 | 125 | 'link_after' => '</span>', |
| 126 | - ) ); |
|
| 126 | + )); |
|
| 127 | 127 | ?> |
| 128 | 128 | </div><!-- .entry-content --> |
| 129 | 129 | |
@@ -140,23 +140,23 @@ discard block |
||
| 140 | 140 | |
| 141 | 141 | <?php lsx_content_post_tags(); ?> |
| 142 | 142 | |
| 143 | - <?php if ( comments_open() && ! empty( $comments_number ) ) : ?> |
|
| 143 | + <?php if (comments_open() && ! empty($comments_number)) : ?> |
|
| 144 | 144 | <div class="post-comments"> |
| 145 | 145 | <a href="<?php the_permalink(); ?>#comments"> |
| 146 | 146 | <?php |
| 147 | - if ( '1' === $comments_number ) { |
|
| 148 | - echo esc_html_x( 'One Comment', 'content.php', 'lsx' ); |
|
| 147 | + if ('1' === $comments_number) { |
|
| 148 | + echo esc_html_x('One Comment', 'content.php', 'lsx'); |
|
| 149 | 149 | } else { |
| 150 | 150 | printf( |
| 151 | 151 | /* Translators: %s: number of comments */ |
| 152 | - esc_html( _nx( |
|
| 152 | + esc_html(_nx( |
|
| 153 | 153 | '%s Comment', |
| 154 | 154 | '%s Comments', |
| 155 | 155 | $comments_number, |
| 156 | 156 | 'content.php', |
| 157 | 157 | 'lsx' |
| 158 | - ) ), |
|
| 159 | - esc_html( number_format_i18n( $comments_number ) ) |
|
| 158 | + )), |
|
| 159 | + esc_html(number_format_i18n($comments_number)) |
|
| 160 | 160 | ); |
| 161 | 161 | } |
| 162 | 162 | ?> |
@@ -166,11 +166,11 @@ discard block |
||
| 166 | 166 | </div> |
| 167 | 167 | </div> |
| 168 | 168 | |
| 169 | - <?php if ( has_post_thumbnail() ) : ?> |
|
| 169 | + <?php if (has_post_thumbnail()) : ?> |
|
| 170 | 170 | |
| 171 | 171 | <div class="entry-image hidden-xs"> |
| 172 | - <a class="thumbnail" href="<?php the_permalink(); ?>" style="background-image:url(<?php echo esc_url( $image_src ); ?>);"> |
|
| 173 | - <?php lsx_thumbnail( 'lsx-thumbnail-single' ); ?> |
|
| 172 | + <a class="thumbnail" href="<?php the_permalink(); ?>" style="background-image:url(<?php echo esc_url($image_src); ?>);"> |
|
| 173 | + <?php lsx_thumbnail('lsx-thumbnail-single'); ?> |
|
| 174 | 174 | </a> |
| 175 | 175 | </div> |
| 176 | 176 | |
@@ -6,11 +6,11 @@ discard block |
||
| 6 | 6 | * @subpackage woocommerce |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 9 | +if ( ! defined('ABSPATH')) { |
|
| 10 | 10 | exit; |
| 11 | 11 | } |
| 12 | 12 | |
| 13 | -if ( ! function_exists( 'lsx_wc_support' ) ) : |
|
| 13 | +if ( ! function_exists('lsx_wc_support')) : |
|
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | 16 | * WooCommerce support. |
@@ -19,17 +19,17 @@ discard block |
||
| 19 | 19 | * @subpackage woocommerce |
| 20 | 20 | */ |
| 21 | 21 | function lsx_wc_support() { |
| 22 | - add_theme_support( 'woocommerce' ); |
|
| 23 | - add_theme_support( 'wc-product-gallery-zoom' ); |
|
| 24 | - add_theme_support( 'wc-product-gallery-lightbox' ); |
|
| 25 | - add_theme_support( 'wc-product-gallery-slider' ); |
|
| 22 | + add_theme_support('woocommerce'); |
|
| 23 | + add_theme_support('wc-product-gallery-zoom'); |
|
| 24 | + add_theme_support('wc-product-gallery-lightbox'); |
|
| 25 | + add_theme_support('wc-product-gallery-slider'); |
|
| 26 | 26 | } |
| 27 | 27 | |
| 28 | - add_action( 'after_setup_theme', 'lsx_wc_support' ); |
|
| 28 | + add_action('after_setup_theme', 'lsx_wc_support'); |
|
| 29 | 29 | |
| 30 | 30 | endif; |
| 31 | 31 | |
| 32 | -if ( ! function_exists( 'lsx_wc_scripts_add_styles' ) ) : |
|
| 32 | +if ( ! function_exists('lsx_wc_scripts_add_styles')) : |
|
| 33 | 33 | |
| 34 | 34 | /** |
| 35 | 35 | * WooCommerce enqueue styles. |
@@ -38,28 +38,28 @@ discard block |
||
| 38 | 38 | * @subpackage woocommerce |
| 39 | 39 | */ |
| 40 | 40 | function lsx_wc_scripts_add_styles() { |
| 41 | - wp_enqueue_style( 'woocommerce-lsx', get_template_directory_uri() . '/assets/css/woocommerce.css', array( 'lsx_main' ), LSX_VERSION ); |
|
| 42 | - wp_style_add_data( 'woocommerce-lsx', 'rtl', 'replace' ); |
|
| 41 | + wp_enqueue_style('woocommerce-lsx', get_template_directory_uri() . '/assets/css/woocommerce.css', array('lsx_main'), LSX_VERSION); |
|
| 42 | + wp_style_add_data('woocommerce-lsx', 'rtl', 'replace'); |
|
| 43 | 43 | |
| 44 | 44 | // Remove select2 added by WooCommerce |
| 45 | 45 | |
| 46 | - if ( ! is_admin() ) { |
|
| 47 | - wp_dequeue_style( 'select2' ); |
|
| 48 | - wp_deregister_style( 'select2' ); |
|
| 46 | + if ( ! is_admin()) { |
|
| 47 | + wp_dequeue_style('select2'); |
|
| 48 | + wp_deregister_style('select2'); |
|
| 49 | 49 | |
| 50 | - wp_dequeue_script( 'select2' ); |
|
| 50 | + wp_dequeue_script('select2'); |
|
| 51 | 51 | //wp_deregister_script( 'select2' ); |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | // Remove WC Shipping Multiple Addresses specific script causing issues on checkout |
| 55 | - wp_dequeue_script( 'wcms-country-select' ); |
|
| 55 | + wp_dequeue_script('wcms-country-select'); |
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | - add_action( 'wp_enqueue_scripts', 'lsx_wc_scripts_add_styles' ); |
|
| 58 | + add_action('wp_enqueue_scripts', 'lsx_wc_scripts_add_styles'); |
|
| 59 | 59 | |
| 60 | 60 | endif; |
| 61 | 61 | |
| 62 | -if ( ! function_exists( 'lsx_wc_form_field_args' ) ) : |
|
| 62 | +if ( ! function_exists('lsx_wc_form_field_args')) : |
|
| 63 | 63 | |
| 64 | 64 | /** |
| 65 | 65 | * WooCommerce form fields. |
@@ -67,17 +67,17 @@ discard block |
||
| 67 | 67 | * @package lsx |
| 68 | 68 | * @subpackage woocommerce |
| 69 | 69 | */ |
| 70 | - function lsx_wc_form_field_args( $args, $key, $value ) { |
|
| 70 | + function lsx_wc_form_field_args($args, $key, $value) { |
|
| 71 | 71 | $args['input_class'][] = 'form-control'; |
| 72 | 72 | |
| 73 | 73 | return $args; |
| 74 | 74 | } |
| 75 | 75 | |
| 76 | - add_action( 'woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3 ); |
|
| 76 | + add_action('woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3); |
|
| 77 | 77 | |
| 78 | 78 | endif; |
| 79 | 79 | |
| 80 | -if ( ! function_exists( 'lsx_wc_theme_wrapper_start' ) ) : |
|
| 80 | +if ( ! function_exists('lsx_wc_theme_wrapper_start')) : |
|
| 81 | 81 | |
| 82 | 82 | /** |
| 83 | 83 | * WooCommerce wrapper start. |
@@ -87,18 +87,18 @@ discard block |
||
| 87 | 87 | */ |
| 88 | 88 | function lsx_wc_theme_wrapper_start() { |
| 89 | 89 | lsx_content_wrap_before(); |
| 90 | - echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">'; |
|
| 90 | + echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">'; |
|
| 91 | 91 | lsx_content_before(); |
| 92 | 92 | echo '<main id="main" class="site-main" role="main">'; |
| 93 | 93 | lsx_content_top(); |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 ); |
|
| 97 | - add_action( 'woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start' ); |
|
| 96 | + remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10); |
|
| 97 | + add_action('woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start'); |
|
| 98 | 98 | |
| 99 | 99 | endif; |
| 100 | 100 | |
| 101 | -if ( ! function_exists( 'lsx_wc_theme_wrapper_end' ) ) : |
|
| 101 | +if ( ! function_exists('lsx_wc_theme_wrapper_end')) : |
|
| 102 | 102 | |
| 103 | 103 | /** |
| 104 | 104 | * WooCommerce wrapper end. |
@@ -114,12 +114,12 @@ discard block |
||
| 114 | 114 | lsx_content_wrap_after(); |
| 115 | 115 | } |
| 116 | 116 | |
| 117 | - remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 ); |
|
| 118 | - add_action( 'woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end' ); |
|
| 117 | + remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10); |
|
| 118 | + add_action('woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end'); |
|
| 119 | 119 | |
| 120 | 120 | endif; |
| 121 | 121 | |
| 122 | -if ( ! function_exists( 'lsx_wc_disable_lsx_banner_plugin' ) ) : |
|
| 122 | +if ( ! function_exists('lsx_wc_disable_lsx_banner_plugin')) : |
|
| 123 | 123 | |
| 124 | 124 | /** |
| 125 | 125 | * Disable LSX Banners plugin in some WC pages. |
@@ -127,25 +127,25 @@ discard block |
||
| 127 | 127 | * @package lsx |
| 128 | 128 | * @subpackage woocommerce |
| 129 | 129 | */ |
| 130 | - function lsx_wc_disable_lsx_banner_plugin( $disabled ) { |
|
| 130 | + function lsx_wc_disable_lsx_banner_plugin($disabled) { |
|
| 131 | 131 | global $post; |
| 132 | 132 | |
| 133 | - if ( is_cart() || is_checkout() || is_account_page() ) { |
|
| 133 | + if (is_cart() || is_checkout() || is_account_page()) { |
|
| 134 | 134 | $disabled = true; |
| 135 | 135 | } |
| 136 | 136 | |
| 137 | - if ( $post && class_exists( 'WC_Wishlists_Pages' ) && WC_Wishlists_Pages::is_wishlist_page( $post->post_name ) ) { |
|
| 137 | + if ($post && class_exists('WC_Wishlists_Pages') && WC_Wishlists_Pages::is_wishlist_page($post->post_name)) { |
|
| 138 | 138 | $disabled = true; |
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | return $disabled; |
| 142 | 142 | } |
| 143 | 143 | |
| 144 | - add_filter( 'lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin' ); |
|
| 144 | + add_filter('lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin'); |
|
| 145 | 145 | |
| 146 | 146 | endif; |
| 147 | 147 | |
| 148 | -if ( ! function_exists( 'lsx_wc_disable_lsx_banner' ) ) : |
|
| 148 | +if ( ! function_exists('lsx_wc_disable_lsx_banner')) : |
|
| 149 | 149 | |
| 150 | 150 | /** |
| 151 | 151 | * Disable LSX Banners banner in some WC pages. |
@@ -153,19 +153,19 @@ discard block |
||
| 153 | 153 | * @package lsx |
| 154 | 154 | * @subpackage woocommerce |
| 155 | 155 | */ |
| 156 | - function lsx_wc_disable_lsx_banner( $disabled ) { |
|
| 157 | - if ( is_shop() || is_product_category() || is_product_tag() || is_product() ) { |
|
| 156 | + function lsx_wc_disable_lsx_banner($disabled) { |
|
| 157 | + if (is_shop() || is_product_category() || is_product_tag() || is_product()) { |
|
| 158 | 158 | $disabled = true; |
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | return $disabled; |
| 162 | 162 | } |
| 163 | 163 | |
| 164 | - add_filter( 'lsx_banner_disable', 'lsx_wc_disable_lsx_banner' ); |
|
| 164 | + add_filter('lsx_banner_disable', 'lsx_wc_disable_lsx_banner'); |
|
| 165 | 165 | |
| 166 | 166 | endif; |
| 167 | 167 | |
| 168 | -if ( ! function_exists( 'lsx_wc_add_cart' ) ) : |
|
| 168 | +if ( ! function_exists('lsx_wc_add_cart')) : |
|
| 169 | 169 | |
| 170 | 170 | /** |
| 171 | 171 | * Adds WC cart to the header. |
@@ -173,34 +173,34 @@ discard block |
||
| 173 | 173 | * @package lsx |
| 174 | 174 | * @subpackage template-tags |
| 175 | 175 | */ |
| 176 | - function lsx_wc_add_cart( $items, $args ) { |
|
| 177 | - $cart_menu_item_position = apply_filters( 'lsx_wc_cart_menu_item_position', 'primary' ); |
|
| 176 | + function lsx_wc_add_cart($items, $args) { |
|
| 177 | + $cart_menu_item_position = apply_filters('lsx_wc_cart_menu_item_position', 'primary'); |
|
| 178 | 178 | |
| 179 | 179 | $cart_logged_out_position = $cart_menu_item_position . '_logged_out'; |
| 180 | 180 | |
| 181 | - if ( $cart_menu_item_position === $args->theme_location || $cart_logged_out_position === $args->theme_location ) { |
|
| 182 | - $customizer_option = get_theme_mod( 'lsx_header_wc_cart', false ); |
|
| 181 | + if ($cart_menu_item_position === $args->theme_location || $cart_logged_out_position === $args->theme_location) { |
|
| 182 | + $customizer_option = get_theme_mod('lsx_header_wc_cart', false); |
|
| 183 | 183 | |
| 184 | - if ( ! empty( $customizer_option ) ) { |
|
| 184 | + if ( ! empty($customizer_option)) { |
|
| 185 | 185 | ob_start(); |
| 186 | - the_widget( 'WC_Widget_Cart', 'title=' ); |
|
| 186 | + the_widget('WC_Widget_Cart', 'title='); |
|
| 187 | 187 | $widget = ob_get_clean(); |
| 188 | 188 | |
| 189 | - if ( is_cart() ) { |
|
| 189 | + if (is_cart()) { |
|
| 190 | 190 | $class = 'current-menu-item'; |
| 191 | 191 | } else { |
| 192 | 192 | $class = ''; |
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | $item_class = 'menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children dropdown lsx-wc-cart-menu-item ' . $class; |
| 196 | - $item_class = apply_filters( 'lsx_wc_cart_menu_item_class', $item_class ); |
|
| 196 | + $item_class = apply_filters('lsx_wc_cart_menu_item_class', $item_class); |
|
| 197 | 197 | |
| 198 | 198 | $item = '<li class="' . $item_class . '">' . |
| 199 | - '<a title="' . esc_attr__( 'View your shopping cart', 'lsx' ) . '" href="' . esc_url( wc_get_cart_url() ) . '" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true">' . |
|
| 200 | - '<span class="lsx-wc-cart-amount">' . wp_kses_data( WC()->cart->get_cart_subtotal() ) . '</span>' . |
|
| 199 | + '<a title="' . esc_attr__('View your shopping cart', 'lsx') . '" href="' . esc_url(wc_get_cart_url()) . '" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true">' . |
|
| 200 | + '<span class="lsx-wc-cart-amount">' . wp_kses_data(WC()->cart->get_cart_subtotal()) . '</span>' . |
|
| 201 | 201 | /* Translators: %s: items quantity */ |
| 202 | - '<span class="lsx-wc-cart-count">' . wp_kses_data( sprintf( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx' ), WC()->cart->get_cart_contents_count() ) ) . '</span>' . |
|
| 203 | - ( ! empty( WC()->cart->get_cart_contents_count() ) ? '<span class="lsx-wc-cart-count-badge">' . wp_kses_data( WC()->cart->get_cart_contents_count() ) . '</span>' : '' ) . |
|
| 202 | + '<span class="lsx-wc-cart-count">' . wp_kses_data(sprintf(_n('%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx'), WC()->cart->get_cart_contents_count())) . '</span>' . |
|
| 203 | + ( ! empty(WC()->cart->get_cart_contents_count()) ? '<span class="lsx-wc-cart-count-badge">' . wp_kses_data(WC()->cart->get_cart_contents_count()) . '</span>' : '') . |
|
| 204 | 204 | '</a>' . |
| 205 | 205 | '<ul role="menu" class=" dropdown-menu lsx-wc-cart-sub-menu">' . |
| 206 | 206 | '<li>' . |
@@ -209,7 +209,7 @@ discard block |
||
| 209 | 209 | '</ul>' . |
| 210 | 210 | '</li>'; |
| 211 | 211 | |
| 212 | - if ( 'top-menu' === $args->theme_location ) { |
|
| 212 | + if ('top-menu' === $args->theme_location) { |
|
| 213 | 213 | $items = $item . $items; |
| 214 | 214 | } else { |
| 215 | 215 | $items = $items . $item; |
@@ -220,11 +220,11 @@ discard block |
||
| 220 | 220 | return $items; |
| 221 | 221 | } |
| 222 | 222 | |
| 223 | - add_filter( 'wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2 ); |
|
| 223 | + add_filter('wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2); |
|
| 224 | 224 | |
| 225 | 225 | endif; |
| 226 | 226 | |
| 227 | -if ( ! function_exists( 'lsx_wc_products_widget_wrapper_before' ) ) : |
|
| 227 | +if ( ! function_exists('lsx_wc_products_widget_wrapper_before')) : |
|
| 228 | 228 | |
| 229 | 229 | /** |
| 230 | 230 | * Change WC products widget wrapper (before). |
@@ -232,16 +232,16 @@ discard block |
||
| 232 | 232 | * @package lsx |
| 233 | 233 | * @subpackage woocommerce |
| 234 | 234 | */ |
| 235 | - function lsx_wc_products_widget_wrapper_before( $html ) { |
|
| 235 | + function lsx_wc_products_widget_wrapper_before($html) { |
|
| 236 | 236 | $html = '<div class="lsx-woocommerce-slider lsx-woocommerce-shortcode">'; |
| 237 | 237 | return $html; |
| 238 | 238 | } |
| 239 | 239 | |
| 240 | - add_filter( 'woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15 ); |
|
| 240 | + add_filter('woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15); |
|
| 241 | 241 | |
| 242 | 242 | endif; |
| 243 | 243 | |
| 244 | -if ( ! function_exists( 'lsx_wc_products_widget_wrapper_after' ) ) : |
|
| 244 | +if ( ! function_exists('lsx_wc_products_widget_wrapper_after')) : |
|
| 245 | 245 | |
| 246 | 246 | /** |
| 247 | 247 | * Change WC products widget wrapper (after). |
@@ -249,16 +249,16 @@ discard block |
||
| 249 | 249 | * @package lsx |
| 250 | 250 | * @subpackage woocommerce |
| 251 | 251 | */ |
| 252 | - function lsx_wc_products_widget_wrapper_after( $html ) { |
|
| 252 | + function lsx_wc_products_widget_wrapper_after($html) { |
|
| 253 | 253 | $html = '</div>'; |
| 254 | 254 | return $html; |
| 255 | 255 | } |
| 256 | 256 | |
| 257 | - add_filter( 'woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15 ); |
|
| 257 | + add_filter('woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15); |
|
| 258 | 258 | |
| 259 | 259 | endif; |
| 260 | 260 | |
| 261 | -if ( ! function_exists( 'lsx_wc_reviews_widget_override' ) ) : |
|
| 261 | +if ( ! function_exists('lsx_wc_reviews_widget_override')) : |
|
| 262 | 262 | |
| 263 | 263 | /** |
| 264 | 264 | * Override WC ewviews widget. |
@@ -267,18 +267,18 @@ discard block |
||
| 267 | 267 | * @subpackage woocommerce |
| 268 | 268 | */ |
| 269 | 269 | function lsx_wc_reviews_widget_override() { |
| 270 | - if ( class_exists( 'WC_Widget_Recent_Reviews' ) ) { |
|
| 271 | - unregister_widget( 'WC_Widget_Recent_Reviews' ); |
|
| 270 | + if (class_exists('WC_Widget_Recent_Reviews')) { |
|
| 271 | + unregister_widget('WC_Widget_Recent_Reviews'); |
|
| 272 | 272 | require get_template_directory() . '/includes/classes/class-lsx-wc-widget-recent-reviews.php'; |
| 273 | - register_widget( 'LSX_WC_Widget_Recent_Reviews' ); |
|
| 273 | + register_widget('LSX_WC_Widget_Recent_Reviews'); |
|
| 274 | 274 | } |
| 275 | 275 | } |
| 276 | 276 | |
| 277 | - add_action( 'widgets_init', 'lsx_wc_reviews_widget_override', 15 ); |
|
| 277 | + add_action('widgets_init', 'lsx_wc_reviews_widget_override', 15); |
|
| 278 | 278 | |
| 279 | 279 | endif; |
| 280 | 280 | |
| 281 | -if ( ! function_exists( 'lsx_wc_change_price_html' ) ) : |
|
| 281 | +if ( ! function_exists('lsx_wc_change_price_html')) : |
|
| 282 | 282 | |
| 283 | 283 | /** |
| 284 | 284 | * Change WC ZERO price to "free". |
@@ -290,28 +290,28 @@ discard block |
||
| 290 | 290 | * @param $product WC_Product |
| 291 | 291 | * @return string |
| 292 | 292 | */ |
| 293 | - function lsx_wc_change_price_html( $price, $product ) { |
|
| 294 | - if ( empty( $product->get_price() ) ) { |
|
| 295 | - if ( $product->is_on_sale() && $product->get_regular_price() ) { |
|
| 296 | - $regular_price = wc_get_price_to_display( $product, array( |
|
| 293 | + function lsx_wc_change_price_html($price, $product) { |
|
| 294 | + if (empty($product->get_price())) { |
|
| 295 | + if ($product->is_on_sale() && $product->get_regular_price()) { |
|
| 296 | + $regular_price = wc_get_price_to_display($product, array( |
|
| 297 | 297 | 'qty' => 1, |
| 298 | 298 | 'price' => $product->get_regular_price(), |
| 299 | - ) ); |
|
| 299 | + )); |
|
| 300 | 300 | |
| 301 | - $price = wc_format_price_range( $regular_price, esc_html__( 'Free!', 'lsx' ) ); |
|
| 301 | + $price = wc_format_price_range($regular_price, esc_html__('Free!', 'lsx')); |
|
| 302 | 302 | } else { |
| 303 | - $price = '<span class="amount">' . esc_html__( 'Free!', 'lsx' ) . '</span>'; |
|
| 303 | + $price = '<span class="amount">' . esc_html__('Free!', 'lsx') . '</span>'; |
|
| 304 | 304 | } |
| 305 | 305 | } |
| 306 | 306 | |
| 307 | 307 | return $price; |
| 308 | 308 | } |
| 309 | 309 | |
| 310 | - add_filter( 'woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2 ); |
|
| 310 | + add_filter('woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2); |
|
| 311 | 311 | |
| 312 | 312 | endif; |
| 313 | 313 | |
| 314 | -if ( ! function_exists( 'lsx_wc_cart_link_fragment' ) ) : |
|
| 314 | +if ( ! function_exists('lsx_wc_cart_link_fragment')) : |
|
| 315 | 315 | |
| 316 | 316 | /** |
| 317 | 317 | * Cart Fragments. |
@@ -320,7 +320,7 @@ discard block |
||
| 320 | 320 | * @package lsx |
| 321 | 321 | * @subpackage woocommerce |
| 322 | 322 | */ |
| 323 | - function lsx_wc_cart_link_fragment( $fragments ) { |
|
| 323 | + function lsx_wc_cart_link_fragment($fragments) { |
|
| 324 | 324 | global $woocommerce; |
| 325 | 325 | |
| 326 | 326 | ob_start(); |
@@ -331,8 +331,8 @@ discard block |
||
| 331 | 331 | lsx_wc_items_counter(); |
| 332 | 332 | $items_counter = ob_get_clean(); |
| 333 | 333 | |
| 334 | - if ( ! empty( $items_counter ) ) { |
|
| 335 | - $fragments['div.widget_shopping_cart_content'] = preg_replace( '/(.+)(<\/ul>)[\s\n]*(<p class="woocommerce-mini-cart__total)(.+)/', '$1' . $items_counter . '$2$3$4', $fragments['div.widget_shopping_cart_content'] ); |
|
| 334 | + if ( ! empty($items_counter)) { |
|
| 335 | + $fragments['div.widget_shopping_cart_content'] = preg_replace('/(.+)(<\/ul>)[\s\n]*(<p class="woocommerce-mini-cart__total)(.+)/', '$1' . $items_counter . '$2$3$4', $fragments['div.widget_shopping_cart_content']); |
|
| 336 | 336 | } |
| 337 | 337 | |
| 338 | 338 | return $fragments; |
@@ -340,7 +340,7 @@ discard block |
||
| 340 | 340 | |
| 341 | 341 | endif; |
| 342 | 342 | |
| 343 | -if ( ! function_exists( 'lsx_wc_cart_link' ) ) : |
|
| 343 | +if ( ! function_exists('lsx_wc_cart_link')) : |
|
| 344 | 344 | |
| 345 | 345 | /** |
| 346 | 346 | * Cart Link. |
@@ -351,14 +351,14 @@ discard block |
||
| 351 | 351 | */ |
| 352 | 352 | function lsx_wc_cart_link() { |
| 353 | 353 | ?> |
| 354 | - <a title="<?php esc_attr_e( 'View your shopping cart', 'lsx' ); ?>" href="<?php echo esc_url( wc_get_cart_url() ); ?>" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true"> |
|
| 355 | - <span class="lsx-wc-cart-amount"><?php echo wp_kses_data( WC()->cart->get_cart_subtotal() ); ?></span> |
|
| 354 | + <a title="<?php esc_attr_e('View your shopping cart', 'lsx'); ?>" href="<?php echo esc_url(wc_get_cart_url()); ?>" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true"> |
|
| 355 | + <span class="lsx-wc-cart-amount"><?php echo wp_kses_data(WC()->cart->get_cart_subtotal()); ?></span> |
|
| 356 | 356 | |
| 357 | 357 | <?php /* Translators: %s: items quantity */ ?> |
| 358 | - <span class="lsx-wc-cart-count"><?php echo wp_kses_data( sprintf( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx' ), WC()->cart->get_cart_contents_count() ) );?></span> |
|
| 358 | + <span class="lsx-wc-cart-count"><?php echo wp_kses_data(sprintf(_n('%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx'), WC()->cart->get_cart_contents_count())); ?></span> |
|
| 359 | 359 | |
| 360 | - <?php if ( ! empty( WC()->cart->get_cart_contents_count() ) ) : ?> |
|
| 361 | - <span class="lsx-wc-cart-count-badge"><?php echo wp_kses_data( WC()->cart->get_cart_contents_count() );?></span> |
|
| 360 | + <?php if ( ! empty(WC()->cart->get_cart_contents_count())) : ?> |
|
| 361 | + <span class="lsx-wc-cart-count-badge"><?php echo wp_kses_data(WC()->cart->get_cart_contents_count()); ?></span> |
|
| 362 | 362 | <?php endif; ?> |
| 363 | 363 | </a> |
| 364 | 364 | <?php |
@@ -366,7 +366,7 @@ discard block |
||
| 366 | 366 | |
| 367 | 367 | endif; |
| 368 | 368 | |
| 369 | -if ( ! function_exists( 'lsx_wc_items_counter' ) ) : |
|
| 369 | +if ( ! function_exists('lsx_wc_items_counter')) : |
|
| 370 | 370 | |
| 371 | 371 | /** |
| 372 | 372 | * Add car item hidden items counter. |
@@ -378,21 +378,21 @@ discard block |
||
| 378 | 378 | $count = (int) WC()->cart->get_cart_contents_count(); |
| 379 | 379 | $items_counter = ''; |
| 380 | 380 | |
| 381 | - if ( ! empty( $count ) ) { |
|
| 381 | + if ( ! empty($count)) { |
|
| 382 | 382 | $count -= 3; |
| 383 | 383 | |
| 384 | - if ( 1 === $count ) { |
|
| 385 | - $items_counter = esc_html__( '1 other item in cart', 'lsx' ); |
|
| 386 | - } elseif ( $count > 1 ) { |
|
| 384 | + if (1 === $count) { |
|
| 385 | + $items_counter = esc_html__('1 other item in cart', 'lsx'); |
|
| 386 | + } elseif ($count > 1) { |
|
| 387 | 387 | /* Translators: %s: items counter */ |
| 388 | - $items_counter = sprintf( esc_html__( '%s other items in cart', 'lsx' ), $count ); |
|
| 388 | + $items_counter = sprintf(esc_html__('%s other items in cart', 'lsx'), $count); |
|
| 389 | 389 | } |
| 390 | 390 | } |
| 391 | 391 | |
| 392 | - if ( ! empty( $items_counter ) ) : |
|
| 392 | + if ( ! empty($items_counter)) : |
|
| 393 | 393 | ?> |
| 394 | 394 | <li class="woocommerce-mini-cart-item mini_cart_item" style="display: block;"> |
| 395 | - <a href="<?php echo esc_url( WC()->cart->get_cart_url() ); ?>"><?php echo esc_html( $items_counter ); ?></a> |
|
| 395 | + <a href="<?php echo esc_url(WC()->cart->get_cart_url()); ?>"><?php echo esc_html($items_counter); ?></a> |
|
| 396 | 396 | </li> |
| 397 | 397 | <?php |
| 398 | 398 | endif; |
@@ -400,7 +400,7 @@ discard block |
||
| 400 | 400 | |
| 401 | 401 | endif; |
| 402 | 402 | |
| 403 | -if ( ! function_exists( 'lsx_wc_loop_shop_per_page' ) ) : |
|
| 403 | +if ( ! function_exists('lsx_wc_loop_shop_per_page')) : |
|
| 404 | 404 | |
| 405 | 405 | /** |
| 406 | 406 | * Changes the number of products to display on shop. |
@@ -408,16 +408,16 @@ discard block |
||
| 408 | 408 | * @package lsx |
| 409 | 409 | * @subpackage woocommerce |
| 410 | 410 | */ |
| 411 | - function lsx_wc_loop_shop_per_page( $items ) { |
|
| 411 | + function lsx_wc_loop_shop_per_page($items) { |
|
| 412 | 412 | $items = 20; |
| 413 | 413 | return $items; |
| 414 | 414 | } |
| 415 | 415 | |
| 416 | - add_filter( 'loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20 ); |
|
| 416 | + add_filter('loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20); |
|
| 417 | 417 | |
| 418 | 418 | endif; |
| 419 | 419 | |
| 420 | -if ( ! function_exists( 'lsx_wc_add_to_cart_message_html' ) ) : |
|
| 420 | +if ( ! function_exists('lsx_wc_add_to_cart_message_html')) : |
|
| 421 | 421 | |
| 422 | 422 | /** |
| 423 | 423 | * Changes the "added to cart" message HTML. |
@@ -425,39 +425,39 @@ discard block |
||
| 425 | 425 | * @package lsx |
| 426 | 426 | * @subpackage woocommerce |
| 427 | 427 | */ |
| 428 | - function lsx_wc_add_to_cart_message_html( $message, $products ) { |
|
| 428 | + function lsx_wc_add_to_cart_message_html($message, $products) { |
|
| 429 | 429 | $message = '<div class="woocommerce-message-added-to-cart">' . $message . '</div>'; |
| 430 | 430 | return $message; |
| 431 | 431 | } |
| 432 | 432 | |
| 433 | - add_filter( 'wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2 ); |
|
| 433 | + add_filter('wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2); |
|
| 434 | 434 | |
| 435 | 435 | endif; |
| 436 | 436 | |
| 437 | -if ( defined( 'WC_VERSION' ) && version_compare( WC_VERSION, '2.3', '>=' ) ) { |
|
| 438 | - add_filter( 'woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment' ); |
|
| 437 | +if (defined('WC_VERSION') && version_compare(WC_VERSION, '2.3', '>=')) { |
|
| 438 | + add_filter('woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment'); |
|
| 439 | 439 | } else { |
| 440 | - add_filter( 'add_to_cart_fragments', 'lsx_wc_cart_link_fragment' ); |
|
| 440 | + add_filter('add_to_cart_fragments', 'lsx_wc_cart_link_fragment'); |
|
| 441 | 441 | } |
| 442 | 442 | |
| 443 | -remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 ); |
|
| 443 | +remove_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 10); |
|
| 444 | 444 | |
| 445 | -add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9 ); |
|
| 446 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10 ); |
|
| 447 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_result_count', 20 ); |
|
| 448 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 30 ); |
|
| 449 | -add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 ); |
|
| 445 | +add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9); |
|
| 446 | +add_action('woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10); |
|
| 447 | +add_action('woocommerce_after_shop_loop', 'woocommerce_result_count', 20); |
|
| 448 | +add_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 30); |
|
| 449 | +add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31); |
|
| 450 | 450 | |
| 451 | -remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); |
|
| 452 | -remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 ); |
|
| 451 | +remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20); |
|
| 452 | +remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30); |
|
| 453 | 453 | |
| 454 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9 ); |
|
| 455 | -add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10 ); |
|
| 456 | -add_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); |
|
| 457 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30 ); |
|
| 458 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 ); |
|
| 454 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9); |
|
| 455 | +add_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10); |
|
| 456 | +add_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20); |
|
| 457 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30); |
|
| 458 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31); |
|
| 459 | 459 | |
| 460 | -if ( ! function_exists( 'lsx_wc_sorting_wrapper' ) ) : |
|
| 460 | +if ( ! function_exists('lsx_wc_sorting_wrapper')) : |
|
| 461 | 461 | |
| 462 | 462 | /** |
| 463 | 463 | * Sorting wrapper. |
@@ -471,7 +471,7 @@ discard block |
||
| 471 | 471 | |
| 472 | 472 | endif; |
| 473 | 473 | |
| 474 | -if ( ! function_exists( 'lsx_wc_sorting_wrapper_close' ) ) : |
|
| 474 | +if ( ! function_exists('lsx_wc_sorting_wrapper_close')) : |
|
| 475 | 475 | |
| 476 | 476 | /** |
| 477 | 477 | * Sorting wrapper close. |
@@ -485,7 +485,7 @@ discard block |
||
| 485 | 485 | |
| 486 | 486 | endif; |
| 487 | 487 | |
| 488 | -if ( ! function_exists( 'lsx_wc_product_columns_wrapper_close' ) ) : |
|
| 488 | +if ( ! function_exists('lsx_wc_product_columns_wrapper_close')) : |
|
| 489 | 489 | |
| 490 | 490 | /** |
| 491 | 491 | * Product columns wrapper close. |
@@ -499,7 +499,7 @@ discard block |
||
| 499 | 499 | |
| 500 | 500 | endif; |
| 501 | 501 | |
| 502 | -if ( ! function_exists( 'lsx_wc_woocommerce_pagination' ) ) : |
|
| 502 | +if ( ! function_exists('lsx_wc_woocommerce_pagination')) : |
|
| 503 | 503 | |
| 504 | 504 | /** |
| 505 | 505 | * LSX WooCommerce Pagination |
@@ -511,14 +511,14 @@ discard block |
||
| 511 | 511 | * @subpackage woocommerce |
| 512 | 512 | */ |
| 513 | 513 | function lsx_wc_woocommerce_pagination() { |
| 514 | - if ( woocommerce_products_will_display() ) { |
|
| 514 | + if (woocommerce_products_will_display()) { |
|
| 515 | 515 | woocommerce_pagination(); |
| 516 | 516 | } |
| 517 | 517 | } |
| 518 | 518 | |
| 519 | 519 | endif; |
| 520 | 520 | |
| 521 | -if ( ! function_exists( 'lsx_customizer_wc_controls' ) ) : |
|
| 521 | +if ( ! function_exists('lsx_customizer_wc_controls')) : |
|
| 522 | 522 | |
| 523 | 523 | /** |
| 524 | 524 | * Returns an array of the core panel. |
@@ -528,10 +528,10 @@ discard block |
||
| 528 | 528 | * |
| 529 | 529 | * @return $lsx_controls array() |
| 530 | 530 | */ |
| 531 | - function lsx_customizer_wc_controls( $lsx_controls ) { |
|
| 531 | + function lsx_customizer_wc_controls($lsx_controls) { |
|
| 532 | 532 | $lsx_controls['panels']['lsx-wc'] = array( |
| 533 | - 'title' => esc_html__( 'WooCommerce', 'lsx' ), |
|
| 534 | - 'description' => esc_html__( 'Change the WooCommerce settings.', 'lsx' ), |
|
| 533 | + 'title' => esc_html__('WooCommerce', 'lsx'), |
|
| 534 | + 'description' => esc_html__('Change the WooCommerce settings.', 'lsx'), |
|
| 535 | 535 | 'priority' => 23, |
| 536 | 536 | ); |
| 537 | 537 | |
@@ -540,8 +540,8 @@ discard block |
||
| 540 | 540 | */ |
| 541 | 541 | |
| 542 | 542 | $lsx_controls['sections']['lsx-wc-global'] = array( |
| 543 | - 'title' => esc_html__( 'Global', 'lsx' ), |
|
| 544 | - 'description' => esc_html__( 'Change the WooCommerce global settings.', 'lsx' ), |
|
| 543 | + 'title' => esc_html__('Global', 'lsx'), |
|
| 544 | + 'description' => esc_html__('Change the WooCommerce global settings.', 'lsx'), |
|
| 545 | 545 | 'panel' => 'lsx-wc', |
| 546 | 546 | 'priority' => 1, |
| 547 | 547 | ); |
@@ -552,8 +552,8 @@ discard block |
||
| 552 | 552 | ); |
| 553 | 553 | |
| 554 | 554 | $lsx_controls['fields']['lsx_wc_mobile_footer_bar_status'] = array( |
| 555 | - 'label' => esc_html__( 'Footer Bar', 'lsx' ), |
|
| 556 | - 'description' => esc_html__( 'Enable the mobile footer bar.', 'lsx' ), |
|
| 555 | + 'label' => esc_html__('Footer Bar', 'lsx'), |
|
| 556 | + 'description' => esc_html__('Enable the mobile footer bar.', 'lsx'), |
|
| 557 | 557 | 'section' => 'lsx-wc-global', |
| 558 | 558 | 'type' => 'checkbox', |
| 559 | 559 | 'priority' => 1, |
@@ -564,8 +564,8 @@ discard block |
||
| 564 | 564 | */ |
| 565 | 565 | |
| 566 | 566 | $lsx_controls['sections']['lsx-wc-cart'] = array( |
| 567 | - 'title' => esc_html__( 'Cart', 'lsx' ), |
|
| 568 | - 'description' => esc_html__( 'Change the WooCommerce cart settings.', 'lsx' ), |
|
| 567 | + 'title' => esc_html__('Cart', 'lsx'), |
|
| 568 | + 'description' => esc_html__('Change the WooCommerce cart settings.', 'lsx'), |
|
| 569 | 569 | 'panel' => 'lsx-wc', |
| 570 | 570 | 'priority' => 2, |
| 571 | 571 | ); |
@@ -576,8 +576,8 @@ discard block |
||
| 576 | 576 | ); |
| 577 | 577 | |
| 578 | 578 | $lsx_controls['fields']['lsx_header_wc_cart'] = array( |
| 579 | - 'label' => esc_html__( 'Menu Item', 'lsx' ), |
|
| 580 | - 'description' => esc_html__( 'Enable the cart menu item.', 'lsx' ), |
|
| 579 | + 'label' => esc_html__('Menu Item', 'lsx'), |
|
| 580 | + 'description' => esc_html__('Enable the cart menu item.', 'lsx'), |
|
| 581 | 581 | 'section' => 'lsx-wc-cart', |
| 582 | 582 | 'type' => 'checkbox', |
| 583 | 583 | 'priority' => 1, |
@@ -586,11 +586,11 @@ discard block |
||
| 586 | 586 | return $lsx_controls; |
| 587 | 587 | } |
| 588 | 588 | |
| 589 | - add_filter( 'lsx_customizer_controls', 'lsx_customizer_wc_controls' ); |
|
| 589 | + add_filter('lsx_customizer_controls', 'lsx_customizer_wc_controls'); |
|
| 590 | 590 | |
| 591 | 591 | endif; |
| 592 | 592 | |
| 593 | -if ( ! function_exists( 'lsx_wc_footer_bar' ) ) : |
|
| 593 | +if ( ! function_exists('lsx_wc_footer_bar')) : |
|
| 594 | 594 | |
| 595 | 595 | /** |
| 596 | 596 | * Display WC footer bar. |
@@ -599,46 +599,46 @@ discard block |
||
| 599 | 599 | * @subpackage woocommerce |
| 600 | 600 | */ |
| 601 | 601 | function lsx_wc_footer_bar() { |
| 602 | - if ( ! empty( get_theme_mod( 'lsx_wc_mobile_footer_bar_status', '1' ) ) ) : |
|
| 602 | + if ( ! empty(get_theme_mod('lsx_wc_mobile_footer_bar_status', '1'))) : |
|
| 603 | 603 | ?> |
| 604 | 604 | <div class="lsx-wc-footer-bar"> |
| 605 | - <form role="search" method="get" action="<?php echo esc_url( home_url() ); ?>" class="lsx-wc-footer-bar-form"> |
|
| 605 | + <form role="search" method="get" action="<?php echo esc_url(home_url()); ?>" class="lsx-wc-footer-bar-form"> |
|
| 606 | 606 | <fieldset> |
| 607 | - <legend class="screen-reader-text"><?php esc_html_e( 'Search products', 'lsx' ); ?></legend> |
|
| 608 | - <input type="search" name="s" placeholder="<?php esc_attr_e( 'Search products...', 'lsx' ); ?>" class="form-control"> |
|
| 607 | + <legend class="screen-reader-text"><?php esc_html_e('Search products', 'lsx'); ?></legend> |
|
| 608 | + <input type="search" name="s" placeholder="<?php esc_attr_e('Search products...', 'lsx'); ?>" class="form-control"> |
|
| 609 | 609 | </fieldset> |
| 610 | 610 | </form> |
| 611 | 611 | |
| 612 | 612 | <ul class="lsx-wc-footer-bar-items"> |
| 613 | 613 | <li class="lsx-wc-footer-bar-item"> |
| 614 | - <a href="<?php echo esc_url( home_url() ); ?>" class="lsx-wc-footer-bar-link"> |
|
| 614 | + <a href="<?php echo esc_url(home_url()); ?>" class="lsx-wc-footer-bar-link"> |
|
| 615 | 615 | <i class="fa fa-home" aria-hidden="true"></i> |
| 616 | - <span><?php esc_html_e( 'Home', 'lsx' ); ?></span> |
|
| 616 | + <span><?php esc_html_e('Home', 'lsx'); ?></span> |
|
| 617 | 617 | </a> |
| 618 | 618 | </li> |
| 619 | 619 | |
| 620 | 620 | <li class="lsx-wc-footer-bar-item"> |
| 621 | - <a href="<?php echo esc_url( get_permalink( get_option( 'woocommerce_myaccount_page_id' ) ) ); ?>" class="lsx-wc-footer-bar-link"> |
|
| 621 | + <a href="<?php echo esc_url(get_permalink(get_option('woocommerce_myaccount_page_id'))); ?>" class="lsx-wc-footer-bar-link"> |
|
| 622 | 622 | <i class="fa fa-user" aria-hidden="true"></i> |
| 623 | - <span><?php esc_html_e( 'Account', 'lsx' ); ?></span> |
|
| 623 | + <span><?php esc_html_e('Account', 'lsx'); ?></span> |
|
| 624 | 624 | </a> |
| 625 | 625 | </li> |
| 626 | 626 | |
| 627 | 627 | <li class="lsx-wc-footer-bar-item"> |
| 628 | 628 | <a href="#" class="lsx-wc-footer-bar-link lsx-wc-footer-bar-link-toogle"> |
| 629 | 629 | <i class="fa fa-search" aria-hidden="true"></i> |
| 630 | - <span><?php esc_html_e( 'Search', 'lsx' ); ?></span> |
|
| 630 | + <span><?php esc_html_e('Search', 'lsx'); ?></span> |
|
| 631 | 631 | </a> |
| 632 | 632 | </li> |
| 633 | 633 | |
| 634 | 634 | <li class="lsx-wc-footer-bar-item"> |
| 635 | - <a href="<?php echo esc_url( WC()->cart->get_cart_url() ); ?>" class="lsx-wc-footer-bar-link"> |
|
| 635 | + <a href="<?php echo esc_url(WC()->cart->get_cart_url()); ?>" class="lsx-wc-footer-bar-link"> |
|
| 636 | 636 | <i class="fa fa-shopping-basket" aria-hidden="true"></i> |
| 637 | 637 | <?php $count = WC()->cart->get_cart_contents_count(); ?> |
| 638 | - <?php if ( ! empty( $count ) ) : ?> |
|
| 639 | - <span class="lsx-wc-footer-bar-count"><?php echo wp_kses_data( $count ); ?></span> |
|
| 638 | + <?php if ( ! empty($count)) : ?> |
|
| 639 | + <span class="lsx-wc-footer-bar-count"><?php echo wp_kses_data($count); ?></span> |
|
| 640 | 640 | <?php endif; ?> |
| 641 | - <span><?php esc_html_e( 'Cart', 'lsx' ); ?></span> |
|
| 641 | + <span><?php esc_html_e('Cart', 'lsx'); ?></span> |
|
| 642 | 642 | </a> |
| 643 | 643 | </li> |
| 644 | 644 | </ul> |
@@ -647,11 +647,11 @@ discard block |
||
| 647 | 647 | endif; |
| 648 | 648 | } |
| 649 | 649 | |
| 650 | - add_action( 'lsx_body_bottom', 'lsx_wc_footer_bar', 15 ); |
|
| 650 | + add_action('lsx_body_bottom', 'lsx_wc_footer_bar', 15); |
|
| 651 | 651 | |
| 652 | 652 | endif; |
| 653 | 653 | |
| 654 | -if ( ! function_exists( 'lsx_wc_body_class' ) ) : |
|
| 654 | +if ( ! function_exists('lsx_wc_body_class')) : |
|
| 655 | 655 | |
| 656 | 656 | /** |
| 657 | 657 | * Changes body class. |
@@ -659,25 +659,25 @@ discard block |
||
| 659 | 659 | * @package lsx |
| 660 | 660 | * @subpackage woocommerce |
| 661 | 661 | */ |
| 662 | - function lsx_wc_body_class( $classes ) { |
|
| 662 | + function lsx_wc_body_class($classes) { |
|
| 663 | 663 | global $post; |
| 664 | 664 | |
| 665 | - if ( $post && class_exists( 'WC_Wishlists_Pages' ) && WC_Wishlists_Pages::is_wishlist_page( $post->post_name ) ) { |
|
| 665 | + if ($post && class_exists('WC_Wishlists_Pages') && WC_Wishlists_Pages::is_wishlist_page($post->post_name)) { |
|
| 666 | 666 | $classes[] = 'woocommerce-page woocommerce-wishlist'; |
| 667 | 667 | } |
| 668 | 668 | |
| 669 | - if ( ! empty( get_theme_mod( 'lsx_wc_mobile_footer_bar_status', '1' ) ) ) { |
|
| 669 | + if ( ! empty(get_theme_mod('lsx_wc_mobile_footer_bar_status', '1'))) { |
|
| 670 | 670 | $classes[] = 'lsx-wc-has-footer-bar'; |
| 671 | 671 | } |
| 672 | 672 | |
| 673 | 673 | return $classes; |
| 674 | 674 | } |
| 675 | 675 | |
| 676 | - add_filter( 'body_class', 'lsx_wc_body_class', 2999 ); |
|
| 676 | + add_filter('body_class', 'lsx_wc_body_class', 2999); |
|
| 677 | 677 | |
| 678 | 678 | endif; |
| 679 | 679 | |
| 680 | -if ( ! function_exists( 'lsx_wc_downloadable_products' ) ) : |
|
| 680 | +if ( ! function_exists('lsx_wc_downloadable_products')) : |
|
| 681 | 681 | |
| 682 | 682 | /** |
| 683 | 683 | * Changes downloads "download" button text. |
@@ -685,19 +685,19 @@ discard block |
||
| 685 | 685 | * @package lsx |
| 686 | 686 | * @subpackage woocommerce |
| 687 | 687 | */ |
| 688 | - function lsx_wc_downloadable_products( $downloads ) { |
|
| 689 | - foreach ( $downloads as $i => $download ) { |
|
| 690 | - $downloads[ $i ]['download_name'] = esc_html__( 'Download', 'lsx' ); |
|
| 688 | + function lsx_wc_downloadable_products($downloads) { |
|
| 689 | + foreach ($downloads as $i => $download) { |
|
| 690 | + $downloads[$i]['download_name'] = esc_html__('Download', 'lsx'); |
|
| 691 | 691 | } |
| 692 | 692 | |
| 693 | 693 | return $downloads; |
| 694 | 694 | } |
| 695 | 695 | |
| 696 | - add_filter( 'woocommerce_customer_get_downloadable_products', 'lsx_wc_downloadable_products', 2999 ); |
|
| 696 | + add_filter('woocommerce_customer_get_downloadable_products', 'lsx_wc_downloadable_products', 2999); |
|
| 697 | 697 | |
| 698 | 698 | endif; |
| 699 | 699 | |
| 700 | -if ( ! function_exists( 'lsx_wc_move_bundle_products' ) ) : |
|
| 700 | +if ( ! function_exists('lsx_wc_move_bundle_products')) : |
|
| 701 | 701 | |
| 702 | 702 | /** |
| 703 | 703 | * WooCommerce - Move the bundle products to a tab. |
@@ -705,46 +705,46 @@ discard block |
||
| 705 | 705 | * @package lsx |
| 706 | 706 | * @subpackage woocommerce |
| 707 | 707 | */ |
| 708 | - function lsx_wc_move_bundle_products( $tabs ) { |
|
| 708 | + function lsx_wc_move_bundle_products($tabs) { |
|
| 709 | 709 | global $product, $post; |
| 710 | 710 | |
| 711 | - if ( method_exists( $product , 'get_bundled_items' ) ) { |
|
| 711 | + if (method_exists($product, 'get_bundled_items')) { |
|
| 712 | 712 | $bundled_items = $product->get_bundled_items(); |
| 713 | 713 | |
| 714 | - if ( ! empty( $bundled_items ) ) { |
|
| 714 | + if ( ! empty($bundled_items)) { |
|
| 715 | 715 | $tabs['bundled_products'] = array( |
| 716 | - 'title' => __( 'Included Products', 'lsx' ), |
|
| 716 | + 'title' => __('Included Products', 'lsx'), |
|
| 717 | 717 | 'priority' => 10, |
| 718 | 718 | 'callback' => 'lsx_wc_bundle_products', |
| 719 | 719 | ); |
| 720 | 720 | } |
| 721 | 721 | } |
| 722 | 722 | |
| 723 | - if ( isset( $tabs['description'] ) ) { |
|
| 723 | + if (isset($tabs['description'])) { |
|
| 724 | 724 | $tabs['description']['priority'] = 5; |
| 725 | 725 | } |
| 726 | 726 | |
| 727 | - if ( isset( $tabs['reviews'] ) ) { |
|
| 727 | + if (isset($tabs['reviews'])) { |
|
| 728 | 728 | $tabs['reviews']['priority'] = 15; |
| 729 | 729 | } |
| 730 | 730 | |
| 731 | - if ( isset( $tabs['product_enquiry'] ) ) { |
|
| 731 | + if (isset($tabs['product_enquiry'])) { |
|
| 732 | 732 | $tabs['product_enquiry']['priority'] = 20; |
| 733 | 733 | } |
| 734 | 734 | |
| 735 | 735 | return $tabs; |
| 736 | 736 | } |
| 737 | 737 | |
| 738 | - add_action( 'woocommerce_product_tabs', 'lsx_wc_move_bundle_products', 50 ); |
|
| 738 | + add_action('woocommerce_product_tabs', 'lsx_wc_move_bundle_products', 50); |
|
| 739 | 739 | |
| 740 | 740 | endif; |
| 741 | 741 | |
| 742 | -if ( ! function_exists( 'lsx_wc_bundle_products' ) ) : |
|
| 742 | +if ( ! function_exists('lsx_wc_bundle_products')) : |
|
| 743 | 743 | |
| 744 | 744 | function lsx_wc_bundle_products() { |
| 745 | 745 | global $product, $post; |
| 746 | 746 | |
| 747 | - if ( method_exists( $product , 'get_bundled_items' ) ) { |
|
| 747 | + if (method_exists($product, 'get_bundled_items')) { |
|
| 748 | 748 | $bundled_items = $product->get_bundled_items(); |
| 749 | 749 | |
| 750 | 750 | // do_action( 'woocommerce_before_bundled_items', $product ); |
@@ -760,16 +760,16 @@ discard block |
||
| 760 | 760 | // $this->widget_start( $args, $instance ); |
| 761 | 761 | |
| 762 | 762 | // @codingStandardsIgnoreLine |
| 763 | - echo apply_filters( 'woocommerce_before_widget_product_list', '<ul class="product_list_widget">' ); |
|
| 763 | + echo apply_filters('woocommerce_before_widget_product_list', '<ul class="product_list_widget">'); |
|
| 764 | 764 | |
| 765 | - foreach ( $bundled_items as $bundled_item ) { |
|
| 766 | - $product = wc_get_product( $bundled_item->item_data['product_id'] ); |
|
| 767 | - wc_get_template( 'content-widget-product.php' ); |
|
| 765 | + foreach ($bundled_items as $bundled_item) { |
|
| 766 | + $product = wc_get_product($bundled_item->item_data['product_id']); |
|
| 767 | + wc_get_template('content-widget-product.php'); |
|
| 768 | 768 | $product = $product_original; |
| 769 | 769 | } |
| 770 | 770 | |
| 771 | 771 | // @codingStandardsIgnoreLine |
| 772 | - echo apply_filters( 'woocommerce_after_widget_product_list', '</ul>' ); |
|
| 772 | + echo apply_filters('woocommerce_after_widget_product_list', '</ul>'); |
|
| 773 | 773 | } |
| 774 | 774 | |
| 775 | 775 | // $this->widget_end( $args ); |
@@ -778,7 +778,7 @@ discard block |
||
| 778 | 778 | endif; |
| 779 | 779 | |
| 780 | 780 | |
| 781 | -if ( ! function_exists( 'lsx_wc_product_searchform' ) ) : |
|
| 781 | +if ( ! function_exists('lsx_wc_product_searchform')) : |
|
| 782 | 782 | /** |
| 783 | 783 | * woo_custom_product_searchform |
| 784 | 784 | * |
@@ -786,7 +786,7 @@ discard block |
||
| 786 | 786 | * @since 1.0 |
| 787 | 787 | * @return void |
| 788 | 788 | */ |
| 789 | - function lsx_wc_product_searchform( $form ) { |
|
| 789 | + function lsx_wc_product_searchform($form) { |
|
| 790 | 790 | |
| 791 | 791 | $form = ' |
| 792 | 792 | <form role="search" method="get" class="search-form form-inline" id="searchform" action="<?php echo esc_url( home_url( \'/\' ) ); ?>"> |
@@ -807,53 +807,53 @@ discard block |
||
| 807 | 807 | |
| 808 | 808 | } |
| 809 | 809 | endif; |
| 810 | -add_filter( 'get_product_search_form' , 'lsx_wc_product_searchform', 10, 1 ); |
|
| 810 | +add_filter('get_product_search_form', 'lsx_wc_product_searchform', 10, 1); |
|
| 811 | 811 | |
| 812 | 812 | /** |
| 813 | 813 | * Add in nav classes for the Product Tabs |
| 814 | 814 | */ |
| 815 | 815 | function woocommerce_output_product_data_tabs() { |
| 816 | - $html = wc_get_template_html( 'single-product/tabs/tabs.php' ); |
|
| 816 | + $html = wc_get_template_html('single-product/tabs/tabs.php'); |
|
| 817 | 817 | |
| 818 | 818 | //$html = str_replace( 'woocommerce-wc-tabs nav nav-tabs-wrapper', 'woocommerce-tabs wc-tabs-wrapper', $html ); |
| 819 | - $html = str_replace( '"tabs wc-tabs', '"nav nav-tabs wc-tabs', $html ); |
|
| 820 | - echo wp_kses_post( $html ); |
|
| 819 | + $html = str_replace('"tabs wc-tabs', '"nav nav-tabs wc-tabs', $html); |
|
| 820 | + echo wp_kses_post($html); |
|
| 821 | 821 | } |
| 822 | 822 | |
| 823 | 823 | /** |
| 824 | 824 | * Output the pagination. |
| 825 | 825 | */ |
| 826 | 826 | function woocommerce_pagination() { |
| 827 | - if ( ! wc_get_loop_prop( 'is_paginated' ) || ! woocommerce_products_will_display() ) { |
|
| 827 | + if ( ! wc_get_loop_prop('is_paginated') || ! woocommerce_products_will_display()) { |
|
| 828 | 828 | return; |
| 829 | 829 | } |
| 830 | 830 | $args = array( |
| 831 | - 'total' => wc_get_loop_prop( 'total_pages' ), |
|
| 832 | - 'current' => wc_get_loop_prop( 'current_page' ), |
|
| 831 | + 'total' => wc_get_loop_prop('total_pages'), |
|
| 832 | + 'current' => wc_get_loop_prop('current_page'), |
|
| 833 | 833 | ); |
| 834 | 834 | |
| 835 | - if ( wc_get_loop_prop( 'is_shortcode' ) ) { |
|
| 836 | - $args['base'] = esc_url_raw( add_query_arg( 'product-page', '%#%', false ) ); |
|
| 835 | + if (wc_get_loop_prop('is_shortcode')) { |
|
| 836 | + $args['base'] = esc_url_raw(add_query_arg('product-page', '%#%', false)); |
|
| 837 | 837 | $args['format'] = '?product-page = %#%'; |
| 838 | 838 | } else { |
| 839 | - $args['base'] = esc_url_raw( str_replace( 999999999, '%#%', remove_query_arg( 'add-to-cart', get_pagenum_link( 999999999, false ) ) ) ); |
|
| 839 | + $args['base'] = esc_url_raw(str_replace(999999999, '%#%', remove_query_arg('add-to-cart', get_pagenum_link(999999999, false)))); |
|
| 840 | 840 | $args['format'] = ''; |
| 841 | 841 | } |
| 842 | 842 | |
| 843 | - echo wp_kses_post( '<div class="lsx-pagination-wrapper">' ); |
|
| 844 | - $template = wc_get_template_html( 'loop/pagination.php', $args ); |
|
| 845 | - $template = str_replace( 'woocommerce-pagination', 'lsx-pagination', $template ); |
|
| 846 | - echo wp_kses_post( $template ); |
|
| 847 | - echo wp_kses_post( '</div>' ); |
|
| 843 | + echo wp_kses_post('<div class="lsx-pagination-wrapper">'); |
|
| 844 | + $template = wc_get_template_html('loop/pagination.php', $args); |
|
| 845 | + $template = str_replace('woocommerce-pagination', 'lsx-pagination', $template); |
|
| 846 | + echo wp_kses_post($template); |
|
| 847 | + echo wp_kses_post('</div>'); |
|
| 848 | 848 | } |
| 849 | 849 | |
| 850 | -function lsx_wc_pagination_args( $args ) { |
|
| 851 | - $args['prev_text'] = '<span class="meta-nav">←</span> ' . esc_html__( 'Previous', 'lsx' ); |
|
| 852 | - $args['next_text'] = esc_html__( 'Next', 'lsx' ) . ' <span class="meta-nav">→</span>'; |
|
| 853 | - $args['type'] = 'plain'; |
|
| 850 | +function lsx_wc_pagination_args($args) { |
|
| 851 | + $args['prev_text'] = '<span class="meta-nav">←</span> ' . esc_html__('Previous', 'lsx'); |
|
| 852 | + $args['next_text'] = esc_html__('Next', 'lsx') . ' <span class="meta-nav">→</span>'; |
|
| 853 | + $args['type'] = 'plain'; |
|
| 854 | 854 | return $args; |
| 855 | 855 | } |
| 856 | -add_filter( 'woocommerce_pagination_args', 'lsx_wc_pagination_args',10 ,1 ); |
|
| 856 | +add_filter('woocommerce_pagination_args', 'lsx_wc_pagination_args', 10, 1); |
|
| 857 | 857 | |
| 858 | 858 | |
| 859 | 859 | /** |
@@ -863,22 +863,22 @@ discard block |
||
| 863 | 863 | * |
| 864 | 864 | * @return array |
| 865 | 865 | */ |
| 866 | -function lsx_wc_product_widget_template( $located, $template_name ) { |
|
| 867 | - if ( 'content-widget-product.php' === $template_name || 'content-widget-review.php' === $template_name ) { |
|
| 866 | +function lsx_wc_product_widget_template($located, $template_name) { |
|
| 867 | + if ('content-widget-product.php' === $template_name || 'content-widget-review.php' === $template_name) { |
|
| 868 | 868 | |
| 869 | - $new_location = get_stylesheet_directory() .'/partials/' . $template_name; |
|
| 870 | - if ( file_exists( $new_location ) ) { |
|
| 869 | + $new_location = get_stylesheet_directory() . '/partials/' . $template_name; |
|
| 870 | + if (file_exists($new_location)) { |
|
| 871 | 871 | $located = $new_location; |
| 872 | 872 | } else { |
| 873 | - $new_location = get_parent_theme_file_path() .'/partials/' . $template_name; |
|
| 874 | - if ( file_exists( $new_location ) ) { |
|
| 873 | + $new_location = get_parent_theme_file_path() . '/partials/' . $template_name; |
|
| 874 | + if (file_exists($new_location)) { |
|
| 875 | 875 | $located = $new_location; |
| 876 | 876 | } |
| 877 | 877 | } |
| 878 | 878 | } |
| 879 | 879 | return $located; |
| 880 | 880 | } |
| 881 | -add_filter( 'wc_get_template', 'lsx_wc_product_widget_template',90 ,2 ); |
|
| 881 | +add_filter('wc_get_template', 'lsx_wc_product_widget_template', 90, 2); |
|
| 882 | 882 | /* |
| 883 | 883 | |
| 884 | 884 | */ |
@@ -6,7 +6,7 @@ discard block |
||
| 6 | 6 | * @subpackage extras |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 9 | +if ( ! defined('ABSPATH')) { |
|
| 10 | 10 | exit; |
| 11 | 11 | } |
| 12 | 12 | |
@@ -16,10 +16,10 @@ discard block |
||
| 16 | 16 | * @package lsx |
| 17 | 17 | * @subpackage extras |
| 18 | 18 | */ |
| 19 | -add_filter( 'widget_text', 'shortcode_unautop' ); |
|
| 20 | -add_filter( 'widget_text', 'do_shortcode' ); |
|
| 19 | +add_filter('widget_text', 'shortcode_unautop'); |
|
| 20 | +add_filter('widget_text', 'do_shortcode'); |
|
| 21 | 21 | |
| 22 | -if ( ! function_exists( 'lsx_kses_allowed_html' ) ) : |
|
| 22 | +if ( ! function_exists('lsx_kses_allowed_html')) : |
|
| 23 | 23 | |
| 24 | 24 | /** |
| 25 | 25 | * Enable extra attributes (srcset, sizes) in img tag. |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | * @package lsx |
| 28 | 28 | * @subpackage extras |
| 29 | 29 | */ |
| 30 | - function lsx_kses_allowed_html( $allowedtags, $context ) { |
|
| 30 | + function lsx_kses_allowed_html($allowedtags, $context) { |
|
| 31 | 31 | $allowedtags['img']['srcset'] = true; |
| 32 | 32 | $allowedtags['img']['sizes'] = true; |
| 33 | 33 | return $allowedtags; |
@@ -35,9 +35,9 @@ discard block |
||
| 35 | 35 | |
| 36 | 36 | endif; |
| 37 | 37 | |
| 38 | -add_filter( 'wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2 ); |
|
| 38 | +add_filter('wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2); |
|
| 39 | 39 | |
| 40 | -if ( ! function_exists( 'lsx_body_class' ) ) : |
|
| 40 | +if ( ! function_exists('lsx_body_class')) : |
|
| 41 | 41 | |
| 42 | 42 | /** |
| 43 | 43 | * Add and remove body_class() classes. |
@@ -45,44 +45,44 @@ discard block |
||
| 45 | 45 | * @package lsx |
| 46 | 46 | * @subpackage extras |
| 47 | 47 | */ |
| 48 | - function lsx_body_class( $classes ) { |
|
| 48 | + function lsx_body_class($classes) { |
|
| 49 | 49 | global $post; |
| 50 | 50 | |
| 51 | - $header_layout = get_theme_mod( 'lsx_header_layout', 'inline' ); |
|
| 51 | + $header_layout = get_theme_mod('lsx_header_layout', 'inline'); |
|
| 52 | 52 | $classes[] = 'header-' . $header_layout; |
| 53 | 53 | |
| 54 | - if ( isset( $post ) ) { |
|
| 54 | + if (isset($post)) { |
|
| 55 | 55 | $classes[] = $post->post_name; |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | - if ( ! class_exists( 'LSX_Banners' ) || ! empty( apply_filters( 'lsx_banner_plugin_disable', false ) ) ) { |
|
| 59 | - $post_types = array( 'page', 'post' ); |
|
| 60 | - $post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types ); |
|
| 58 | + if ( ! class_exists('LSX_Banners') || ! empty(apply_filters('lsx_banner_plugin_disable', false))) { |
|
| 59 | + $post_types = array('page', 'post'); |
|
| 60 | + $post_types = apply_filters('lsx_allowed_post_type_banners', $post_types); |
|
| 61 | 61 | |
| 62 | - if ( is_singular( $post_types ) && has_post_thumbnail() ) { |
|
| 62 | + if (is_singular($post_types) && has_post_thumbnail()) { |
|
| 63 | 63 | $classes[] = 'page-has-banner'; |
| 64 | 64 | } |
| 65 | 65 | } |
| 66 | 66 | |
| 67 | - if ( has_nav_menu( 'top-menu' ) || has_nav_menu( 'top-menu-left' ) ) { |
|
| 67 | + if (has_nav_menu('top-menu') || has_nav_menu('top-menu-left')) { |
|
| 68 | 68 | $classes[] = 'has-top-menu'; |
| 69 | 69 | } |
| 70 | 70 | |
| 71 | - $fixed_header = get_theme_mod( 'lsx_header_fixed', false ); |
|
| 71 | + $fixed_header = get_theme_mod('lsx_header_fixed', false); |
|
| 72 | 72 | |
| 73 | - if ( false !== $fixed_header ) { |
|
| 73 | + if (false !== $fixed_header) { |
|
| 74 | 74 | $classes[] = 'top-menu-fixed'; |
| 75 | 75 | } |
| 76 | 76 | |
| 77 | - $search_form = get_theme_mod( 'lsx_header_search', false ); |
|
| 77 | + $search_form = get_theme_mod('lsx_header_search', false); |
|
| 78 | 78 | |
| 79 | - if ( false !== $search_form ) { |
|
| 79 | + if (false !== $search_form) { |
|
| 80 | 80 | $classes[] = 'has-header-search'; |
| 81 | 81 | } |
| 82 | 82 | |
| 83 | - $preloader_content = get_theme_mod( 'lsx_preloader_content_status', false ); |
|
| 83 | + $preloader_content = get_theme_mod('lsx_preloader_content_status', false); |
|
| 84 | 84 | |
| 85 | - if ( false !== $preloader_content ) { |
|
| 85 | + if (false !== $preloader_content) { |
|
| 86 | 86 | $classes[] = 'preloader-content-enable'; |
| 87 | 87 | } |
| 88 | 88 | |
@@ -91,9 +91,9 @@ discard block |
||
| 91 | 91 | |
| 92 | 92 | endif; |
| 93 | 93 | |
| 94 | -add_filter( 'body_class', 'lsx_body_class' ); |
|
| 94 | +add_filter('body_class', 'lsx_body_class'); |
|
| 95 | 95 | |
| 96 | -if ( ! function_exists( 'lsx_embed_wrap' ) ) : |
|
| 96 | +if ( ! function_exists('lsx_embed_wrap')) : |
|
| 97 | 97 | |
| 98 | 98 | /** |
| 99 | 99 | * Wrap embedded media as suggested by Readability. |
@@ -104,8 +104,8 @@ discard block |
||
| 104 | 104 | * @link https://gist.github.com/965956 |
| 105 | 105 | * @link http://www.readability.com/publishers/guidelines#publisher |
| 106 | 106 | */ |
| 107 | - function lsx_embed_wrap( $cache, $url, $attr = '', $post_id = '' ) { |
|
| 108 | - if ( false !== strpos( $cache, '<iframe' ) ) { |
|
| 107 | + function lsx_embed_wrap($cache, $url, $attr = '', $post_id = '') { |
|
| 108 | + if (false !== strpos($cache, '<iframe')) { |
|
| 109 | 109 | return '<div class="entry-content-asset">' . $cache . '</div>'; |
| 110 | 110 | } |
| 111 | 111 | |
@@ -114,9 +114,9 @@ discard block |
||
| 114 | 114 | |
| 115 | 115 | endif; |
| 116 | 116 | |
| 117 | -add_filter( 'embed_oembed_html', 'lsx_embed_wrap', 10, 4 ); |
|
| 117 | +add_filter('embed_oembed_html', 'lsx_embed_wrap', 10, 4); |
|
| 118 | 118 | |
| 119 | -if ( ! function_exists( 'lsx_remove_self_closing_tags' ) ) : |
|
| 119 | +if ( ! function_exists('lsx_remove_self_closing_tags')) : |
|
| 120 | 120 | |
| 121 | 121 | /** |
| 122 | 122 | * Remove unnecessary self-closing tags. |
@@ -124,17 +124,17 @@ discard block |
||
| 124 | 124 | * @package lsx |
| 125 | 125 | * @subpackage extras |
| 126 | 126 | */ |
| 127 | - function lsx_remove_self_closing_tags( $input ) { |
|
| 128 | - return str_replace( ' />', '>', $input ); |
|
| 127 | + function lsx_remove_self_closing_tags($input) { |
|
| 128 | + return str_replace(' />', '>', $input); |
|
| 129 | 129 | } |
| 130 | 130 | |
| 131 | 131 | endif; |
| 132 | 132 | |
| 133 | -add_filter( 'get_avatar', 'lsx_remove_self_closing_tags' ); // <img /> |
|
| 134 | -add_filter( 'comment_id_fields', 'lsx_remove_self_closing_tags' ); // <input /> |
|
| 135 | -add_filter( 'post_thumbnail_html', 'lsx_remove_self_closing_tags' ); // <img /> |
|
| 133 | +add_filter('get_avatar', 'lsx_remove_self_closing_tags'); // <img /> |
|
| 134 | +add_filter('comment_id_fields', 'lsx_remove_self_closing_tags'); // <input /> |
|
| 135 | +add_filter('post_thumbnail_html', 'lsx_remove_self_closing_tags'); // <img /> |
|
| 136 | 136 | |
| 137 | -if ( ! function_exists( 'lsx_is_element_empty' ) ) : |
|
| 137 | +if ( ! function_exists('lsx_is_element_empty')) : |
|
| 138 | 138 | |
| 139 | 139 | /** |
| 140 | 140 | * Checks if a Nav $element is empty or not. |
@@ -142,14 +142,14 @@ discard block |
||
| 142 | 142 | * @package lsx |
| 143 | 143 | * @subpackage extras |
| 144 | 144 | */ |
| 145 | - function lsx_is_element_empty( $element ) { |
|
| 146 | - $element = trim( $element ); |
|
| 147 | - return empty( $element ) ? false : true; |
|
| 145 | + function lsx_is_element_empty($element) { |
|
| 146 | + $element = trim($element); |
|
| 147 | + return empty($element) ? false : true; |
|
| 148 | 148 | } |
| 149 | 149 | |
| 150 | 150 | endif; |
| 151 | 151 | |
| 152 | -if ( ! function_exists( 'lsx_get_thumbnail' ) ) : |
|
| 152 | +if ( ! function_exists('lsx_get_thumbnail')) : |
|
| 153 | 153 | |
| 154 | 154 | /** |
| 155 | 155 | * return the responsive images. |
@@ -157,44 +157,44 @@ discard block |
||
| 157 | 157 | * @package lsx |
| 158 | 158 | * @subpackage extras |
| 159 | 159 | */ |
| 160 | - function lsx_get_thumbnail( $size, $image_src = false ) { |
|
| 161 | - if ( false === $image_src ) { |
|
| 160 | + function lsx_get_thumbnail($size, $image_src = false) { |
|
| 161 | + if (false === $image_src) { |
|
| 162 | 162 | $post_id = get_the_ID(); |
| 163 | - $post_thumbnail_id = get_post_thumbnail_id( $post_id ); |
|
| 164 | - } elseif ( false !== $image_src ) { |
|
| 165 | - if ( is_numeric( $image_src ) ) { |
|
| 163 | + $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
| 164 | + } elseif (false !== $image_src) { |
|
| 165 | + if (is_numeric($image_src)) { |
|
| 166 | 166 | $post_thumbnail_id = $image_src; |
| 167 | 167 | } else { |
| 168 | - $post_thumbnail_id = lsx_get_attachment_id_from_src( $image_src ); |
|
| 168 | + $post_thumbnail_id = lsx_get_attachment_id_from_src($image_src); |
|
| 169 | 169 | } |
| 170 | 170 | } |
| 171 | 171 | |
| 172 | - $size = apply_filters( 'lsx_thumbnail_size', $size ); |
|
| 172 | + $size = apply_filters('lsx_thumbnail_size', $size); |
|
| 173 | 173 | $img = false; |
| 174 | 174 | |
| 175 | - if ( 'lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size ) { |
|
| 175 | + if ('lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size) { |
|
| 176 | 176 | $srcset = false; |
| 177 | - $img = wp_get_attachment_image_src( $post_thumbnail_id, $size ); |
|
| 177 | + $img = wp_get_attachment_image_src($post_thumbnail_id, $size); |
|
| 178 | 178 | $img = $img[0]; |
| 179 | 179 | } else { |
| 180 | 180 | $srcset = true; |
| 181 | - $img = wp_get_attachment_image_srcset( $post_thumbnail_id, $size ); |
|
| 181 | + $img = wp_get_attachment_image_srcset($post_thumbnail_id, $size); |
|
| 182 | 182 | |
| 183 | - if ( empty( $img ) ) { |
|
| 183 | + if (empty($img)) { |
|
| 184 | 184 | $srcset = false; |
| 185 | - $img = wp_get_attachment_image_src( $post_thumbnail_id, $size ); |
|
| 185 | + $img = wp_get_attachment_image_src($post_thumbnail_id, $size); |
|
| 186 | 186 | $img = $img[0]; |
| 187 | 187 | } |
| 188 | 188 | } |
| 189 | 189 | |
| 190 | - if ( ! empty( $img ) ) { |
|
| 191 | - if ( $srcset ) { |
|
| 192 | - $img = '<img alt="' . the_title_attribute( 'echo=0' ) . '" class="attachment-responsive wp-post-image lsx-responsive" srcset="' . esc_attr( $img ) . '" />'; |
|
| 190 | + if ( ! empty($img)) { |
|
| 191 | + if ($srcset) { |
|
| 192 | + $img = '<img alt="' . the_title_attribute('echo=0') . '" class="attachment-responsive wp-post-image lsx-responsive" srcset="' . esc_attr($img) . '" />'; |
|
| 193 | 193 | } else { |
| 194 | - $img = '<img alt="' . the_title_attribute( 'echo=0' ) . '" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url( $img ) . '" />'; |
|
| 194 | + $img = '<img alt="' . the_title_attribute('echo=0') . '" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url($img) . '" />'; |
|
| 195 | 195 | } |
| 196 | 196 | |
| 197 | - $img = apply_filters( 'lsx_lazyload_filter_images', $img ); |
|
| 197 | + $img = apply_filters('lsx_lazyload_filter_images', $img); |
|
| 198 | 198 | } |
| 199 | 199 | |
| 200 | 200 | return $img; |
@@ -202,7 +202,7 @@ discard block |
||
| 202 | 202 | |
| 203 | 203 | endif; |
| 204 | 204 | |
| 205 | -if ( ! function_exists( 'lsx_thumbnail' ) ) : |
|
| 205 | +if ( ! function_exists('lsx_thumbnail')) : |
|
| 206 | 206 | |
| 207 | 207 | /** |
| 208 | 208 | * Output the Resonsive Images. |
@@ -210,13 +210,13 @@ discard block |
||
| 210 | 210 | * @package lsx |
| 211 | 211 | * @subpackage extras |
| 212 | 212 | */ |
| 213 | - function lsx_thumbnail( $size = 'thumbnail', $image_src = false ) { |
|
| 214 | - echo wp_kses_post( lsx_get_thumbnail( $size, $image_src ) ); |
|
| 213 | + function lsx_thumbnail($size = 'thumbnail', $image_src = false) { |
|
| 214 | + echo wp_kses_post(lsx_get_thumbnail($size, $image_src)); |
|
| 215 | 215 | } |
| 216 | 216 | |
| 217 | 217 | endif; |
| 218 | 218 | |
| 219 | -if ( ! function_exists( 'lsx_get_attachment_id_from_src' ) ) : |
|
| 219 | +if ( ! function_exists('lsx_get_attachment_id_from_src')) : |
|
| 220 | 220 | |
| 221 | 221 | /** |
| 222 | 222 | * Gets the attachments ID from the src. |
@@ -224,13 +224,13 @@ discard block |
||
| 224 | 224 | * @package lsx |
| 225 | 225 | * @subpackage extras |
| 226 | 226 | */ |
| 227 | - function lsx_get_attachment_id_from_src( $image_src ) { |
|
| 228 | - $post_id = wp_cache_get( $image_src, 'lsx_get_attachment_id_from_src' ); |
|
| 227 | + function lsx_get_attachment_id_from_src($image_src) { |
|
| 228 | + $post_id = wp_cache_get($image_src, 'lsx_get_attachment_id_from_src'); |
|
| 229 | 229 | |
| 230 | - if ( false === $post_id ) { |
|
| 230 | + if (false === $post_id) { |
|
| 231 | 231 | global $wpdb; |
| 232 | - $post_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src ) ); |
|
| 233 | - wp_cache_set( $image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600 ); |
|
| 232 | + $post_id = $wpdb->get_var($wpdb->prepare("SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src)); |
|
| 233 | + wp_cache_set($image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600); |
|
| 234 | 234 | } |
| 235 | 235 | |
| 236 | 236 | return $post_id; |
@@ -238,7 +238,7 @@ discard block |
||
| 238 | 238 | |
| 239 | 239 | endif; |
| 240 | 240 | |
| 241 | -if ( ! function_exists( 'lsx_page_banner' ) ) : |
|
| 241 | +if ( ! function_exists('lsx_page_banner')) : |
|
| 242 | 242 | |
| 243 | 243 | /** |
| 244 | 244 | * Add Featured Image as Banner on Single Pages. |
@@ -247,26 +247,26 @@ discard block |
||
| 247 | 247 | * @subpackage extras |
| 248 | 248 | */ |
| 249 | 249 | function lsx_page_banner() { |
| 250 | - if ( true === apply_filters( 'lsx_page_banner_disable', false ) ) { |
|
| 250 | + if (true === apply_filters('lsx_page_banner_disable', false)) { |
|
| 251 | 251 | return; |
| 252 | 252 | } |
| 253 | 253 | |
| 254 | - $post_types = array( 'page', 'post' ); |
|
| 255 | - $post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types ); |
|
| 254 | + $post_types = array('page', 'post'); |
|
| 255 | + $post_types = apply_filters('lsx_allowed_post_type_banners', $post_types); |
|
| 256 | 256 | |
| 257 | - if ( is_singular( $post_types ) && has_post_thumbnail() ) : |
|
| 257 | + if (is_singular($post_types) && has_post_thumbnail()) : |
|
| 258 | 258 | $bg_image = ''; |
| 259 | 259 | |
| 260 | - if ( has_post_thumbnail() ) { |
|
| 261 | - $bg_image = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'full' ); |
|
| 260 | + if (has_post_thumbnail()) { |
|
| 261 | + $bg_image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), 'full'); |
|
| 262 | 262 | $bg_image = $bg_image[0]; |
| 263 | 263 | } |
| 264 | 264 | |
| 265 | - if ( ! empty( $bg_image ) ) : |
|
| 265 | + if ( ! empty($bg_image)) : |
|
| 266 | 266 | ?> |
| 267 | 267 | <div class="page-banner-wrap"> |
| 268 | 268 | <div class="page-banner"> |
| 269 | - <div class="page-banner-image" style="background-image:url(<?php echo esc_attr( $bg_image ); ?>);"></div> |
|
| 269 | + <div class="page-banner-image" style="background-image:url(<?php echo esc_attr($bg_image); ?>);"></div> |
|
| 270 | 270 | |
| 271 | 271 | <div class="container"> |
| 272 | 272 | <header class="page-header"> |
@@ -285,9 +285,9 @@ discard block |
||
| 285 | 285 | |
| 286 | 286 | endif; |
| 287 | 287 | |
| 288 | -add_action( 'lsx_header_after', 'lsx_page_banner' ); |
|
| 288 | +add_action('lsx_header_after', 'lsx_page_banner'); |
|
| 289 | 289 | |
| 290 | -if ( ! function_exists( 'lsx_form_submit_button' ) ) : |
|
| 290 | +if ( ! function_exists('lsx_form_submit_button')) : |
|
| 291 | 291 | |
| 292 | 292 | /** |
| 293 | 293 | * filter the Gravity Forms button type. |
@@ -299,15 +299,15 @@ discard block |
||
| 299 | 299 | * @param $form Object |
| 300 | 300 | * @return String |
| 301 | 301 | */ |
| 302 | - function lsx_form_submit_button( $button, $form ) { |
|
| 302 | + function lsx_form_submit_button($button, $form) { |
|
| 303 | 303 | return "<button class='btn btn-primary' id='gform_submit_button_{$form["id"]}'><span>Submit</span></button>"; |
| 304 | 304 | } |
| 305 | 305 | |
| 306 | 306 | endif; |
| 307 | 307 | |
| 308 | -add_filter( 'gform_submit_button', 'lsx_form_submit_button', 10, 2 ); |
|
| 308 | +add_filter('gform_submit_button', 'lsx_form_submit_button', 10, 2); |
|
| 309 | 309 | |
| 310 | -if ( ! function_exists( 'lsx_excerpt_more' ) ) : |
|
| 310 | +if ( ! function_exists('lsx_excerpt_more')) : |
|
| 311 | 311 | |
| 312 | 312 | /** |
| 313 | 313 | * Replaces the excerpt "more" text by a link. |
@@ -315,15 +315,15 @@ discard block |
||
| 315 | 315 | * @package lsx |
| 316 | 316 | * @subpackage extras |
| 317 | 317 | */ |
| 318 | - function lsx_excerpt_more( $more ) { |
|
| 318 | + function lsx_excerpt_more($more) { |
|
| 319 | 319 | return '...'; |
| 320 | 320 | } |
| 321 | 321 | |
| 322 | 322 | endif; |
| 323 | 323 | |
| 324 | -add_filter( 'excerpt_more', 'lsx_excerpt_more' ); |
|
| 324 | +add_filter('excerpt_more', 'lsx_excerpt_more'); |
|
| 325 | 325 | |
| 326 | -if ( ! function_exists( 'lsx_the_excerpt_filter' ) ) : |
|
| 326 | +if ( ! function_exists('lsx_the_excerpt_filter')) : |
|
| 327 | 327 | |
| 328 | 328 | /** |
| 329 | 329 | * Add a continue reading link to the excerpt. |
@@ -331,7 +331,7 @@ discard block |
||
| 331 | 331 | * @package lsx |
| 332 | 332 | * @subpackage extras |
| 333 | 333 | */ |
| 334 | - function lsx_the_excerpt_filter( $excerpt ) { |
|
| 334 | + function lsx_the_excerpt_filter($excerpt) { |
|
| 335 | 335 | |
| 336 | 336 | $post_formats = array( |
| 337 | 337 | 'aside' => 'aside', |
@@ -344,23 +344,23 @@ discard block |
||
| 344 | 344 | 'audio' => 'audio', |
| 345 | 345 | ); |
| 346 | 346 | |
| 347 | - $show_full_content = has_post_format( apply_filters( 'lsx_the_excerpt_filter_post_types', $post_formats ) ); |
|
| 347 | + $show_full_content = has_post_format(apply_filters('lsx_the_excerpt_filter_post_types', $post_formats)); |
|
| 348 | 348 | |
| 349 | - if ( ! $show_full_content ) { |
|
| 350 | - if ( '' !== $excerpt && ! stristr( $excerpt, 'moretag' ) ) { |
|
| 351 | - $pagination = wp_link_pages( array( |
|
| 349 | + if ( ! $show_full_content) { |
|
| 350 | + if ('' !== $excerpt && ! stristr($excerpt, 'moretag')) { |
|
| 351 | + $pagination = wp_link_pages(array( |
|
| 352 | 352 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
| 353 | 353 | 'after' => '</div></div>', |
| 354 | 354 | 'link_before' => '<span>', |
| 355 | 355 | 'link_after' => '</span>', |
| 356 | 356 | 'echo' => 0, |
| 357 | - ) ); |
|
| 357 | + )); |
|
| 358 | 358 | |
| 359 | - if ( ! empty( $pagination ) ) { |
|
| 359 | + if ( ! empty($pagination)) { |
|
| 360 | 360 | $excerpt .= $pagination; |
| 361 | 361 | } else { |
| 362 | - $excerpt_more = '<p><a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'Continue reading', 'lsx' ) . '</a></p>'; |
|
| 363 | - $excerpt .= apply_filters( 'excerpt_more_p', $excerpt_more ); |
|
| 362 | + $excerpt_more = '<p><a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('Continue reading', 'lsx') . '</a></p>'; |
|
| 363 | + $excerpt .= apply_filters('excerpt_more_p', $excerpt_more); |
|
| 364 | 364 | } |
| 365 | 365 | } |
| 366 | 366 | } |
@@ -370,9 +370,9 @@ discard block |
||
| 370 | 370 | |
| 371 | 371 | endif; |
| 372 | 372 | |
| 373 | -add_filter( 'the_excerpt', 'lsx_the_excerpt_filter' , 1 , 20 ); |
|
| 373 | +add_filter('the_excerpt', 'lsx_the_excerpt_filter', 1, 20); |
|
| 374 | 374 | |
| 375 | -if ( ! function_exists( 'lsx_custom_wp_trim_excerpt' ) ) : |
|
| 375 | +if ( ! function_exists('lsx_custom_wp_trim_excerpt')) : |
|
| 376 | 376 | |
| 377 | 377 | /** |
| 378 | 378 | * Allow HTML tags in excerpt. |
@@ -380,12 +380,12 @@ discard block |
||
| 380 | 380 | * @package lsx |
| 381 | 381 | * @subpackage extras |
| 382 | 382 | */ |
| 383 | - function lsx_custom_wp_trim_excerpt( $wpse_excerpt ) { |
|
| 383 | + function lsx_custom_wp_trim_excerpt($wpse_excerpt) { |
|
| 384 | 384 | global $post; |
| 385 | 385 | $raw_excerpt = $wpse_excerpt; |
| 386 | 386 | |
| 387 | - if ( empty( $wpse_excerpt ) ) { |
|
| 388 | - $wpse_excerpt = get_the_content( '' ); |
|
| 387 | + if (empty($wpse_excerpt)) { |
|
| 388 | + $wpse_excerpt = get_the_content(''); |
|
| 389 | 389 | |
| 390 | 390 | $post_formats = array( |
| 391 | 391 | 'aside' => 'aside', |
@@ -398,27 +398,27 @@ discard block |
||
| 398 | 398 | 'audio' => 'audio', |
| 399 | 399 | ); |
| 400 | 400 | |
| 401 | - $show_full_content = has_post_format( apply_filters( 'lsx_excerpt_read_more_post_formats', $post_formats ) ); |
|
| 401 | + $show_full_content = has_post_format(apply_filters('lsx_excerpt_read_more_post_formats', $post_formats)); |
|
| 402 | 402 | |
| 403 | - if ( ! $show_full_content ) { |
|
| 404 | - $wpse_excerpt = strip_shortcodes( $wpse_excerpt ); |
|
| 405 | - $wpse_excerpt = apply_filters( 'the_content', $wpse_excerpt ); |
|
| 406 | - $wpse_excerpt = str_replace( ']]>', ']]>', $wpse_excerpt ); |
|
| 407 | - $wpse_excerpt = strip_tags( $wpse_excerpt, apply_filters( 'excerpt_strip_tags', '<h1>,<h2>,<h3>,<h4>,<h5>,<h6>,<a>,<button>,<blockquote>,<p>,<br>,<b>,<strong>,<i>,<u>,<ul>,<ol>,<li>,<span>,<div>' ) ); |
|
| 403 | + if ( ! $show_full_content) { |
|
| 404 | + $wpse_excerpt = strip_shortcodes($wpse_excerpt); |
|
| 405 | + $wpse_excerpt = apply_filters('the_content', $wpse_excerpt); |
|
| 406 | + $wpse_excerpt = str_replace(']]>', ']]>', $wpse_excerpt); |
|
| 407 | + $wpse_excerpt = strip_tags($wpse_excerpt, apply_filters('excerpt_strip_tags', '<h1>,<h2>,<h3>,<h4>,<h5>,<h6>,<a>,<button>,<blockquote>,<p>,<br>,<b>,<strong>,<i>,<u>,<ul>,<ol>,<li>,<span>,<div>')); |
|
| 408 | 408 | |
| 409 | 409 | $excerpt_word_count = 50; |
| 410 | - $excerpt_word_count = apply_filters( 'excerpt_length', $excerpt_word_count ); |
|
| 410 | + $excerpt_word_count = apply_filters('excerpt_length', $excerpt_word_count); |
|
| 411 | 411 | |
| 412 | 412 | $tokens = array(); |
| 413 | 413 | $excerpt_output = ''; |
| 414 | 414 | $has_more = false; |
| 415 | 415 | $count = 0; |
| 416 | 416 | |
| 417 | - preg_match_all( '/(<[^>]+>|[^<>\s]+)\s*/u', $wpse_excerpt, $tokens ); |
|
| 417 | + preg_match_all('/(<[^>]+>|[^<>\s]+)\s*/u', $wpse_excerpt, $tokens); |
|
| 418 | 418 | |
| 419 | - foreach ( $tokens[0] as $token ) { |
|
| 420 | - if ( $count >= $excerpt_word_count ) { |
|
| 421 | - $excerpt_output .= trim( $token ); |
|
| 419 | + foreach ($tokens[0] as $token) { |
|
| 420 | + if ($count >= $excerpt_word_count) { |
|
| 421 | + $excerpt_output .= trim($token); |
|
| 422 | 422 | $has_more = true; |
| 423 | 423 | break; |
| 424 | 424 | } |
@@ -427,41 +427,41 @@ discard block |
||
| 427 | 427 | $excerpt_output .= $token; |
| 428 | 428 | } |
| 429 | 429 | |
| 430 | - $wpse_excerpt = trim( force_balance_tags( $excerpt_output ) ); |
|
| 430 | + $wpse_excerpt = trim(force_balance_tags($excerpt_output)); |
|
| 431 | 431 | |
| 432 | - if ( $has_more ) { |
|
| 433 | - $excerpt_end = '<a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'More', 'lsx' ) . '</a>'; |
|
| 434 | - $excerpt_end = apply_filters( 'excerpt_more', ' ' . $excerpt_end ); |
|
| 432 | + if ($has_more) { |
|
| 433 | + $excerpt_end = '<a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('More', 'lsx') . '</a>'; |
|
| 434 | + $excerpt_end = apply_filters('excerpt_more', ' ' . $excerpt_end); |
|
| 435 | 435 | |
| 436 | - $pos = strrpos( $wpse_excerpt, '</' ); |
|
| 436 | + $pos = strrpos($wpse_excerpt, '</'); |
|
| 437 | 437 | |
| 438 | - if ( false !== $pos ) { |
|
| 438 | + if (false !== $pos) { |
|
| 439 | 439 | // Inside last HTML tag |
| 440 | - $wpse_excerpt = substr_replace( $wpse_excerpt, $excerpt_end, $pos, 0 ); /* Add read more next to last word */ |
|
| 440 | + $wpse_excerpt = substr_replace($wpse_excerpt, $excerpt_end, $pos, 0); /* Add read more next to last word */ |
|
| 441 | 441 | } else { |
| 442 | 442 | // After the content |
| 443 | 443 | $wpse_excerpt .= $excerpt_end; /*Add read more in new paragraph */ |
| 444 | 444 | } |
| 445 | 445 | } |
| 446 | 446 | } else { |
| 447 | - $wpse_excerpt = apply_filters( 'the_content', $wpse_excerpt ); |
|
| 448 | - $wpse_excerpt = str_replace( ']]>', ']]>', $wpse_excerpt ); |
|
| 447 | + $wpse_excerpt = apply_filters('the_content', $wpse_excerpt); |
|
| 448 | + $wpse_excerpt = str_replace(']]>', ']]>', $wpse_excerpt); |
|
| 449 | 449 | //$wpse_excerpt = strip_tags( $wpse_excerpt, '<blockquote>,<p>' ); |
| 450 | - $wpse_excerpt = trim( force_balance_tags( $wpse_excerpt ) ); |
|
| 450 | + $wpse_excerpt = trim(force_balance_tags($wpse_excerpt)); |
|
| 451 | 451 | } |
| 452 | 452 | |
| 453 | 453 | return $wpse_excerpt; |
| 454 | 454 | } |
| 455 | 455 | |
| 456 | - return apply_filters( 'lsx_custom_wp_trim_excerpt', $wpse_excerpt, $raw_excerpt ); |
|
| 456 | + return apply_filters('lsx_custom_wp_trim_excerpt', $wpse_excerpt, $raw_excerpt); |
|
| 457 | 457 | } |
| 458 | 458 | |
| 459 | 459 | endif; |
| 460 | 460 | |
| 461 | -remove_filter( 'get_the_excerpt', 'wp_trim_excerpt' ); |
|
| 462 | -add_filter( 'get_the_excerpt', 'lsx_custom_wp_trim_excerpt' ); |
|
| 461 | +remove_filter('get_the_excerpt', 'wp_trim_excerpt'); |
|
| 462 | +add_filter('get_the_excerpt', 'lsx_custom_wp_trim_excerpt'); |
|
| 463 | 463 | |
| 464 | -if ( ! function_exists( 'lsx_full_width_widget_classes' ) ) : |
|
| 464 | +if ( ! function_exists('lsx_full_width_widget_classes')) : |
|
| 465 | 465 | |
| 466 | 466 | /** |
| 467 | 467 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -469,8 +469,8 @@ discard block |
||
| 469 | 469 | * @package lsx |
| 470 | 470 | * @subpackage extras |
| 471 | 471 | */ |
| 472 | - function lsx_full_width_widget_classes( $params ) { |
|
| 473 | - if ( is_admin() ) { |
|
| 472 | + function lsx_full_width_widget_classes($params) { |
|
| 473 | + if (is_admin()) { |
|
| 474 | 474 | return $params; |
| 475 | 475 | } |
| 476 | 476 | |
@@ -479,9 +479,9 @@ discard block |
||
| 479 | 479 | $widget_id = $params[0]['widget_id']; |
| 480 | 480 | $widget_name = $params[0]['widget_name']; |
| 481 | 481 | |
| 482 | - if ( 'Text' === $widget_name ) { |
|
| 483 | - $wp_registered_widgets[ $widget_id ]['original_callback'] = $wp_registered_widgets[ $widget_id ]['callback']; |
|
| 484 | - $wp_registered_widgets[ $widget_id ]['callback'] = 'lsx_full_width_widget_custom_callback'; |
|
| 482 | + if ('Text' === $widget_name) { |
|
| 483 | + $wp_registered_widgets[$widget_id]['original_callback'] = $wp_registered_widgets[$widget_id]['callback']; |
|
| 484 | + $wp_registered_widgets[$widget_id]['callback'] = 'lsx_full_width_widget_custom_callback'; |
|
| 485 | 485 | } |
| 486 | 486 | |
| 487 | 487 | return $params; |
@@ -489,9 +489,9 @@ discard block |
||
| 489 | 489 | |
| 490 | 490 | endif; |
| 491 | 491 | |
| 492 | -add_filter( 'dynamic_sidebar_params', 'lsx_full_width_widget_classes' ); |
|
| 492 | +add_filter('dynamic_sidebar_params', 'lsx_full_width_widget_classes'); |
|
| 493 | 493 | |
| 494 | -if ( ! function_exists( 'lsx_full_width_widget_custom_callback' ) ) : |
|
| 494 | +if ( ! function_exists('lsx_full_width_widget_custom_callback')) : |
|
| 495 | 495 | |
| 496 | 496 | /** |
| 497 | 497 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -505,25 +505,25 @@ discard block |
||
| 505 | 505 | $original_callback_params = func_get_args(); |
| 506 | 506 | $widget_id = $original_callback_params[0]['widget_id']; |
| 507 | 507 | |
| 508 | - $original_callback = $wp_registered_widgets[ $widget_id ]['original_callback']; |
|
| 509 | - $wp_registered_widgets[ $widget_id ]['callback'] = $original_callback; |
|
| 508 | + $original_callback = $wp_registered_widgets[$widget_id]['original_callback']; |
|
| 509 | + $wp_registered_widgets[$widget_id]['callback'] = $original_callback; |
|
| 510 | 510 | |
| 511 | - $widget_id_base = $wp_registered_widgets[ $widget_id ]['callback'][0]->id_base; |
|
| 511 | + $widget_id_base = $wp_registered_widgets[$widget_id]['callback'][0]->id_base; |
|
| 512 | 512 | |
| 513 | 513 | $widget_classname = ''; |
| 514 | 514 | |
| 515 | - if ( is_callable( $original_callback ) ) { |
|
| 515 | + if (is_callable($original_callback)) { |
|
| 516 | 516 | ob_start(); |
| 517 | - call_user_func_array( $original_callback, $original_callback_params ); |
|
| 517 | + call_user_func_array($original_callback, $original_callback_params); |
|
| 518 | 518 | $widget_output = ob_get_clean(); |
| 519 | 519 | |
| 520 | - echo wp_kses_post( apply_filters( 'lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id ) ); |
|
| 520 | + echo wp_kses_post(apply_filters('lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id)); |
|
| 521 | 521 | } |
| 522 | 522 | } |
| 523 | 523 | |
| 524 | 524 | endif; |
| 525 | 525 | |
| 526 | -if ( ! function_exists( 'lsx_full_width_widget_output' ) ) : |
|
| 526 | +if ( ! function_exists('lsx_full_width_widget_output')) : |
|
| 527 | 527 | |
| 528 | 528 | /** |
| 529 | 529 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -531,12 +531,12 @@ discard block |
||
| 531 | 531 | * @package lsx |
| 532 | 532 | * @subpackage extras |
| 533 | 533 | */ |
| 534 | - function lsx_full_width_widget_output( $widget_output, $widget_id_base, $widget_id ) { |
|
| 535 | - if ( 'text' === $widget_id_base ) { |
|
| 536 | - if ( false !== strpos( $widget_output, '<div class="lsx-full-width-alt">' ) ) { |
|
| 537 | - $widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output ); |
|
| 538 | - } elseif ( false !== strpos( $widget_output, '<div class="lsx-full-width">' ) ) { |
|
| 539 | - $widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output ); |
|
| 534 | + function lsx_full_width_widget_output($widget_output, $widget_id_base, $widget_id) { |
|
| 535 | + if ('text' === $widget_id_base) { |
|
| 536 | + if (false !== strpos($widget_output, '<div class="lsx-full-width-alt">')) { |
|
| 537 | + $widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output); |
|
| 538 | + } elseif (false !== strpos($widget_output, '<div class="lsx-full-width">')) { |
|
| 539 | + $widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output); |
|
| 540 | 540 | } |
| 541 | 541 | } |
| 542 | 542 | |
@@ -545,13 +545,13 @@ discard block |
||
| 545 | 545 | |
| 546 | 546 | endif; |
| 547 | 547 | |
| 548 | -add_filter( 'lsx_widget_output', 'lsx_full_width_widget_output', 10, 3 ); |
|
| 548 | +add_filter('lsx_widget_output', 'lsx_full_width_widget_output', 10, 3); |
|
| 549 | 549 | |
| 550 | 550 | /** |
| 551 | 551 | * Check if the content has a restricted post format that needs to show a full excerpt. |
| 552 | 552 | */ |
| 553 | 553 | function lsx_post_format_force_content_on_list() { |
| 554 | - $post_formats = apply_filters( 'lsx_post_format_force_content_on_list', |
|
| 554 | + $post_formats = apply_filters('lsx_post_format_force_content_on_list', |
|
| 555 | 555 | array( |
| 556 | 556 | 'video' => 'video', |
| 557 | 557 | 'audio' => 'audio', |
@@ -560,7 +560,7 @@ discard block |
||
| 560 | 560 | ) |
| 561 | 561 | ); |
| 562 | 562 | $return = false; |
| 563 | - if ( ! has_post_format( $post_formats ) ) { |
|
| 563 | + if ( ! has_post_format($post_formats)) { |
|
| 564 | 564 | $return = true; |
| 565 | 565 | } |
| 566 | 566 | return $return; |
@@ -569,10 +569,10 @@ discard block |
||
| 569 | 569 | /** |
| 570 | 570 | * Remove the Hentry Class Every |
| 571 | 571 | */ |
| 572 | -function lsx_remove_hentry( $classes ) { |
|
| 573 | - if ( 'post' !== get_post_type() ) { |
|
| 574 | - $classes = array_diff( $classes, array( 'hentry' ) ); |
|
| 572 | +function lsx_remove_hentry($classes) { |
|
| 573 | + if ('post' !== get_post_type()) { |
|
| 574 | + $classes = array_diff($classes, array('hentry')); |
|
| 575 | 575 | } |
| 576 | 576 | return $classes; |
| 577 | 577 | } |
| 578 | -add_filter( 'post_class','lsx_remove_hentry' ); |
|
| 578 | +add_filter('post_class', 'lsx_remove_hentry'); |
|