@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage layout |
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,14 +19,14 @@ discard block |
||
19 | 19 | * @subpackage woocommerce |
20 | 20 | */ |
21 | 21 | function lsx_wc_support() { |
22 | - add_theme_support( 'woocommerce' ); |
|
22 | + add_theme_support('woocommerce'); |
|
23 | 23 | } |
24 | 24 | |
25 | - add_action( 'after_setup_theme', 'lsx_wc_support' ); |
|
25 | + add_action('after_setup_theme', 'lsx_wc_support'); |
|
26 | 26 | |
27 | 27 | endif; |
28 | 28 | |
29 | -if ( ! function_exists( 'lsx_wc_scripts_add_styles' ) ) : |
|
29 | +if ( ! function_exists('lsx_wc_scripts_add_styles')) : |
|
30 | 30 | |
31 | 31 | /** |
32 | 32 | * WooCommerce enqueue styles. |
@@ -35,23 +35,23 @@ discard block |
||
35 | 35 | * @subpackage woocommerce |
36 | 36 | */ |
37 | 37 | function lsx_wc_scripts_add_styles() { |
38 | - wp_enqueue_style( 'woocommerce-lsx', get_template_directory_uri() . '/assets/css/woocommerce.css', array( 'lsx_main' ), LSX_VERSION ); |
|
39 | - wp_style_add_data( 'woocommerce-lsx', 'rtl', 'replace' ); |
|
38 | + wp_enqueue_style('woocommerce-lsx', get_template_directory_uri() . '/assets/css/woocommerce.css', array('lsx_main'), LSX_VERSION); |
|
39 | + wp_style_add_data('woocommerce-lsx', 'rtl', 'replace'); |
|
40 | 40 | |
41 | 41 | // Remove select2 added by WooCommerce |
42 | 42 | |
43 | - wp_dequeue_style( 'select2' ); |
|
44 | - wp_deregister_style( 'select2' ); |
|
43 | + wp_dequeue_style('select2'); |
|
44 | + wp_deregister_style('select2'); |
|
45 | 45 | |
46 | - wp_dequeue_script( 'select2' ); |
|
47 | - wp_deregister_script( 'select2' ); |
|
46 | + wp_dequeue_script('select2'); |
|
47 | + wp_deregister_script('select2'); |
|
48 | 48 | } |
49 | 49 | |
50 | - add_action( 'wp_enqueue_scripts', 'lsx_wc_scripts_add_styles' ); |
|
50 | + add_action('wp_enqueue_scripts', 'lsx_wc_scripts_add_styles'); |
|
51 | 51 | |
52 | 52 | endif; |
53 | 53 | |
54 | -if ( ! function_exists( 'lsx_wc_form_field_args' ) ) : |
|
54 | +if ( ! function_exists('lsx_wc_form_field_args')) : |
|
55 | 55 | |
56 | 56 | /** |
57 | 57 | * WooCommerce form fields. |
@@ -59,17 +59,17 @@ discard block |
||
59 | 59 | * @package lsx |
60 | 60 | * @subpackage woocommerce |
61 | 61 | */ |
62 | - function lsx_wc_form_field_args( $args, $key, $value ) { |
|
62 | + function lsx_wc_form_field_args($args, $key, $value) { |
|
63 | 63 | $args['input_class'][] = 'form-control'; |
64 | 64 | |
65 | 65 | return $args; |
66 | 66 | } |
67 | 67 | |
68 | - add_action( 'woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3 ); |
|
68 | + add_action('woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3); |
|
69 | 69 | |
70 | 70 | endif; |
71 | 71 | |
72 | -if ( ! function_exists( 'lsx_wc_theme_wrapper_start' ) ) : |
|
72 | +if ( ! function_exists('lsx_wc_theme_wrapper_start')) : |
|
73 | 73 | |
74 | 74 | /** |
75 | 75 | * WooCommerce wrapper start. |
@@ -85,12 +85,12 @@ discard block |
||
85 | 85 | lsx_content_top(); |
86 | 86 | } |
87 | 87 | |
88 | - remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 ); |
|
89 | - add_action( 'woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start' ); |
|
88 | + remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10); |
|
89 | + add_action('woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start'); |
|
90 | 90 | |
91 | 91 | endif; |
92 | 92 | |
93 | -if ( ! function_exists( 'lsx_wc_theme_wrapper_end' ) ) : |
|
93 | +if ( ! function_exists('lsx_wc_theme_wrapper_end')) : |
|
94 | 94 | |
95 | 95 | /** |
96 | 96 | * WooCommerce wrapper end. |
@@ -106,12 +106,12 @@ discard block |
||
106 | 106 | lsx_content_wrap_after(); |
107 | 107 | } |
108 | 108 | |
109 | - remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 ); |
|
110 | - add_action( 'woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end' ); |
|
109 | + remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10); |
|
110 | + add_action('woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end'); |
|
111 | 111 | |
112 | 112 | endif; |
113 | 113 | |
114 | -if ( ! function_exists( 'lsx_wc_disable_lsx_banner_plugin' ) ) : |
|
114 | +if ( ! function_exists('lsx_wc_disable_lsx_banner_plugin')) : |
|
115 | 115 | |
116 | 116 | /** |
117 | 117 | * Disable LSX Banners plugin in some WC pages. |
@@ -119,19 +119,19 @@ discard block |
||
119 | 119 | * @package lsx |
120 | 120 | * @subpackage woocommerce |
121 | 121 | */ |
122 | - function lsx_wc_disable_lsx_banner_plugin( $disabled ) { |
|
123 | - if ( is_cart() || is_checkout() || is_account_page() ) { |
|
122 | + function lsx_wc_disable_lsx_banner_plugin($disabled) { |
|
123 | + if (is_cart() || is_checkout() || is_account_page()) { |
|
124 | 124 | $disabled = true; |
125 | 125 | } |
126 | 126 | |
127 | 127 | return $disabled; |
128 | 128 | } |
129 | 129 | |
130 | - add_filter( 'lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin' ); |
|
130 | + add_filter('lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin'); |
|
131 | 131 | |
132 | 132 | endif; |
133 | 133 | |
134 | -if ( ! function_exists( 'lsx_wc_disable_lsx_banner' ) ) : |
|
134 | +if ( ! function_exists('lsx_wc_disable_lsx_banner')) : |
|
135 | 135 | |
136 | 136 | /** |
137 | 137 | * Disable LSX Banners banner in some WC pages. |
@@ -139,19 +139,19 @@ discard block |
||
139 | 139 | * @package lsx |
140 | 140 | * @subpackage woocommerce |
141 | 141 | */ |
142 | - function lsx_wc_disable_lsx_banner( $disabled ) { |
|
143 | - if ( is_shop() || is_product_category() || is_product_tag() || is_product() ) { |
|
142 | + function lsx_wc_disable_lsx_banner($disabled) { |
|
143 | + if (is_shop() || is_product_category() || is_product_tag() || is_product()) { |
|
144 | 144 | $disabled = true; |
145 | 145 | } |
146 | 146 | |
147 | 147 | return $disabled; |
148 | 148 | } |
149 | 149 | |
150 | - add_filter( 'lsx_banner_disable', 'lsx_wc_disable_lsx_banner' ); |
|
150 | + add_filter('lsx_banner_disable', 'lsx_wc_disable_lsx_banner'); |
|
151 | 151 | |
152 | 152 | endif; |
153 | 153 | |
154 | -if ( ! function_exists( 'lsx_wc_add_cart' ) ) : |
|
154 | +if ( ! function_exists('lsx_wc_add_cart')) : |
|
155 | 155 | |
156 | 156 | /** |
157 | 157 | * Adds WC cart to the header. |
@@ -159,25 +159,25 @@ discard block |
||
159 | 159 | * @package lsx |
160 | 160 | * @subpackage template-tags |
161 | 161 | */ |
162 | - function lsx_wc_add_cart( $items, $args ) { |
|
163 | - if ( 'primary' === $args->theme_location ) { |
|
164 | - $customizer_option = get_theme_mod( 'lsx_header_wc_cart', false ); |
|
162 | + function lsx_wc_add_cart($items, $args) { |
|
163 | + if ('primary' === $args->theme_location) { |
|
164 | + $customizer_option = get_theme_mod('lsx_header_wc_cart', false); |
|
165 | 165 | |
166 | - if ( ! empty( $customizer_option ) ) { |
|
166 | + if ( ! empty($customizer_option)) { |
|
167 | 167 | ob_start(); |
168 | - the_widget( 'WC_Widget_Cart', 'title=' ); |
|
168 | + the_widget('WC_Widget_Cart', 'title='); |
|
169 | 169 | $widget = ob_get_clean(); |
170 | 170 | |
171 | - if ( is_cart() ) { |
|
171 | + if (is_cart()) { |
|
172 | 172 | $class = 'current-menu-item'; |
173 | 173 | } else { |
174 | 174 | $class = ''; |
175 | 175 | } |
176 | 176 | |
177 | 177 | $item = '<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children dropdown lsx-wc-cart-menu-item ' . $class . '">' . |
178 | - '<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">' . |
|
178 | + '<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">' . |
|
179 | 179 | /* Translators: %s: items quantity */ |
180 | - '<span class="lsx-wc-cart-amount">' . wp_kses_data( WC()->cart->get_cart_subtotal() ) . '</span> <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>' . |
|
180 | + '<span class="lsx-wc-cart-amount">' . wp_kses_data(WC()->cart->get_cart_subtotal()) . '</span> <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>' . |
|
181 | 181 | '</a>' . |
182 | 182 | '<ul role="menu" class=" dropdown-menu lsx-wc-cart-sub-menu">' . |
183 | 183 | '<li>' . |
@@ -193,11 +193,11 @@ discard block |
||
193 | 193 | return $items; |
194 | 194 | } |
195 | 195 | |
196 | - add_filter( 'wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2 ); |
|
196 | + add_filter('wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2); |
|
197 | 197 | |
198 | 198 | endif; |
199 | 199 | |
200 | -if ( ! function_exists( 'lsx_wc_products_widget_wrapper_before' ) ) : |
|
200 | +if ( ! function_exists('lsx_wc_products_widget_wrapper_before')) : |
|
201 | 201 | |
202 | 202 | /** |
203 | 203 | * Change WC products widget wrapper (before). |
@@ -205,16 +205,16 @@ discard block |
||
205 | 205 | * @package lsx |
206 | 206 | * @subpackage woocommerce |
207 | 207 | */ |
208 | - function lsx_wc_products_widget_wrapper_before( $html ) { |
|
208 | + function lsx_wc_products_widget_wrapper_before($html) { |
|
209 | 209 | $html = '<div class="lsx-woocommerce-slider lsx-woocommerce-shortcode">'; |
210 | 210 | return $html; |
211 | 211 | } |
212 | 212 | |
213 | - add_filter( 'woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15 ); |
|
213 | + add_filter('woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15); |
|
214 | 214 | |
215 | 215 | endif; |
216 | 216 | |
217 | -if ( ! function_exists( 'lsx_wc_products_widget_wrapper_after' ) ) : |
|
217 | +if ( ! function_exists('lsx_wc_products_widget_wrapper_after')) : |
|
218 | 218 | |
219 | 219 | /** |
220 | 220 | * Change WC products widget wrapper (after). |
@@ -222,16 +222,16 @@ discard block |
||
222 | 222 | * @package lsx |
223 | 223 | * @subpackage woocommerce |
224 | 224 | */ |
225 | - function lsx_wc_products_widget_wrapper_after( $html ) { |
|
225 | + function lsx_wc_products_widget_wrapper_after($html) { |
|
226 | 226 | $html = '</div>'; |
227 | 227 | return $html; |
228 | 228 | } |
229 | 229 | |
230 | - add_filter( 'woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15 ); |
|
230 | + add_filter('woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15); |
|
231 | 231 | |
232 | 232 | endif; |
233 | 233 | |
234 | -if ( ! function_exists( 'lsx_wc_reviews_widget_override' ) ) : |
|
234 | +if ( ! function_exists('lsx_wc_reviews_widget_override')) : |
|
235 | 235 | |
236 | 236 | /** |
237 | 237 | * Override WC ewviews widget. |
@@ -240,18 +240,18 @@ discard block |
||
240 | 240 | * @subpackage woocommerce |
241 | 241 | */ |
242 | 242 | function lsx_wc_reviews_widget_override() { |
243 | - if ( class_exists( 'WC_Widget_Recent_Reviews' ) ) { |
|
244 | - unregister_widget( 'WC_Widget_Recent_Reviews' ); |
|
243 | + if (class_exists('WC_Widget_Recent_Reviews')) { |
|
244 | + unregister_widget('WC_Widget_Recent_Reviews'); |
|
245 | 245 | require get_template_directory() . '/includes/classes/class-lsx-wc-widget-recent-reviews.php'; |
246 | - register_widget( 'LSX_WC_Widget_Recent_Reviews' ); |
|
246 | + register_widget('LSX_WC_Widget_Recent_Reviews'); |
|
247 | 247 | } |
248 | 248 | } |
249 | 249 | |
250 | - add_action( 'widgets_init', 'lsx_wc_reviews_widget_override', 15 ); |
|
250 | + add_action('widgets_init', 'lsx_wc_reviews_widget_override', 15); |
|
251 | 251 | |
252 | 252 | endif; |
253 | 253 | |
254 | -if ( ! function_exists( 'lsx_wc_change_price_html' ) ) : |
|
254 | +if ( ! function_exists('lsx_wc_change_price_html')) : |
|
255 | 255 | |
256 | 256 | /** |
257 | 257 | * Change WC ZERO price to "free". |
@@ -259,28 +259,28 @@ discard block |
||
259 | 259 | * @package lsx |
260 | 260 | * @subpackage woocommerce |
261 | 261 | */ |
262 | - function lsx_wc_change_price_html( $price, $product ) { |
|
263 | - if ( empty( $product->get_price() ) ) { |
|
264 | - if ( $product->is_on_sale() && $product->get_regular_price() ) { |
|
265 | - $regular_price = wc_get_price_to_display( $product, array( |
|
262 | + function lsx_wc_change_price_html($price, $product) { |
|
263 | + if (empty($product->get_price())) { |
|
264 | + if ($product->is_on_sale() && $product->get_regular_price()) { |
|
265 | + $regular_price = wc_get_price_to_display($product, array( |
|
266 | 266 | 'qty' => 1, |
267 | 267 | 'price' => $product->get_regular_price(), |
268 | - ) ); |
|
268 | + )); |
|
269 | 269 | |
270 | - $price = wc_format_price_range( $regular_price, esc_html__( 'Free!', 'lsx' ) ); |
|
270 | + $price = wc_format_price_range($regular_price, esc_html__('Free!', 'lsx')); |
|
271 | 271 | } else { |
272 | - $price = '<span class="amount">' . esc_html__( 'Free!', 'lsx' ) . '</span>'; |
|
272 | + $price = '<span class="amount">' . esc_html__('Free!', 'lsx') . '</span>'; |
|
273 | 273 | } |
274 | 274 | } |
275 | 275 | |
276 | 276 | return $price; |
277 | 277 | } |
278 | 278 | |
279 | - add_filter( 'woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2 ); |
|
279 | + add_filter('woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2); |
|
280 | 280 | |
281 | 281 | endif; |
282 | 282 | |
283 | -if ( ! function_exists( 'lsx_wc_cart_link_fragment' ) ) : |
|
283 | +if ( ! function_exists('lsx_wc_cart_link_fragment')) : |
|
284 | 284 | |
285 | 285 | /** |
286 | 286 | * Cart Fragments. |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | * @package lsx |
290 | 290 | * @subpackage woocommerce |
291 | 291 | */ |
292 | - function lsx_wc_cart_link_fragment( $fragments ) { |
|
292 | + function lsx_wc_cart_link_fragment($fragments) { |
|
293 | 293 | global $woocommerce; |
294 | 294 | |
295 | 295 | ob_start(); |
@@ -301,7 +301,7 @@ discard block |
||
301 | 301 | |
302 | 302 | endif; |
303 | 303 | |
304 | -if ( ! function_exists( 'lsx_wc_cart_link' ) ) : |
|
304 | +if ( ! function_exists('lsx_wc_cart_link')) : |
|
305 | 305 | |
306 | 306 | /** |
307 | 307 | * Cart Link. |
@@ -312,16 +312,16 @@ discard block |
||
312 | 312 | */ |
313 | 313 | function lsx_wc_cart_link() { |
314 | 314 | ?> |
315 | - <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"> |
|
315 | + <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"> |
|
316 | 316 | <?php /* Translators: %s: items quantity */ ?> |
317 | - <span class="lsx-wc-cart-amount"><?php echo wp_kses_data( WC()->cart->get_cart_subtotal() ); ?></span> <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> |
|
317 | + <span class="lsx-wc-cart-amount"><?php echo wp_kses_data(WC()->cart->get_cart_subtotal()); ?></span> <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> |
|
318 | 318 | </a> |
319 | 319 | <?php |
320 | 320 | } |
321 | 321 | |
322 | 322 | endif; |
323 | 323 | |
324 | -if ( ! function_exists( 'lsx_wc_loop_shop_per_page' ) ) : |
|
324 | +if ( ! function_exists('lsx_wc_loop_shop_per_page')) : |
|
325 | 325 | |
326 | 326 | /** |
327 | 327 | * Changes the number of products to display on shop. |
@@ -329,39 +329,39 @@ discard block |
||
329 | 329 | * @package lsx |
330 | 330 | * @subpackage woocommerce |
331 | 331 | */ |
332 | - function lsx_wc_loop_shop_per_page( $items ) { |
|
332 | + function lsx_wc_loop_shop_per_page($items) { |
|
333 | 333 | $items = 20; |
334 | 334 | return $items; |
335 | 335 | } |
336 | 336 | |
337 | - add_filter( 'loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20 ); |
|
337 | + add_filter('loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20); |
|
338 | 338 | |
339 | 339 | endif; |
340 | 340 | |
341 | -if ( defined( 'WC_VERSION' ) && version_compare( WC_VERSION, '2.3', '>=' ) ) { |
|
342 | - add_filter( 'woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment' ); |
|
341 | +if (defined('WC_VERSION') && version_compare(WC_VERSION, '2.3', '>=')) { |
|
342 | + add_filter('woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment'); |
|
343 | 343 | } else { |
344 | - add_filter( 'add_to_cart_fragments', 'lsx_wc_cart_link_fragment' ); |
|
344 | + add_filter('add_to_cart_fragments', 'lsx_wc_cart_link_fragment'); |
|
345 | 345 | } |
346 | 346 | |
347 | -remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 ); |
|
347 | +remove_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 10); |
|
348 | 348 | |
349 | -add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9 ); |
|
350 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10 ); |
|
351 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_result_count', 20 ); |
|
352 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 30 ); |
|
353 | -add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 ); |
|
349 | +add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9); |
|
350 | +add_action('woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10); |
|
351 | +add_action('woocommerce_after_shop_loop', 'woocommerce_result_count', 20); |
|
352 | +add_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 30); |
|
353 | +add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31); |
|
354 | 354 | |
355 | -remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); |
|
356 | -remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 ); |
|
355 | +remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20); |
|
356 | +remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30); |
|
357 | 357 | |
358 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9 ); |
|
359 | -add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10 ); |
|
360 | -add_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); |
|
361 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30 ); |
|
362 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 ); |
|
358 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9); |
|
359 | +add_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10); |
|
360 | +add_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20); |
|
361 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30); |
|
362 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31); |
|
363 | 363 | |
364 | -if ( ! function_exists( 'lsx_wc_sorting_wrapper' ) ) : |
|
364 | +if ( ! function_exists('lsx_wc_sorting_wrapper')) : |
|
365 | 365 | |
366 | 366 | /** |
367 | 367 | * Sorting wrapper. |
@@ -375,7 +375,7 @@ discard block |
||
375 | 375 | |
376 | 376 | endif; |
377 | 377 | |
378 | -if ( ! function_exists( 'lsx_wc_sorting_wrapper_close' ) ) : |
|
378 | +if ( ! function_exists('lsx_wc_sorting_wrapper_close')) : |
|
379 | 379 | |
380 | 380 | /** |
381 | 381 | * Sorting wrapper close. |
@@ -389,7 +389,7 @@ discard block |
||
389 | 389 | |
390 | 390 | endif; |
391 | 391 | |
392 | -if ( ! function_exists( 'lsx_wc_product_columns_wrapper_close' ) ) : |
|
392 | +if ( ! function_exists('lsx_wc_product_columns_wrapper_close')) : |
|
393 | 393 | |
394 | 394 | /** |
395 | 395 | * Product columns wrapper close. |
@@ -403,7 +403,7 @@ discard block |
||
403 | 403 | |
404 | 404 | endif; |
405 | 405 | |
406 | -if ( ! function_exists( 'lsx_wc_woocommerce_pagination' ) ) : |
|
406 | +if ( ! function_exists('lsx_wc_woocommerce_pagination')) : |
|
407 | 407 | |
408 | 408 | /** |
409 | 409 | * LSX WooCommerce Pagination |
@@ -415,7 +415,7 @@ discard block |
||
415 | 415 | * @subpackage woocommerce |
416 | 416 | */ |
417 | 417 | function lsx_wc_woocommerce_pagination() { |
418 | - if ( woocommerce_products_will_display() ) { |
|
418 | + if (woocommerce_products_will_display()) { |
|
419 | 419 | woocommerce_pagination(); |
420 | 420 | } |
421 | 421 | } |
@@ -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,49 +157,49 @@ 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 ( false === $img ) { |
|
183 | + if (false === $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 ( $srcset ) { |
|
191 | - $img = '<img alt="' . the_title_attribute( 'echo=0' ) . '" class="attachment-responsive wp-post-image lsx-responsive" srcset="' . esc_attr( $img ) . '" />'; |
|
190 | + if ($srcset) { |
|
191 | + $img = '<img alt="' . the_title_attribute('echo=0') . '" class="attachment-responsive wp-post-image lsx-responsive" srcset="' . esc_attr($img) . '" />'; |
|
192 | 192 | } else { |
193 | - $img = '<img alt="' . the_title_attribute( 'echo=0' ) . '" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url( $img ) . '" />'; |
|
193 | + $img = '<img alt="' . the_title_attribute('echo=0') . '" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url($img) . '" />'; |
|
194 | 194 | } |
195 | 195 | |
196 | - $img = apply_filters( 'lsx_lazyload_filter_images', $img ); |
|
196 | + $img = apply_filters('lsx_lazyload_filter_images', $img); |
|
197 | 197 | return $img; |
198 | 198 | } |
199 | 199 | |
200 | 200 | endif; |
201 | 201 | |
202 | -if ( ! function_exists( 'lsx_thumbnail' ) ) : |
|
202 | +if ( ! function_exists('lsx_thumbnail')) : |
|
203 | 203 | |
204 | 204 | /** |
205 | 205 | * Output the Resonsive Images. |
@@ -207,13 +207,13 @@ discard block |
||
207 | 207 | * @package lsx |
208 | 208 | * @subpackage extras |
209 | 209 | */ |
210 | - function lsx_thumbnail( $size = 'thumbnail', $image_src = false ) { |
|
211 | - echo wp_kses_post( lsx_get_thumbnail( $size, $image_src ) ); |
|
210 | + function lsx_thumbnail($size = 'thumbnail', $image_src = false) { |
|
211 | + echo wp_kses_post(lsx_get_thumbnail($size, $image_src)); |
|
212 | 212 | } |
213 | 213 | |
214 | 214 | endif; |
215 | 215 | |
216 | -if ( ! function_exists( 'lsx_get_attachment_id_from_src' ) ) : |
|
216 | +if ( ! function_exists('lsx_get_attachment_id_from_src')) : |
|
217 | 217 | |
218 | 218 | /** |
219 | 219 | * Gets the attachments ID from the src. |
@@ -221,13 +221,13 @@ discard block |
||
221 | 221 | * @package lsx |
222 | 222 | * @subpackage extras |
223 | 223 | */ |
224 | - function lsx_get_attachment_id_from_src( $image_src ) { |
|
225 | - $post_id = wp_cache_get( $image_src, 'lsx_get_attachment_id_from_src' ); |
|
224 | + function lsx_get_attachment_id_from_src($image_src) { |
|
225 | + $post_id = wp_cache_get($image_src, 'lsx_get_attachment_id_from_src'); |
|
226 | 226 | |
227 | - if ( false === $post_id ) { |
|
227 | + if (false === $post_id) { |
|
228 | 228 | global $wpdb; |
229 | - $post_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src ) ); |
|
230 | - wp_cache_set( $image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600 ); |
|
229 | + $post_id = $wpdb->get_var($wpdb->prepare("SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src)); |
|
230 | + wp_cache_set($image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600); |
|
231 | 231 | } |
232 | 232 | |
233 | 233 | return $post_id; |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | |
236 | 236 | endif; |
237 | 237 | |
238 | -if ( ! function_exists( 'lsx_page_banner' ) ) : |
|
238 | +if ( ! function_exists('lsx_page_banner')) : |
|
239 | 239 | |
240 | 240 | /** |
241 | 241 | * Add Featured Image as Banner on Single Pages. |
@@ -244,26 +244,26 @@ discard block |
||
244 | 244 | * @subpackage extras |
245 | 245 | */ |
246 | 246 | function lsx_page_banner() { |
247 | - if ( true === apply_filters( 'lsx_page_banner_disable', false ) ) { |
|
247 | + if (true === apply_filters('lsx_page_banner_disable', false)) { |
|
248 | 248 | return; |
249 | 249 | } |
250 | 250 | |
251 | - $post_types = array( 'page', 'post' ); |
|
252 | - $post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types ); |
|
251 | + $post_types = array('page', 'post'); |
|
252 | + $post_types = apply_filters('lsx_allowed_post_type_banners', $post_types); |
|
253 | 253 | |
254 | - if ( is_singular( $post_types ) && has_post_thumbnail() ) : |
|
254 | + if (is_singular($post_types) && has_post_thumbnail()) : |
|
255 | 255 | $bg_image = ''; |
256 | 256 | |
257 | - if ( has_post_thumbnail() ) { |
|
258 | - $bg_image = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'full' ); |
|
257 | + if (has_post_thumbnail()) { |
|
258 | + $bg_image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), 'full'); |
|
259 | 259 | $bg_image = $bg_image[0]; |
260 | 260 | } |
261 | 261 | |
262 | - if ( ! empty( $bg_image ) ) : |
|
262 | + if ( ! empty($bg_image)) : |
|
263 | 263 | ?> |
264 | 264 | <div class="page-banner-wrap"> |
265 | 265 | <div class="page-banner"> |
266 | - <div class="page-banner-image" style="background-image:url(<?php echo esc_attr( $bg_image ); ?>);"></div> |
|
266 | + <div class="page-banner-image" style="background-image:url(<?php echo esc_attr($bg_image); ?>);"></div> |
|
267 | 267 | |
268 | 268 | <div class="container"> |
269 | 269 | <header class="page-header"> |
@@ -282,9 +282,9 @@ discard block |
||
282 | 282 | |
283 | 283 | endif; |
284 | 284 | |
285 | -add_action( 'lsx_header_after', 'lsx_page_banner' ); |
|
285 | +add_action('lsx_header_after', 'lsx_page_banner'); |
|
286 | 286 | |
287 | -if ( ! function_exists( 'lsx_form_submit_button' ) ) : |
|
287 | +if ( ! function_exists('lsx_form_submit_button')) : |
|
288 | 288 | |
289 | 289 | /** |
290 | 290 | * filter the Gravity Forms button type. |
@@ -296,15 +296,15 @@ discard block |
||
296 | 296 | * @param $form Object |
297 | 297 | * @return String |
298 | 298 | */ |
299 | - function lsx_form_submit_button( $button, $form ) { |
|
299 | + function lsx_form_submit_button($button, $form) { |
|
300 | 300 | return "<button class='btn btn-primary' id='gform_submit_button_{$form["id"]}'><span>Submit</span></button>"; |
301 | 301 | } |
302 | 302 | |
303 | 303 | endif; |
304 | 304 | |
305 | -add_filter( 'gform_submit_button', 'lsx_form_submit_button', 10, 2 ); |
|
305 | +add_filter('gform_submit_button', 'lsx_form_submit_button', 10, 2); |
|
306 | 306 | |
307 | -if ( ! function_exists( 'lsx_excerpt_more' ) ) : |
|
307 | +if ( ! function_exists('lsx_excerpt_more')) : |
|
308 | 308 | |
309 | 309 | /** |
310 | 310 | * Replaces the excerpt "more" text by a link. |
@@ -312,15 +312,15 @@ discard block |
||
312 | 312 | * @package lsx |
313 | 313 | * @subpackage extras |
314 | 314 | */ |
315 | - function lsx_excerpt_more( $more ) { |
|
315 | + function lsx_excerpt_more($more) { |
|
316 | 316 | return '...'; |
317 | 317 | } |
318 | 318 | |
319 | 319 | endif; |
320 | 320 | |
321 | -add_filter( 'excerpt_more', 'lsx_excerpt_more' ); |
|
321 | +add_filter('excerpt_more', 'lsx_excerpt_more'); |
|
322 | 322 | |
323 | -if ( ! function_exists( 'lsx_the_excerpt_filter' ) ) : |
|
323 | +if ( ! function_exists('lsx_the_excerpt_filter')) : |
|
324 | 324 | |
325 | 325 | /** |
326 | 326 | * Add a continue reading link to the excerpt. |
@@ -328,24 +328,24 @@ discard block |
||
328 | 328 | * @package lsx |
329 | 329 | * @subpackage extras |
330 | 330 | */ |
331 | - function lsx_the_excerpt_filter( $excerpt ) { |
|
332 | - $show_full_content = has_post_format( apply_filters( 'lsx_the_excerpt_filter_post_types', array( 'aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio' ) ) ); |
|
331 | + function lsx_the_excerpt_filter($excerpt) { |
|
332 | + $show_full_content = has_post_format(apply_filters('lsx_the_excerpt_filter_post_types', array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio'))); |
|
333 | 333 | |
334 | - if ( ! $show_full_content ) { |
|
335 | - if ( '' !== $excerpt && ! stristr( $excerpt, 'moretag' ) ) { |
|
336 | - $pagination = wp_link_pages( array( |
|
334 | + if ( ! $show_full_content) { |
|
335 | + if ('' !== $excerpt && ! stristr($excerpt, 'moretag')) { |
|
336 | + $pagination = wp_link_pages(array( |
|
337 | 337 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
338 | 338 | 'after' => '</div></div>', |
339 | 339 | 'link_before' => '<span>', |
340 | 340 | 'link_after' => '</span>', |
341 | 341 | 'echo' => 0, |
342 | - ) ); |
|
342 | + )); |
|
343 | 343 | |
344 | - if ( ! empty( $pagination ) ) { |
|
344 | + if ( ! empty($pagination)) { |
|
345 | 345 | $excerpt .= $pagination; |
346 | 346 | } else { |
347 | - $excerpt_more = '<p><a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'Continue reading', 'lsx' ) . '</a></p>'; |
|
348 | - $excerpt .= apply_filters( 'excerpt_more_p', $excerpt_more ); |
|
347 | + $excerpt_more = '<p><a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('Continue reading', 'lsx') . '</a></p>'; |
|
348 | + $excerpt .= apply_filters('excerpt_more_p', $excerpt_more); |
|
349 | 349 | } |
350 | 350 | } |
351 | 351 | } |
@@ -355,9 +355,9 @@ discard block |
||
355 | 355 | |
356 | 356 | endif; |
357 | 357 | |
358 | -add_filter( 'the_excerpt', 'lsx_the_excerpt_filter' , 1 , 20 ); |
|
358 | +add_filter('the_excerpt', 'lsx_the_excerpt_filter', 1, 20); |
|
359 | 359 | |
360 | -if ( ! function_exists( 'lsx_custom_wp_trim_excerpt' ) ) : |
|
360 | +if ( ! function_exists('lsx_custom_wp_trim_excerpt')) : |
|
361 | 361 | |
362 | 362 | /** |
363 | 363 | * Allow HTML tags in excerpt. |
@@ -365,33 +365,33 @@ discard block |
||
365 | 365 | * @package lsx |
366 | 366 | * @subpackage extras |
367 | 367 | */ |
368 | - function lsx_custom_wp_trim_excerpt( $wpse_excerpt ) { |
|
368 | + function lsx_custom_wp_trim_excerpt($wpse_excerpt) { |
|
369 | 369 | global $post; |
370 | 370 | $raw_excerpt = $wpse_excerpt; |
371 | 371 | |
372 | - if ( empty( $wpse_excerpt ) ) { |
|
373 | - $wpse_excerpt = get_the_content( '' ); |
|
374 | - $show_full_content = has_post_format( array( 'aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio' ) ); |
|
372 | + if (empty($wpse_excerpt)) { |
|
373 | + $wpse_excerpt = get_the_content(''); |
|
374 | + $show_full_content = has_post_format(array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio')); |
|
375 | 375 | |
376 | - if ( ! $show_full_content ) { |
|
377 | - $wpse_excerpt = strip_shortcodes( $wpse_excerpt ); |
|
378 | - $wpse_excerpt = apply_filters( 'the_content', $wpse_excerpt ); |
|
379 | - $wpse_excerpt = str_replace( ']]>', ']]>', $wpse_excerpt ); |
|
380 | - $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>' ) ); |
|
376 | + if ( ! $show_full_content) { |
|
377 | + $wpse_excerpt = strip_shortcodes($wpse_excerpt); |
|
378 | + $wpse_excerpt = apply_filters('the_content', $wpse_excerpt); |
|
379 | + $wpse_excerpt = str_replace(']]>', ']]>', $wpse_excerpt); |
|
380 | + $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>')); |
|
381 | 381 | |
382 | 382 | $excerpt_word_count = 50; |
383 | - $excerpt_word_count = apply_filters( 'excerpt_length', $excerpt_word_count ); |
|
383 | + $excerpt_word_count = apply_filters('excerpt_length', $excerpt_word_count); |
|
384 | 384 | |
385 | 385 | $tokens = array(); |
386 | 386 | $excerpt_output = ''; |
387 | 387 | $has_more = false; |
388 | 388 | $count = 0; |
389 | 389 | |
390 | - preg_match_all( '/(<[^>]+>|[^<>\s]+)\s*/u', $wpse_excerpt, $tokens ); |
|
390 | + preg_match_all('/(<[^>]+>|[^<>\s]+)\s*/u', $wpse_excerpt, $tokens); |
|
391 | 391 | |
392 | - foreach ( $tokens[0] as $token ) { |
|
393 | - if ( $count >= $excerpt_word_count ) { |
|
394 | - $excerpt_output .= trim( $token ); |
|
392 | + foreach ($tokens[0] as $token) { |
|
393 | + if ($count >= $excerpt_word_count) { |
|
394 | + $excerpt_output .= trim($token); |
|
395 | 395 | $has_more = true; |
396 | 396 | break; |
397 | 397 | } |
@@ -400,41 +400,41 @@ discard block |
||
400 | 400 | $excerpt_output .= $token; |
401 | 401 | } |
402 | 402 | |
403 | - $wpse_excerpt = trim( force_balance_tags( $excerpt_output ) ); |
|
403 | + $wpse_excerpt = trim(force_balance_tags($excerpt_output)); |
|
404 | 404 | |
405 | - if ( $has_more ) { |
|
406 | - $excerpt_end = '<a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'More', 'lsx' ) . '</a>'; |
|
407 | - $excerpt_end = apply_filters( 'excerpt_more', ' ' . $excerpt_end ); |
|
405 | + if ($has_more) { |
|
406 | + $excerpt_end = '<a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('More', 'lsx') . '</a>'; |
|
407 | + $excerpt_end = apply_filters('excerpt_more', ' ' . $excerpt_end); |
|
408 | 408 | |
409 | - $pos = strrpos( $wpse_excerpt, '</' ); |
|
409 | + $pos = strrpos($wpse_excerpt, '</'); |
|
410 | 410 | |
411 | - if ( false !== $pos ) { |
|
411 | + if (false !== $pos) { |
|
412 | 412 | // Inside last HTML tag |
413 | - $wpse_excerpt = substr_replace( $wpse_excerpt, $excerpt_end, $pos, 0 ); /* Add read more next to last word */ |
|
413 | + $wpse_excerpt = substr_replace($wpse_excerpt, $excerpt_end, $pos, 0); /* Add read more next to last word */ |
|
414 | 414 | } else { |
415 | 415 | // After the content |
416 | 416 | $wpse_excerpt .= $excerpt_end; /*Add read more in new paragraph */ |
417 | 417 | } |
418 | 418 | } |
419 | 419 | } else { |
420 | - $wpse_excerpt = apply_filters( 'the_content', $wpse_excerpt ); |
|
421 | - $wpse_excerpt = str_replace( ']]>', ']]>', $wpse_excerpt ); |
|
420 | + $wpse_excerpt = apply_filters('the_content', $wpse_excerpt); |
|
421 | + $wpse_excerpt = str_replace(']]>', ']]>', $wpse_excerpt); |
|
422 | 422 | //$wpse_excerpt = strip_tags( $wpse_excerpt, '<blockquote>,<p>' ); |
423 | - $wpse_excerpt = trim( force_balance_tags( $wpse_excerpt ) ); |
|
423 | + $wpse_excerpt = trim(force_balance_tags($wpse_excerpt)); |
|
424 | 424 | } |
425 | 425 | |
426 | 426 | return $wpse_excerpt; |
427 | 427 | } |
428 | 428 | |
429 | - return apply_filters( 'lsx_custom_wp_trim_excerpt', $wpse_excerpt, $raw_excerpt ); |
|
429 | + return apply_filters('lsx_custom_wp_trim_excerpt', $wpse_excerpt, $raw_excerpt); |
|
430 | 430 | } |
431 | 431 | |
432 | 432 | endif; |
433 | 433 | |
434 | -remove_filter( 'get_the_excerpt', 'wp_trim_excerpt' ); |
|
435 | -add_filter( 'get_the_excerpt', 'lsx_custom_wp_trim_excerpt' ); |
|
434 | +remove_filter('get_the_excerpt', 'wp_trim_excerpt'); |
|
435 | +add_filter('get_the_excerpt', 'lsx_custom_wp_trim_excerpt'); |
|
436 | 436 | |
437 | -if ( ! function_exists( 'lsx_full_width_widget_classes' ) ) : |
|
437 | +if ( ! function_exists('lsx_full_width_widget_classes')) : |
|
438 | 438 | |
439 | 439 | /** |
440 | 440 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -442,8 +442,8 @@ discard block |
||
442 | 442 | * @package lsx |
443 | 443 | * @subpackage extras |
444 | 444 | */ |
445 | - function lsx_full_width_widget_classes( $params ) { |
|
446 | - if ( is_admin() ) { |
|
445 | + function lsx_full_width_widget_classes($params) { |
|
446 | + if (is_admin()) { |
|
447 | 447 | return $params; |
448 | 448 | } |
449 | 449 | |
@@ -452,9 +452,9 @@ discard block |
||
452 | 452 | $widget_id = $params[0]['widget_id']; |
453 | 453 | $widget_name = $params[0]['widget_name']; |
454 | 454 | |
455 | - if ( 'Text' === $widget_name ) { |
|
456 | - $wp_registered_widgets[ $widget_id ]['original_callback'] = $wp_registered_widgets[ $widget_id ]['callback']; |
|
457 | - $wp_registered_widgets[ $widget_id ]['callback'] = 'lsx_full_width_widget_custom_callback'; |
|
455 | + if ('Text' === $widget_name) { |
|
456 | + $wp_registered_widgets[$widget_id]['original_callback'] = $wp_registered_widgets[$widget_id]['callback']; |
|
457 | + $wp_registered_widgets[$widget_id]['callback'] = 'lsx_full_width_widget_custom_callback'; |
|
458 | 458 | } |
459 | 459 | |
460 | 460 | return $params; |
@@ -462,9 +462,9 @@ discard block |
||
462 | 462 | |
463 | 463 | endif; |
464 | 464 | |
465 | -add_filter( 'dynamic_sidebar_params', 'lsx_full_width_widget_classes' ); |
|
465 | +add_filter('dynamic_sidebar_params', 'lsx_full_width_widget_classes'); |
|
466 | 466 | |
467 | -if ( ! function_exists( 'lsx_full_width_widget_custom_callback' ) ) : |
|
467 | +if ( ! function_exists('lsx_full_width_widget_custom_callback')) : |
|
468 | 468 | |
469 | 469 | /** |
470 | 470 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -478,25 +478,25 @@ discard block |
||
478 | 478 | $original_callback_params = func_get_args(); |
479 | 479 | $widget_id = $original_callback_params[0]['widget_id']; |
480 | 480 | |
481 | - $original_callback = $wp_registered_widgets[ $widget_id ]['original_callback']; |
|
482 | - $wp_registered_widgets[ $widget_id ]['callback'] = $original_callback; |
|
481 | + $original_callback = $wp_registered_widgets[$widget_id]['original_callback']; |
|
482 | + $wp_registered_widgets[$widget_id]['callback'] = $original_callback; |
|
483 | 483 | |
484 | - $widget_id_base = $wp_registered_widgets[ $widget_id ]['callback'][0]->id_base; |
|
484 | + $widget_id_base = $wp_registered_widgets[$widget_id]['callback'][0]->id_base; |
|
485 | 485 | |
486 | 486 | $widget_classname = ''; |
487 | 487 | |
488 | - if ( is_callable( $original_callback ) ) { |
|
488 | + if (is_callable($original_callback)) { |
|
489 | 489 | ob_start(); |
490 | - call_user_func_array( $original_callback, $original_callback_params ); |
|
490 | + call_user_func_array($original_callback, $original_callback_params); |
|
491 | 491 | $widget_output = ob_get_clean(); |
492 | 492 | |
493 | - echo wp_kses_post( apply_filters( 'lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id ) ); |
|
493 | + echo wp_kses_post(apply_filters('lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id)); |
|
494 | 494 | } |
495 | 495 | } |
496 | 496 | |
497 | 497 | endif; |
498 | 498 | |
499 | -if ( ! function_exists( 'lsx_full_width_widget_output' ) ) : |
|
499 | +if ( ! function_exists('lsx_full_width_widget_output')) : |
|
500 | 500 | |
501 | 501 | /** |
502 | 502 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -504,12 +504,12 @@ discard block |
||
504 | 504 | * @package lsx |
505 | 505 | * @subpackage extras |
506 | 506 | */ |
507 | - function lsx_full_width_widget_output( $widget_output, $widget_id_base, $widget_id ) { |
|
508 | - if ( 'text' === $widget_id_base ) { |
|
509 | - if ( false !== strpos( $widget_output, '<div class="lsx-full-width-alt">' ) ) { |
|
510 | - $widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output ); |
|
511 | - } elseif ( false !== strpos( $widget_output, '<div class="lsx-full-width">' ) ) { |
|
512 | - $widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output ); |
|
507 | + function lsx_full_width_widget_output($widget_output, $widget_id_base, $widget_id) { |
|
508 | + if ('text' === $widget_id_base) { |
|
509 | + if (false !== strpos($widget_output, '<div class="lsx-full-width-alt">')) { |
|
510 | + $widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output); |
|
511 | + } elseif (false !== strpos($widget_output, '<div class="lsx-full-width">')) { |
|
512 | + $widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output); |
|
513 | 513 | } |
514 | 514 | } |
515 | 515 | |
@@ -518,4 +518,4 @@ discard block |
||
518 | 518 | |
519 | 519 | endif; |
520 | 520 | |
521 | -add_filter( 'lsx_widget_output', 'lsx_full_width_widget_output', 10, 3 ); |
|
521 | +add_filter('lsx_widget_output', 'lsx_full_width_widget_output', 10, 3); |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage layout |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! function_exists( 'lsx_layout_selector' ) ) : |
|
13 | +if ( ! function_exists('lsx_layout_selector')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Layout selector. |
@@ -18,14 +18,14 @@ discard block |
||
18 | 18 | * @package lsx |
19 | 19 | * @subpackage layout |
20 | 20 | */ |
21 | - function lsx_layout_selector( $class, $area = 'site' ) { |
|
21 | + function lsx_layout_selector($class, $area = 'site') { |
|
22 | 22 | $return_class = ''; |
23 | - $layout = get_theme_mod( 'lsx_layout', '2cr' ); |
|
24 | - $layout = apply_filters( 'lsx_layout', $layout ); |
|
23 | + $layout = get_theme_mod('lsx_layout', '2cr'); |
|
24 | + $layout = apply_filters('lsx_layout', $layout); |
|
25 | 25 | $default_size = 'sm'; |
26 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
26 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
27 | 27 | |
28 | - switch ( $layout ) { |
|
28 | + switch ($layout) { |
|
29 | 29 | case '1c': |
30 | 30 | $main_class = 'col-' . $size . '-12'; |
31 | 31 | $sidebar_class = 'col-' . $size . '-12'; |
@@ -44,12 +44,12 @@ discard block |
||
44 | 44 | break; |
45 | 45 | } |
46 | 46 | |
47 | - if ( 'main' === $class ) { |
|
48 | - $return_class = apply_filters( 'lsx_layout_selector', $main_class, $class, $layout, $size ); |
|
47 | + if ('main' === $class) { |
|
48 | + $return_class = apply_filters('lsx_layout_selector', $main_class, $class, $layout, $size); |
|
49 | 49 | } |
50 | 50 | |
51 | - if ( 'sidebar' === $class ) { |
|
52 | - $return_class = apply_filters( 'lsx_layout_selector', $sidebar_class, $class, $layout, $size ); |
|
51 | + if ('sidebar' === $class) { |
|
52 | + $return_class = apply_filters('lsx_layout_selector', $sidebar_class, $class, $layout, $size); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | return $return_class; |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | |
58 | 58 | endif; |
59 | 59 | |
60 | -if ( ! function_exists( 'lsx_main_class' ) ) : |
|
60 | +if ( ! function_exists('lsx_main_class')) : |
|
61 | 61 | |
62 | 62 | /** |
63 | 63 | * .main classes. |
@@ -66,12 +66,12 @@ discard block |
||
66 | 66 | * @subpackage layout |
67 | 67 | */ |
68 | 68 | function lsx_main_class() { |
69 | - return lsx_layout_selector( 'main' ); |
|
69 | + return lsx_layout_selector('main'); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | endif; |
73 | 73 | |
74 | -if ( ! function_exists( 'lsx_sidebar_class' ) ) : |
|
74 | +if ( ! function_exists('lsx_sidebar_class')) : |
|
75 | 75 | |
76 | 76 | /** |
77 | 77 | * .sidebar classes. |
@@ -80,12 +80,12 @@ discard block |
||
80 | 80 | * @subpackage layout |
81 | 81 | */ |
82 | 82 | function lsx_sidebar_class() { |
83 | - return lsx_layout_selector( 'sidebar' ); |
|
83 | + return lsx_layout_selector('sidebar'); |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | endif; |
87 | 87 | |
88 | -if ( ! function_exists( 'lsx_header_classes' ) ) : |
|
88 | +if ( ! function_exists('lsx_header_classes')) : |
|
89 | 89 | |
90 | 90 | /** |
91 | 91 | * Output the classes for the header. |
@@ -93,19 +93,19 @@ discard block |
||
93 | 93 | * @package lsx |
94 | 94 | * @subpackage layout |
95 | 95 | */ |
96 | - function lsx_header_classes( $additional = false ) { |
|
96 | + function lsx_header_classes($additional = false) { |
|
97 | 97 | $classes = 'banner navbar navbar-default'; |
98 | 98 | |
99 | - if ( false !== $additional ) { |
|
99 | + if (false !== $additional) { |
|
100 | 100 | $classes .= ' ' . $additional; |
101 | 101 | } |
102 | 102 | |
103 | - echo esc_attr( $classes ); |
|
103 | + echo esc_attr($classes); |
|
104 | 104 | } |
105 | 105 | |
106 | 106 | endif; |
107 | 107 | |
108 | -if ( ! function_exists( 'lsx_top_menu_classes' ) ) : |
|
108 | +if ( ! function_exists('lsx_top_menu_classes')) : |
|
109 | 109 | |
110 | 110 | /** |
111 | 111 | * Output the classes for the top-menu. |
@@ -113,19 +113,19 @@ discard block |
||
113 | 113 | * @package lsx |
114 | 114 | * @subpackage layout |
115 | 115 | */ |
116 | - function lsx_top_menu_classes( $additional = false ) { |
|
116 | + function lsx_top_menu_classes($additional = false) { |
|
117 | 117 | $classes = 'top-menu-default'; |
118 | 118 | |
119 | - if ( false !== $additional ) { |
|
119 | + if (false !== $additional) { |
|
120 | 120 | $classes .= ' ' . $additional; |
121 | 121 | } |
122 | 122 | |
123 | - echo esc_attr( $classes ); |
|
123 | + echo esc_attr($classes); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | endif; |
127 | 127 | |
128 | -if ( ! function_exists( 'lsx_add_footer_sidebar_area' ) ) : |
|
128 | +if ( ! function_exists('lsx_add_footer_sidebar_area')) : |
|
129 | 129 | |
130 | 130 | /** |
131 | 131 | * Output the Footer CTA and/pr Footer Widgets. |
@@ -134,34 +134,34 @@ discard block |
||
134 | 134 | * @subpackage layout |
135 | 135 | */ |
136 | 136 | function lsx_add_footer_sidebar_area() { |
137 | - if ( is_active_sidebar( 'sidebar-footer-cta' ) ) : ?> |
|
137 | + if (is_active_sidebar('sidebar-footer-cta')) : ?> |
|
138 | 138 | <div id="footer-cta"> |
139 | 139 | <div class="container"> |
140 | 140 | <div class="lsx-full-width"> |
141 | 141 | <div class="lsx-hero-unit"> |
142 | - <?php dynamic_sidebar( 'sidebar-footer-cta' ); ?> |
|
142 | + <?php dynamic_sidebar('sidebar-footer-cta'); ?> |
|
143 | 143 | </div> |
144 | 144 | </div> |
145 | 145 | </div> |
146 | 146 | </div> |
147 | 147 | <?php endif; ?> |
148 | 148 | |
149 | - <?php if ( is_active_sidebar( 'sidebar-footer' ) ) : ?> |
|
149 | + <?php if (is_active_sidebar('sidebar-footer')) : ?> |
|
150 | 150 | <div id="footer-widgets"> |
151 | 151 | <div class="container"> |
152 | 152 | <div class="row"> |
153 | - <?php dynamic_sidebar( 'sidebar-footer' ); ?> |
|
153 | + <?php dynamic_sidebar('sidebar-footer'); ?> |
|
154 | 154 | </div> |
155 | 155 | </div> |
156 | 156 | </div> |
157 | 157 | <?php endif; |
158 | 158 | } |
159 | 159 | |
160 | - add_action( 'lsx_footer_before', 'lsx_add_footer_sidebar_area' ); |
|
160 | + add_action('lsx_footer_before', 'lsx_add_footer_sidebar_area'); |
|
161 | 161 | |
162 | 162 | endif; |
163 | 163 | |
164 | -if ( ! function_exists( 'lsx_global_header' ) ) : |
|
164 | +if ( ! function_exists('lsx_global_header')) : |
|
165 | 165 | |
166 | 166 | /** |
167 | 167 | * Displays the global header. |
@@ -174,21 +174,21 @@ discard block |
||
174 | 174 | // return; |
175 | 175 | // } |
176 | 176 | |
177 | - $show_on_front = get_option( 'show_on_front' ); |
|
177 | + $show_on_front = get_option('show_on_front'); |
|
178 | 178 | $queried_object = get_queried_object(); |
179 | 179 | $default_size = 'sm'; |
180 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
180 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
181 | 181 | |
182 | - if ( true === apply_filters( 'lsx_global_header_disable', false ) ) : |
|
182 | + if (true === apply_filters('lsx_global_header_disable', false)) : |
|
183 | 183 | // Display only the breadcrumbs |
184 | 184 | ?> |
185 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
185 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
186 | 186 | <?php lsx_global_header_inner_bottom(); ?> |
187 | 187 | </div> |
188 | 188 | <?php |
189 | - elseif ( is_page() && ( 'page' !== $show_on_front || ! is_front_page() ) ) : |
|
189 | + elseif (is_page() && ('page' !== $show_on_front || ! is_front_page())) : |
|
190 | 190 | ?> |
191 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
191 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
192 | 192 | <header class="archive-header"> |
193 | 193 | <h1 class="archive-title"><?php the_title(); ?></h1> |
194 | 194 | </header> |
@@ -196,9 +196,9 @@ discard block |
||
196 | 196 | <?php lsx_global_header_inner_bottom(); ?> |
197 | 197 | </div> |
198 | 198 | <?php |
199 | - elseif ( is_single() && ! is_singular( 'post' ) ) : |
|
199 | + elseif (is_single() && ! is_singular('post')) : |
|
200 | 200 | ?> |
201 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
201 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
202 | 202 | <header class="archive-header"> |
203 | 203 | <h1 class="archive-title"><?php the_title(); ?></h1> |
204 | 204 | </header> |
@@ -206,15 +206,15 @@ discard block |
||
206 | 206 | <?php lsx_global_header_inner_bottom(); ?> |
207 | 207 | </div> |
208 | 208 | <?php |
209 | - elseif ( is_search() ) : |
|
209 | + elseif (is_search()) : |
|
210 | 210 | ?> |
211 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
211 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
212 | 212 | <header class="archive-header"> |
213 | 213 | <h1 class="archive-title"> |
214 | 214 | <?php |
215 | 215 | printf( |
216 | 216 | /* Translators: %s: search term/query */ |
217 | - esc_html__( 'Search Results for: %s', 'lsx' ), |
|
217 | + esc_html__('Search Results for: %s', 'lsx'), |
|
218 | 218 | '<span>' . get_search_query() . '</span>' |
219 | 219 | ); |
220 | 220 | ?> |
@@ -224,12 +224,12 @@ discard block |
||
224 | 224 | <?php lsx_global_header_inner_bottom(); ?> |
225 | 225 | </div> |
226 | 226 | <?php |
227 | - elseif ( is_author() ) : |
|
227 | + elseif (is_author()) : |
|
228 | 228 | $author = get_the_author(); |
229 | - $author_avatar = get_avatar( get_the_author_meta( 'ID' ), 256 ); |
|
229 | + $author_avatar = get_avatar(get_the_author_meta('ID'), 256); |
|
230 | 230 | $author_bio = get_the_archive_description(); |
231 | 231 | ?> |
232 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
232 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
233 | 233 | <header class="archive-header"> |
234 | 234 | <h1 class="archive-title"><?php the_archive_title(); ?></h1> |
235 | 235 | </header> |
@@ -237,9 +237,9 @@ discard block |
||
237 | 237 | <?php lsx_global_header_inner_bottom(); ?> |
238 | 238 | </div> |
239 | 239 | <?php |
240 | - elseif ( is_archive() ) : |
|
240 | + elseif (is_archive()) : |
|
241 | 241 | ?> |
242 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
242 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
243 | 243 | <header class="archive-header"> |
244 | 244 | <h1 class="archive-title"><?php the_archive_title(); ?></h1> |
245 | 245 | <?php the_archive_description(); ?> |
@@ -248,13 +248,13 @@ discard block |
||
248 | 248 | <?php lsx_global_header_inner_bottom(); ?> |
249 | 249 | </div> |
250 | 250 | <?php |
251 | - elseif ( is_archive() ) : |
|
251 | + elseif (is_archive()) : |
|
252 | 252 | ?> |
253 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
253 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
254 | 254 | <header class="archive-header"> |
255 | 255 | <h1 class="archive-title"> |
256 | - <?php if ( has_post_format() && ! is_category() && ! is_tag() && ! is_date() && ! is_tax( 'post_format' ) ) { ?> |
|
257 | - <?php the_archive_title( esc_html__( 'Type:', 'lsx' ) ); ?> |
|
256 | + <?php if (has_post_format() && ! is_category() && ! is_tag() && ! is_date() && ! is_tax('post_format')) { ?> |
|
257 | + <?php the_archive_title(esc_html__('Type:', 'lsx')); ?> |
|
258 | 258 | <?php } else { ?> |
259 | 259 | <?php the_archive_title(); ?> |
260 | 260 | <?php } ?> |
@@ -266,11 +266,11 @@ discard block |
||
266 | 266 | <?php lsx_global_header_inner_bottom(); ?> |
267 | 267 | </div> |
268 | 268 | <?php |
269 | - elseif ( 'page' === $show_on_front && (int) get_option( 'page_for_posts' ) === $queried_object->ID ) : |
|
269 | + elseif ('page' === $show_on_front && (int) get_option('page_for_posts') === $queried_object->ID) : |
|
270 | 270 | ?> |
271 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
271 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
272 | 272 | <header class="archive-header"> |
273 | - <h1 class="archive-title"><?php esc_html_e( 'Blog', 'lsx' ); ?></h1> |
|
273 | + <h1 class="archive-title"><?php esc_html_e('Blog', 'lsx'); ?></h1> |
|
274 | 274 | </header> |
275 | 275 | |
276 | 276 | <?php lsx_global_header_inner_bottom(); ?> |
@@ -279,18 +279,18 @@ discard block |
||
279 | 279 | else : |
280 | 280 | // Display only the breadcrumbs |
281 | 281 | ?> |
282 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
282 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
283 | 283 | <?php lsx_global_header_inner_bottom(); ?> |
284 | 284 | </div> |
285 | 285 | <?php |
286 | 286 | endif; |
287 | 287 | } |
288 | 288 | |
289 | - add_action( 'lsx_content_wrap_before', 'lsx_global_header' ); |
|
289 | + add_action('lsx_content_wrap_before', 'lsx_global_header'); |
|
290 | 290 | |
291 | 291 | endif; |
292 | 292 | |
293 | -if ( ! function_exists( 'lsx_author_extra_info' ) ) : |
|
293 | +if ( ! function_exists('lsx_author_extra_info')) : |
|
294 | 294 | |
295 | 295 | /** |
296 | 296 | * Displays the author extra info. |
@@ -300,58 +300,58 @@ discard block |
||
300 | 300 | */ |
301 | 301 | function lsx_author_extra_info() { |
302 | 302 | $default_size = 'sm'; |
303 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
303 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
304 | 304 | |
305 | - if ( is_author() ) : |
|
306 | - $author_id = get_the_author_meta( 'ID' ); |
|
305 | + if (is_author()) : |
|
306 | + $author_id = get_the_author_meta('ID'); |
|
307 | 307 | $author = get_the_author(); |
308 | - $author_avatar = get_avatar( $author_id, 256 ); |
|
308 | + $author_avatar = get_avatar($author_id, 256); |
|
309 | 309 | $author_bio = get_the_archive_description(); |
310 | - $author_url = get_the_author_meta( 'url', $author_id ); |
|
311 | - $author_email = get_the_author_meta( 'email', $author_id ); |
|
312 | - $author_facebook = get_the_author_meta( 'facebook', $author_id ); |
|
313 | - $author_twitter = get_the_author_meta( 'twitter', $author_id ); |
|
314 | - $author_googleplus = get_the_author_meta( 'googleplus', $author_id ); |
|
310 | + $author_url = get_the_author_meta('url', $author_id); |
|
311 | + $author_email = get_the_author_meta('email', $author_id); |
|
312 | + $author_facebook = get_the_author_meta('facebook', $author_id); |
|
313 | + $author_twitter = get_the_author_meta('twitter', $author_id); |
|
314 | + $author_googleplus = get_the_author_meta('googleplus', $author_id); |
|
315 | 315 | ?> |
316 | - <div class="col-<?php echo esc_attr( $size ); ?>-12"> |
|
316 | + <div class="col-<?php echo esc_attr($size); ?>-12"> |
|
317 | 317 | <div class="archive-author-data"> |
318 | - <figure class="archive-author-avatar"><?php echo wp_kses_post( $author_avatar ); ?></figure> |
|
318 | + <figure class="archive-author-avatar"><?php echo wp_kses_post($author_avatar); ?></figure> |
|
319 | 319 | |
320 | - <?php if ( ! empty( $author_url ) || ! empty( $author_email ) || ! empty( $author_facebook ) || ! empty( $author_twitter ) || ! empty( $author_googleplus ) ) : ?> |
|
320 | + <?php if ( ! empty($author_url) || ! empty($author_email) || ! empty($author_facebook) || ! empty($author_twitter) || ! empty($author_googleplus)) : ?> |
|
321 | 321 | <div class="archive-author-social-links"> |
322 | - <?php if ( ! empty( $author_url ) ) : ?> |
|
323 | - <a href="<?php echo esc_url( $author_url ); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-url"><i class="fa fa-link" aria-hidden="true"></i></a> |
|
322 | + <?php if ( ! empty($author_url)) : ?> |
|
323 | + <a href="<?php echo esc_url($author_url); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-url"><i class="fa fa-link" aria-hidden="true"></i></a> |
|
324 | 324 | <?php endif; ?> |
325 | 325 | |
326 | - <?php if ( ! empty( $author_email ) ) : ?> |
|
327 | - <a href="mailto:<?php echo esc_attr( $author_email ); ?>" class="archive-author-social-link archive-author-social-link-email"><i class="fa fa-envelope" aria-hidden="true"></i></a> |
|
326 | + <?php if ( ! empty($author_email)) : ?> |
|
327 | + <a href="mailto:<?php echo esc_attr($author_email); ?>" class="archive-author-social-link archive-author-social-link-email"><i class="fa fa-envelope" aria-hidden="true"></i></a> |
|
328 | 328 | <?php endif; ?> |
329 | 329 | |
330 | - <?php if ( ! empty( $author_facebook ) ) : ?> |
|
331 | - <a href="<?php echo esc_url( $author_facebook ); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a> |
|
330 | + <?php if ( ! empty($author_facebook)) : ?> |
|
331 | + <a href="<?php echo esc_url($author_facebook); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a> |
|
332 | 332 | <?php endif; ?> |
333 | 333 | |
334 | - <?php if ( ! empty( $author_twitter ) ) : ?> |
|
335 | - <a href="https://twitter.com/<?php echo esc_attr( $author_twitter ); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a> |
|
334 | + <?php if ( ! empty($author_twitter)) : ?> |
|
335 | + <a href="https://twitter.com/<?php echo esc_attr($author_twitter); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a> |
|
336 | 336 | <?php endif; ?> |
337 | 337 | |
338 | - <?php if ( ! empty( $author_googleplus ) ) : ?> |
|
339 | - <a href="<?php echo esc_url( $author_googleplus ); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-googleplus"><i class="fa fa-google-plus" aria-hidden="true"></i></a> |
|
338 | + <?php if ( ! empty($author_googleplus)) : ?> |
|
339 | + <a href="<?php echo esc_url($author_googleplus); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-googleplus"><i class="fa fa-google-plus" aria-hidden="true"></i></a> |
|
340 | 340 | <?php endif; ?> |
341 | 341 | </div> |
342 | 342 | <?php endif; ?> |
343 | 343 | |
344 | - <?php if ( ! empty( $author_bio ) ) : ?> |
|
345 | - <h2 class="archive-author-title text-center"><?php esc_html_e( 'About the author', 'lsx' ); ?></h2> |
|
346 | - <p class="archive-author-bio"><?php echo wp_kses_post( $author_bio ); ?></p> |
|
344 | + <?php if ( ! empty($author_bio)) : ?> |
|
345 | + <h2 class="archive-author-title text-center"><?php esc_html_e('About the author', 'lsx'); ?></h2> |
|
346 | + <p class="archive-author-bio"><?php echo wp_kses_post($author_bio); ?></p> |
|
347 | 347 | <?php endif; ?> |
348 | 348 | |
349 | 349 | <h2 class="archive-author-posts text-center"> |
350 | 350 | <?php |
351 | 351 | printf( |
352 | 352 | /* Translators: %s: author name */ |
353 | - esc_html__( 'All posts by %s', 'lsx' ), |
|
354 | - esc_html( $author ) |
|
353 | + esc_html__('All posts by %s', 'lsx'), |
|
354 | + esc_html($author) |
|
355 | 355 | ); |
356 | 356 | ?> |
357 | 357 | </h2> |
@@ -361,11 +361,11 @@ discard block |
||
361 | 361 | endif; |
362 | 362 | } |
363 | 363 | |
364 | - add_action( 'lsx_content_wrap_before', 'lsx_author_extra_info', 11 ); |
|
364 | + add_action('lsx_content_wrap_before', 'lsx_author_extra_info', 11); |
|
365 | 365 | |
366 | 366 | endif; |
367 | 367 | |
368 | -if ( ! function_exists( 'lsx_post_header' ) ) : |
|
368 | +if ( ! function_exists('lsx_post_header')) : |
|
369 | 369 | |
370 | 370 | /** |
371 | 371 | * Displays the post header. |
@@ -375,21 +375,21 @@ discard block |
||
375 | 375 | */ |
376 | 376 | function lsx_post_header() { |
377 | 377 | $default_size = 'sm'; |
378 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
378 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
379 | 379 | |
380 | - if ( is_singular( 'post' ) ) : |
|
380 | + if (is_singular('post')) : |
|
381 | 381 | $format = get_post_format(); |
382 | 382 | |
383 | - if ( false === $format ) { |
|
383 | + if (false === $format) { |
|
384 | 384 | $format = 'standard'; |
385 | 385 | } |
386 | 386 | |
387 | - $format = lsx_translate_format_to_fontawesome( $format ); |
|
387 | + $format = lsx_translate_format_to_fontawesome($format); |
|
388 | 388 | ?> |
389 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
389 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
390 | 390 | <header class="archive-header"> |
391 | 391 | <h1 class="archive-title"> |
392 | - <i class="format-link fa fa-<?php echo esc_attr( $format ); ?>"></i> |
|
392 | + <i class="format-link fa fa-<?php echo esc_attr($format); ?>"></i> |
|
393 | 393 | <span><?php the_title(); ?></span> |
394 | 394 | </h1> |
395 | 395 | </header> |
@@ -398,11 +398,11 @@ discard block |
||
398 | 398 | endif; |
399 | 399 | } |
400 | 400 | |
401 | - add_action( 'lsx_entry_top', 'lsx_post_header' ); |
|
401 | + add_action('lsx_entry_top', 'lsx_post_header'); |
|
402 | 402 | |
403 | 403 | endif; |
404 | 404 | |
405 | -if ( ! function_exists( 'lsx_add_viewport_meta_tag' ) ) : |
|
405 | +if ( ! function_exists('lsx_add_viewport_meta_tag')) : |
|
406 | 406 | |
407 | 407 | /** |
408 | 408 | * Add Viewport Meta Tag to head. |
@@ -416,11 +416,11 @@ discard block |
||
416 | 416 | <?php |
417 | 417 | } |
418 | 418 | |
419 | - add_action( 'wp_head', 'lsx_add_viewport_meta_tag' ); |
|
419 | + add_action('wp_head', 'lsx_add_viewport_meta_tag'); |
|
420 | 420 | |
421 | 421 | endif; |
422 | 422 | |
423 | -if ( ! function_exists( 'lsx_header_search_form' ) ) : |
|
423 | +if ( ! function_exists('lsx_header_search_form')) : |
|
424 | 424 | |
425 | 425 | /** |
426 | 426 | * Add a search form to just above the nav menu. |
@@ -429,13 +429,13 @@ discard block |
||
429 | 429 | * @subpackage layout |
430 | 430 | */ |
431 | 431 | function lsx_header_search_form() { |
432 | - $search_form = get_theme_mod( 'lsx_header_search', false ); |
|
432 | + $search_form = get_theme_mod('lsx_header_search', false); |
|
433 | 433 | |
434 | - if ( false !== $search_form || is_customize_preview() ) { |
|
435 | - get_search_form( true ); |
|
434 | + if (false !== $search_form || is_customize_preview()) { |
|
435 | + get_search_form(true); |
|
436 | 436 | } |
437 | 437 | } |
438 | 438 | |
439 | - add_action( 'lsx_nav_before', 'lsx_header_search_form', 0 ); |
|
439 | + add_action('lsx_nav_before', 'lsx_header_search_form', 0); |
|
440 | 440 | |
441 | 441 | endif; |
@@ -276,10 +276,13 @@ |
||
276 | 276 | <?php lsx_global_header_inner_bottom(); ?> |
277 | 277 | </div> |
278 | 278 | <?php |
279 | - else : |
|
279 | + else { |
|
280 | + : |
|
280 | 281 | // Display only the breadcrumbs |
281 | 282 | ?> |
282 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
283 | + <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); |
|
284 | + } |
|
285 | + ?>-12"> |
|
283 | 286 | <?php lsx_global_header_inner_bottom(); ?> |
284 | 287 | </div> |
285 | 288 | <?php |