Passed
Push — master ( 4fb7fa...7a160d )
by Fernando
02:34
created
woocommerce/content-widget-review.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) {
2
+if ( ! defined('ABSPATH')) {
3 3
 	exit;
4 4
 }
5 5
 
@@ -7,31 +7,31 @@  discard block
 block discarded – undo
7 7
 
8 8
 <div class="lsx-woocommerce-review-slot">
9 9
 	<div class="lsx-woocommerce-review-flex">
10
-		<a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>">
10
+		<a href="<?php echo esc_url(get_comment_link($comment->comment_ID)); ?>">
11 11
 			<figure class="lsx-woocommerce-avatar">
12
-				<?php echo $_product->get_image( 'lsx-thumbnail-square' ); ?>
12
+				<?php echo $_product->get_image('lsx-thumbnail-square'); ?>
13 13
 			</figure>
14 14
 		</a>
15 15
 
16 16
 		<div class="lsx-woocommerce-review-box">
17 17
 			<div class="lsx-woocommerce-rating">
18
-				<?php echo wc_get_rating_html( $rating ); ?>
18
+				<?php echo wc_get_rating_html($rating); ?>
19 19
 			</div>
20 20
 
21 21
 			<h5 class="lsx-woocommerce-title">
22
-				<a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>"><?php echo $_product->get_name(); ?></a>
22
+				<a href="<?php echo esc_url(get_comment_link($comment->comment_ID)); ?>"><?php echo $_product->get_name(); ?></a>
23 23
 			</h5>
24 24
 
25 25
 			<p class="lsx-woocommerce-reviewer">
26 26
 				<?php
27 27
 					/* translators: %s: review author */
28
-					printf( esc_html__( 'by %s', 'lsx' ), get_comment_author() );
28
+					printf(esc_html__('by %s', 'lsx'), get_comment_author());
29 29
 				?>
30 30
 			</p>
31 31
 
32 32
 			<div class="lsx-woocommerce-content">
33
-				<p><?php echo wp_kses_post( $comment->comment_content ); ?></p>
34
-				<p><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>" class="moretag"><?php esc_attr_e( 'View more', 'lsx' ); ?></a></p>
33
+				<p><?php echo wp_kses_post($comment->comment_content); ?></p>
34
+				<p><a href="<?php echo esc_url(get_comment_link($comment->comment_ID)); ?>" class="moretag"><?php esc_attr_e('View more', 'lsx'); ?></a></p>
35 35
 			</div>
36 36
 		</div>
37 37
 	</div>
Please login to merge, or discard this patch.
includes/template-tags.php 1 patch
Spacing   +133 added lines, -133 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
  * @subpackage template-tags
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! function_exists( 'lsx_breadcrumbs' ) ) :
13
+if ( ! function_exists('lsx_breadcrumbs')) :
14 14
 
15 15
 	/**
16 16
 	 * Breadcrumbs.
@@ -19,43 +19,43 @@  discard block
 block discarded – undo
19 19
 	 * @subpackage template-tags
20 20
 	 */
21 21
 	function lsx_breadcrumbs() {
22
-		if ( ! function_exists( 'yoast_breadcrumb' ) && ! function_exists( 'woocommerce_breadcrumb' ) ) {
22
+		if ( ! function_exists('yoast_breadcrumb') && ! function_exists('woocommerce_breadcrumb')) {
23 23
 			return null;
24 24
 		}
25 25
 
26
-		$show_on_front = get_option( 'show_on_front' );
26
+		$show_on_front = get_option('show_on_front');
27 27
 
28
-		if ( ( 'posts' === $show_on_front && is_home() ) || ( 'page' === $show_on_front && is_front_page() ) ) {
28
+		if (('posts' === $show_on_front && is_home()) || ('page' === $show_on_front && is_front_page())) {
29 29
 			return;
30 30
 		}
31 31
 
32
-		if ( function_exists( 'woocommerce_breadcrumb' ) ) {
32
+		if (function_exists('woocommerce_breadcrumb')) {
33 33
 			ob_start();
34 34
 
35
-			woocommerce_breadcrumb( array(
35
+			woocommerce_breadcrumb(array(
36 36
 				'wrap_before' => '<div class="breadcrumbs-container breadcrumbs-woocommerce"><div class="container"><div class="row"><div class="col-xs-12">',
37 37
 				'wrap_after'  => '</div></div></div></div>',
38 38
 				'before'      => '<span>',
39 39
 				'after'       => '</span>',
40
-			) );
40
+			));
41 41
 
42 42
 			$output = ob_get_clean();
43
-		} elseif ( function_exists( 'yoast_breadcrumb' ) ) {
44
-			$output = yoast_breadcrumb( null, null, false );
43
+		} elseif (function_exists('yoast_breadcrumb')) {
44
+			$output = yoast_breadcrumb(null, null, false);
45 45
 			$output = '<div class="breadcrumbs-container breadcrumbs-yoast"><div class="container"><div class="row"><div class="col-xs-12">' . $output . '</div></div></div></div>';
46 46
 		}
47 47
 
48
-		$output = apply_filters( 'lsx_breadcrumbs', $output );
48
+		$output = apply_filters('lsx_breadcrumbs', $output);
49 49
 
50
-		echo wp_kses_post( $output );
50
+		echo wp_kses_post($output);
51 51
 	}
52 52
 
53 53
 endif;
54 54
 
55
-add_action( 'lsx_banner_inner_bottom', 'lsx_breadcrumbs', 100 );
56
-add_action( 'lsx_global_header_inner_bottom', 'lsx_breadcrumbs', 100 );
55
+add_action('lsx_banner_inner_bottom', 'lsx_breadcrumbs', 100);
56
+add_action('lsx_global_header_inner_bottom', 'lsx_breadcrumbs', 100);
57 57
 
58
-if ( ! function_exists( 'lsx_breadcrumbs_wpseo_seperator_filter' ) ) :
58
+if ( ! function_exists('lsx_breadcrumbs_wpseo_seperator_filter')) :
59 59
 
60 60
 	/**
61 61
 	 * Replaces the seperator.
@@ -63,16 +63,16 @@  discard block
 block discarded – undo
63 63
 	 * @package    lsx
64 64
 	 * @subpackage template-tags
65 65
 	 */
66
-	function lsx_breadcrumbs_wpseo_seperator_filter( $seperator ) {
66
+	function lsx_breadcrumbs_wpseo_seperator_filter($seperator) {
67 67
 		$seperator = '<i class="fa fa-angle-right" aria-hidden="true"></i>';
68 68
 		return $seperator;
69 69
 	}
70 70
 
71 71
 endif;
72 72
 
73
-add_filter( 'wpseo_breadcrumb_separator', 'lsx_breadcrumbs_wpseo_seperator_filter' );
73
+add_filter('wpseo_breadcrumb_separator', 'lsx_breadcrumbs_wpseo_seperator_filter');
74 74
 
75
-if ( ! function_exists( 'lsx_breadcrumbs_woocommerce_seperator_filter' ) ) :
75
+if ( ! function_exists('lsx_breadcrumbs_woocommerce_seperator_filter')) :
76 76
 
77 77
 	/**
78 78
 	 * Replaces the seperator.
@@ -80,16 +80,16 @@  discard block
 block discarded – undo
80 80
 	 * @package    lsx
81 81
 	 * @subpackage template-tags
82 82
 	 */
83
-	function lsx_breadcrumbs_woocommerce_seperator_filter( $defaults ) {
83
+	function lsx_breadcrumbs_woocommerce_seperator_filter($defaults) {
84 84
 		$defaults['delimiter'] = '<i class="fa fa-angle-right" aria-hidden="true"></i>';
85 85
 		return $defaults;
86 86
 	}
87 87
 
88 88
 endif;
89 89
 
90
-add_filter( 'woocommerce_breadcrumb_defaults', 'lsx_breadcrumbs_woocommerce_seperator_filter' );
90
+add_filter('woocommerce_breadcrumb_defaults', 'lsx_breadcrumbs_woocommerce_seperator_filter');
91 91
 
92
-if ( ! function_exists( 'lsx_site_title' ) ) :
92
+if ( ! function_exists('lsx_site_title')) :
93 93
 
94 94
 	/**
95 95
 	 * Displays logo when applicable.
@@ -100,15 +100,15 @@  discard block
 block discarded – undo
100 100
 	function lsx_site_title() {
101 101
 		?>
102 102
 			<div class="site-branding">
103
-				<h1 class="site-title"><a title="<?php bloginfo( 'name' ); ?>" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
104
-				<p class="site-description"><?php bloginfo( 'description' ); ?></p>
103
+				<h1 class="site-title"><a title="<?php bloginfo('name'); ?>" href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a></h1>
104
+				<p class="site-description"><?php bloginfo('description'); ?></p>
105 105
 			</div>
106 106
 		<?php
107 107
 	}
108 108
 
109 109
 endif;
110 110
 
111
-if ( ! function_exists( 'lsx_post_meta_list_top' ) ) :
111
+if ( ! function_exists('lsx_post_meta_list_top')) :
112 112
 
113 113
 	/**
114 114
 	 * Add customisable post meta (post list - above title).
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
 
130 130
 endif;
131 131
 
132
-if ( ! function_exists( 'lsx_post_meta_single_top' ) ) :
132
+if ( ! function_exists('lsx_post_meta_single_top')) :
133 133
 
134 134
 	/**
135 135
 	 * Add customisable post meta (single post - above title).
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
 
151 151
 endif;
152 152
 
153
-if ( ! function_exists( 'lsx_post_meta_single_bottom' ) ) :
153
+if ( ! function_exists('lsx_post_meta_single_bottom')) :
154 154
 
155 155
 	/**
156 156
 	 * Add customisable post meta (single post - below title).
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 
170 170
 endif;
171 171
 
172
-if ( ! function_exists( 'lsx_post_meta_avatar' ) ) :
172
+if ( ! function_exists('lsx_post_meta_avatar')) :
173 173
 
174 174
 	/**
175 175
 	 * Add customisable post meta: author's avatar.
@@ -179,20 +179,20 @@  discard block
 block discarded – undo
179 179
 	 */
180 180
 	function lsx_post_meta_avatar() {
181 181
 		$author = get_the_author();
182
-		$author_id = get_the_author_meta( 'ID' );
183
-		$author_avatar = get_avatar( $author_id, 80 );
184
-		$author_url = get_author_posts_url( $author_id );
182
+		$author_id = get_the_author_meta('ID');
183
+		$author_avatar = get_avatar($author_id, 80);
184
+		$author_url = get_author_posts_url($author_id);
185 185
 
186 186
 		printf(
187 187
 			'<a href="%1$s" class="post-meta-avatar">%2$s</a>',
188
-			esc_url( $author_url ),
189
-			wp_kses_post( $author_avatar )
188
+			esc_url($author_url),
189
+			wp_kses_post($author_avatar)
190 190
 		);
191 191
 	}
192 192
 
193 193
 endif;
194 194
 
195
-if ( ! function_exists( 'lsx_post_meta_date' ) ) :
195
+if ( ! function_exists('lsx_post_meta_date')) :
196 196
 
197 197
 	/**
198 198
 	 * Add customisable post meta: post date.
@@ -203,23 +203,23 @@  discard block
 block discarded – undo
203 203
 	function lsx_post_meta_date() {
204 204
 		$time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
205 205
 
206
-		$time_string = sprintf( $time_string,
207
-			esc_attr( get_the_date( 'c' ) ),
206
+		$time_string = sprintf($time_string,
207
+			esc_attr(get_the_date('c')),
208 208
 			get_the_date(),
209
-			esc_attr( get_the_modified_date( 'c' ) ),
209
+			esc_attr(get_the_modified_date('c')),
210 210
 			get_the_modified_date()
211 211
 		);
212 212
 
213 213
 		printf(
214 214
 			'<span class="post-meta-time"><a href="%1$s" rel="bookmark">%2$s</a></span>',
215
-			esc_url( get_permalink() ),
216
-			wp_kses_post( $time_string )
215
+			esc_url(get_permalink()),
216
+			wp_kses_post($time_string)
217 217
 		);
218 218
 	}
219 219
 
220 220
 endif;
221 221
 
222
-if ( ! function_exists( 'lsx_post_meta_author' ) ) :
222
+if ( ! function_exists('lsx_post_meta_author')) :
223 223
 
224 224
 	/**
225 225
 	 * Add customisable post meta: post author.
@@ -229,27 +229,27 @@  discard block
 block discarded – undo
229 229
 	 */
230 230
 	function lsx_post_meta_author() {
231 231
 		$author = get_the_author();
232
-		$author_url = get_author_posts_url( get_the_author_meta( 'ID' ) );
232
+		$author_url = get_author_posts_url(get_the_author_meta('ID'));
233 233
 
234
-		if ( empty( $author ) ) {
234
+		if (empty($author)) {
235 235
 			global $post;
236 236
 
237
-			$author = get_user_by( 'ID', $post->post_author );
237
+			$author = get_user_by('ID', $post->post_author);
238 238
 			$author = $author->display_name;
239
-			$author_url = get_author_posts_url( $post->post_author );
239
+			$author_url = get_author_posts_url($post->post_author);
240 240
 		}
241 241
 
242 242
 		printf(
243 243
 			'<span class="post-meta-author"><span>%1$s</span> <a href="%2$s">%3$s</a></span>',
244
-			esc_html__( 'by', 'lsx' ),
245
-			esc_url( $author_url ),
246
-			esc_html( $author )
244
+			esc_html__('by', 'lsx'),
245
+			esc_url($author_url),
246
+			esc_html($author)
247 247
 		);
248 248
 	}
249 249
 
250 250
 endif;
251 251
 
252
-if ( ! function_exists( 'lsx_post_meta_category' ) ) :
252
+if ( ! function_exists('lsx_post_meta_category')) :
253 253
 
254 254
 	/**
255 255
 	 * Add customisable post meta: post category(ies).
@@ -258,25 +258,25 @@  discard block
 block discarded – undo
258 258
 	 * @subpackage template-tags
259 259
 	 */
260 260
 	function lsx_post_meta_category() {
261
-		$post_categories = wp_get_post_categories( get_the_ID() );
261
+		$post_categories = wp_get_post_categories(get_the_ID());
262 262
 		$cats = array();
263 263
 
264
-		foreach ( $post_categories as $c ) {
265
-			$cat = get_category( $c );
264
+		foreach ($post_categories as $c) {
265
+			$cat = get_category($c);
266 266
 			/* Translators: %s: category name */
267
-			$cats[] = '<a href="' . esc_url( get_category_link( $cat->term_id ) ) . '" title="' . sprintf( esc_html__( 'View all posts in %s' , 'lsx' ), $cat->name ) . '">' . $cat->name . '</a>';
267
+			$cats[] = '<a href="' . esc_url(get_category_link($cat->term_id)) . '" title="' . sprintf(esc_html__('View all posts in %s', 'lsx'), $cat->name) . '">' . $cat->name . '</a>';
268 268
 		}
269 269
 
270
-		if ( ! empty( $cats ) ) {
270
+		if ( ! empty($cats)) {
271 271
 			?>
272
-			<span class="post-meta-categories"><span><?php esc_html_e( 'Posted in', 'lsx' ); ?></span> <?php echo wp_kses_post( implode( ', ', $cats ) ); ?></span>
272
+			<span class="post-meta-categories"><span><?php esc_html_e('Posted in', 'lsx'); ?></span> <?php echo wp_kses_post(implode(', ', $cats)); ?></span>
273 273
 			<?php
274 274
 		}
275 275
 	}
276 276
 
277 277
 endif;
278 278
 
279
-if ( ! function_exists( 'lsx_post_tags' ) ) :
279
+if ( ! function_exists('lsx_post_tags')) :
280 280
 
281 281
 	/**
282 282
 	 * Add customisable post meta: post tag(s).
@@ -285,10 +285,10 @@  discard block
 block discarded – undo
285 285
 	 * @subpackage template-tags
286 286
 	 */
287 287
 	function lsx_post_tags() {
288
-		if ( has_tag() ) :
288
+		if (has_tag()) :
289 289
 			?>
290 290
 			<div class="post-tags">
291
-				<?php echo wp_kses_post( get_the_tag_list( '' ) ); ?>
291
+				<?php echo wp_kses_post(get_the_tag_list('')); ?>
292 292
 			</div>
293 293
 			<?php
294 294
 		endif;
@@ -296,9 +296,9 @@  discard block
 block discarded – undo
296 296
 
297 297
 endif;
298 298
 
299
-add_action( 'lsx_content_post_tags', 'lsx_post_tags', 10 );
299
+add_action('lsx_content_post_tags', 'lsx_post_tags', 10);
300 300
 
301
-if ( ! function_exists( 'lsx_sharing_output' ) ) :
301
+if ( ! function_exists('lsx_sharing_output')) :
302 302
 
303 303
 	/**
304 304
 	 * Display sharing buttons.
@@ -308,14 +308,14 @@  discard block
 block discarded – undo
308 308
 	 */
309 309
 	function lsx_sharing_output() {
310 310
 		global $lsx_sharing;
311
-		echo wp_kses_post( $lsx_sharing->sharing_buttons() );
311
+		echo wp_kses_post($lsx_sharing->sharing_buttons());
312 312
 	}
313 313
 
314 314
 endif;
315 315
 
316
-add_action( 'lsx_content_sharing', 'lsx_sharing_output', 20 );
316
+add_action('lsx_content_sharing', 'lsx_sharing_output', 20);
317 317
 
318
-if ( ! function_exists( 'lsx_translate_format_to_fontawesome' ) ) :
318
+if ( ! function_exists('lsx_translate_format_to_fontawesome')) :
319 319
 
320 320
 	/**
321 321
 	 * Translate post format to Font Awesome class.
@@ -323,8 +323,8 @@  discard block
 block discarded – undo
323 323
 	 * @package    lsx
324 324
 	 * @subpackage template-tags
325 325
 	 */
326
-	function lsx_translate_format_to_fontawesome( $format ) {
327
-		switch ( $format ) {
326
+	function lsx_translate_format_to_fontawesome($format) {
327
+		switch ($format) {
328 328
 			case 'image':
329 329
 				$format = 'camera';
330 330
 				break;
@@ -356,7 +356,7 @@  discard block
 block discarded – undo
356 356
 
357 357
 endif;
358 358
 
359
-if ( ! function_exists( 'lsx_paging_nav' ) ) :
359
+if ( ! function_exists('lsx_paging_nav')) :
360 360
 
361 361
 	/**
362 362
 	 * Display navigation to next/previous set of posts when applicable.
@@ -367,37 +367,37 @@  discard block
 block discarded – undo
367 367
 	function lsx_paging_nav() {
368 368
 		global $wp_query;
369 369
 
370
-		if ( $wp_query->max_num_pages < 2 ) {
370
+		if ($wp_query->max_num_pages < 2) {
371 371
 			return;
372 372
 		}
373 373
 
374
-		if ( true === apply_filters( 'lsx_paging_nav_disable', false ) ) {
374
+		if (true === apply_filters('lsx_paging_nav_disable', false)) {
375 375
 			return true;
376
-		} elseif ( current_theme_supports( 'infinite-scroll' ) && class_exists( 'The_Neverending_Home_Page' ) ) {
376
+		} elseif (current_theme_supports('infinite-scroll') && class_exists('The_Neverending_Home_Page')) {
377 377
 			return true;
378 378
 		} else {
379 379
 			$html = '';
380 380
 			$html .= '<div class="lsx-pagination-wrapper">' . PHP_EOL;
381 381
 			$html .= '<div class="lsx-breaker"></div>' . PHP_EOL;
382 382
 			$html .= '<div class="lsx-pagination">' . PHP_EOL;
383
-			$html .= paginate_links( array(
384
-				'base'               => str_replace( 999999999, '%#%', esc_url( get_pagenum_link( 999999999 ) ) ),
383
+			$html .= paginate_links(array(
384
+				'base'               => str_replace(999999999, '%#%', esc_url(get_pagenum_link(999999999))),
385 385
 				'format'             => '?paged=%#%',
386 386
 				'total'              => $wp_query->max_num_pages,
387
-				'current'            => max( 1, intval( get_query_var( 'paged' ) ) ),
388
-				'prev_text'          => '<span class="meta-nav">&larr;</span> ' . esc_html__( 'Previous', 'lsx' ),
389
-				'next_text'          => esc_html__( 'Next', 'lsx' ) . ' <span class="meta-nav">&rarr;</span>',
390
-			) );
387
+				'current'            => max(1, intval(get_query_var('paged'))),
388
+				'prev_text'          => '<span class="meta-nav">&larr;</span> ' . esc_html__('Previous', 'lsx'),
389
+				'next_text'          => esc_html__('Next', 'lsx') . ' <span class="meta-nav">&rarr;</span>',
390
+			));
391 391
 			$html .= '</div>' . PHP_EOL;
392 392
 			$html .= '</div>' . PHP_EOL;
393 393
 
394
-			echo wp_kses_post( $html );
394
+			echo wp_kses_post($html);
395 395
 		}
396 396
 	}
397 397
 
398 398
 endif;
399 399
 
400
-if ( ! function_exists( 'lsx_post_nav' ) ) :
400
+if ( ! function_exists('lsx_post_nav')) :
401 401
 
402 402
 	/**
403 403
 	 * Display navigation to next/previous post when applicable.
@@ -406,24 +406,24 @@  discard block
 block discarded – undo
406 406
 	 * @subpackage template-tags
407 407
 	 */
408 408
 	function lsx_post_nav() {
409
-		$previous = ( is_attachment() ) ? get_post( get_post()->post_parent ) : get_adjacent_post( false, '', true );
410
-		$next     = get_adjacent_post( false, '', false );
409
+		$previous = (is_attachment()) ? get_post(get_post()->post_parent) : get_adjacent_post(false, '', true);
410
+		$next     = get_adjacent_post(false, '', false);
411 411
 
412
-		if ( ! $next && ! $previous ) {
412
+		if ( ! $next && ! $previous) {
413 413
 			return;
414 414
 		}
415 415
 
416 416
 		$default_size = 'sm';
417
-		$size         = apply_filters( 'lsx_bootstrap_column_size', $default_size );
417
+		$size         = apply_filters('lsx_bootstrap_column_size', $default_size);
418 418
 		?>
419 419
 		<nav class="navigation post-navigation" role="navigation">
420 420
 			<div class="lsx-breaker"></div>
421 421
 			<div class="nav-links pager row">
422
-				<div class="previous <?php echo 'col-' . esc_attr( $size ) . '-6'; ?>">
423
-					<?php previous_post_link( '%link', '<p class="nav-links-description">' . esc_html_x( 'Previous Post', 'Previous post link', 'lsx' ) . '</p><h3>%title</h3>' ); ?>
422
+				<div class="previous <?php echo 'col-' . esc_attr($size) . '-6'; ?>">
423
+					<?php previous_post_link('%link', '<p class="nav-links-description">' . esc_html_x('Previous Post', 'Previous post link', 'lsx') . '</p><h3>%title</h3>'); ?>
424 424
 				</div>
425
-				<div class="next <?php echo 'col-' . esc_attr( $size ) . '-6'; ?>">
426
-					<?php next_post_link( '%link', '<p class="nav-links-description">' . esc_html_x( 'Next Post', 'Next post link', 'lsx' ) . '</p><h3>%title</h3>' ); ?>
425
+				<div class="next <?php echo 'col-' . esc_attr($size) . '-6'; ?>">
426
+					<?php next_post_link('%link', '<p class="nav-links-description">' . esc_html_x('Next Post', 'Next post link', 'lsx') . '</p><h3>%title</h3>'); ?>
427 427
 				</div>
428 428
 			</div><!-- .nav-links -->
429 429
 		</nav><!-- .navigation -->
@@ -432,7 +432,7 @@  discard block
 block discarded – undo
432 432
 
433 433
 endif;
434 434
 
435
-if ( ! function_exists( 'lsx_site_identity' ) ) :
435
+if ( ! function_exists('lsx_site_identity')) :
436 436
 
437 437
 	/**
438 438
 	 * Outputs either the Site Title or the Site Logo.
@@ -441,10 +441,10 @@  discard block
 block discarded – undo
441 441
 	 * @subpackage template-tags
442 442
 	 */
443 443
 	function lsx_site_identity() {
444
-		if ( function_exists( 'has_custom_logo' ) && has_custom_logo() ) {
444
+		if (function_exists('has_custom_logo') && has_custom_logo()) {
445 445
 			the_custom_logo();
446 446
 		} else {
447
-			if ( get_theme_mod( 'site_logo_header_text', 1 ) ) {
447
+			if (get_theme_mod('site_logo_header_text', 1)) {
448 448
 				lsx_site_title();
449 449
 			}
450 450
 		}
@@ -452,7 +452,7 @@  discard block
 block discarded – undo
452 452
 
453 453
 endif;
454 454
 
455
-if ( ! function_exists( 'lsx_navbar_header' ) ) :
455
+if ( ! function_exists('lsx_navbar_header')) :
456 456
 	/**
457 457
 	 * Outputs the Nav Menu.
458 458
 	 *
@@ -463,17 +463,17 @@  discard block
 block discarded – undo
463 463
 		?>
464 464
 		<div class="navbar-header" itemscope itemtype="http://schema.org/WebPage">
465 465
 			<?php
466
-				if ( has_nav_menu( 'primary' ) ) :
466
+				if (has_nav_menu('primary')) :
467 467
 					?>
468 468
 					<div class="wrapper-toggle" data-toggle="collapse" data-target=".primary-navbar">
469 469
 						<button type="button" class="navbar-toggle">
470
-							<span class="sr-only"><?php esc_html_e( 'Toggle navigation', 'lsx' ); ?></span>
470
+							<span class="sr-only"><?php esc_html_e('Toggle navigation', 'lsx'); ?></span>
471 471
 							<span class="icon-bar"></span>
472 472
 							<span class="icon-bar"></span>
473 473
 							<span class="icon-bar"></span>
474 474
 							<span class="icon-bar"></span>
475 475
 						</button>
476
-						<span class="mobile-menu-title"><?php esc_html_e( 'Menu', 'lsx' ); ?></span>
476
+						<span class="mobile-menu-title"><?php esc_html_e('Menu', 'lsx'); ?></span>
477 477
 					</div>
478 478
 					<?php
479 479
 				endif;
@@ -486,9 +486,9 @@  discard block
 block discarded – undo
486 486
 
487 487
 endif;
488 488
 
489
-add_action( 'lsx_nav_before', 'lsx_navbar_header' );
489
+add_action('lsx_nav_before', 'lsx_navbar_header');
490 490
 
491
-if ( ! function_exists( 'lsx_nav_menu' ) ) :
491
+if ( ! function_exists('lsx_nav_menu')) :
492 492
 
493 493
 	/**
494 494
 	 * Outputs the Nav Menu.
@@ -497,17 +497,17 @@  discard block
 block discarded – undo
497 497
 	 * @subpackage template-tags
498 498
 	 */
499 499
 	function lsx_nav_menu() {
500
-		if ( has_nav_menu( 'primary' ) ) :
500
+		if (has_nav_menu('primary')) :
501 501
 			?>
502 502
 			<nav class="primary-navbar collapse navbar-collapse">
503 503
 				<?php
504
-					wp_nav_menu( array(
504
+					wp_nav_menu(array(
505 505
 						'theme_location' => 'primary',
506 506
 						'depth'          => 3,
507 507
 						'container'      => false,
508 508
 						'menu_class'     => 'nav navbar-nav',
509 509
 						'walker'         => new LSX_Bootstrap_Navwalker(),
510
-					) );
510
+					));
511 511
 				?>
512 512
 			</nav>
513 513
 			<?php
@@ -516,7 +516,7 @@  discard block
 block discarded – undo
516 516
 
517 517
 endif;
518 518
 
519
-if ( ! function_exists( 'lsx_sitemap_pages' ) ) :
519
+if ( ! function_exists('lsx_sitemap_pages')) :
520 520
 
521 521
 	/**
522 522
 	 * Outputs Pages for the Sitemap Template.
@@ -532,15 +532,15 @@  discard block
 block discarded – undo
532 532
 			'post_type'      => 'page',
533 533
 		);
534 534
 
535
-		$pages = new WP_Query( $page_args );
535
+		$pages = new WP_Query($page_args);
536 536
 
537
-		if ( $pages->have_posts() ) {
538
-			echo '<h2>' . esc_html__( 'Pages', 'lsx' ) . '</h2>';
537
+		if ($pages->have_posts()) {
538
+			echo '<h2>' . esc_html__('Pages', 'lsx') . '</h2>';
539 539
 			echo '<ul>';
540 540
 
541
-			while ( $pages->have_posts() ) {
541
+			while ($pages->have_posts()) {
542 542
 				$pages->the_post();
543
-				echo '<li class="page_item page-item-' . esc_attr( get_the_ID() ) . '"><a href="' . esc_url( get_permalink() ) . '" title="">' . get_the_title() . '</a></li>';
543
+				echo '<li class="page_item page-item-' . esc_attr(get_the_ID()) . '"><a href="' . esc_url(get_permalink()) . '" title="">' . get_the_title() . '</a></li>';
544 544
 			}
545 545
 
546 546
 			echo '</ul>';
@@ -550,7 +550,7 @@  discard block
 block discarded – undo
550 550
 
551 551
 endif;
552 552
 
553
-if ( ! function_exists( 'lsx_sitemap_custom_post_type' ) ) :
553
+if ( ! function_exists('lsx_sitemap_custom_post_type')) :
554 554
 
555 555
 	/**
556 556
 	 * Outputs a custom post type section.
@@ -564,9 +564,9 @@  discard block
 block discarded – undo
564 564
 			'_builtin' => false,
565 565
 		);
566 566
 
567
-		$post_types = get_post_types( $args , 'names' );
567
+		$post_types = get_post_types($args, 'names');
568 568
 
569
-		foreach ( $post_types as $post_type ) {
569
+		foreach ($post_types as $post_type) {
570 570
 			$post_type_args = array(
571 571
 				'post_type'      => 'page',
572 572
 				'posts_per_page' => 99,
@@ -574,22 +574,22 @@  discard block
 block discarded – undo
574 574
 				'post_type'      => $post_type,
575 575
 			);
576 576
 
577
-			$post_type_items  = new WP_Query( $post_type_args );
578
-			$post_type_object = get_post_type_object( $post_type );
577
+			$post_type_items  = new WP_Query($post_type_args);
578
+			$post_type_object = get_post_type_object($post_type);
579 579
 
580
-			if ( ! empty( $post_type_object ) ) {
580
+			if ( ! empty($post_type_object)) {
581 581
 				$title = $post_type_object->labels->name;
582 582
 			} else {
583
-				$title = ucwords( $post_type );
583
+				$title = ucwords($post_type);
584 584
 			}
585 585
 
586
-			if ( $post_type_items->have_posts() ) {
587
-				echo '<h2>' . esc_html( $title ) . '</h2>';
586
+			if ($post_type_items->have_posts()) {
587
+				echo '<h2>' . esc_html($title) . '</h2>';
588 588
 				echo '<ul>';
589 589
 
590
-				while ( $post_type_items->have_posts() ) {
590
+				while ($post_type_items->have_posts()) {
591 591
 					$post_type_items->the_post();
592
-					echo '<li class="' . esc_attr( get_post_type() ) . '_item ' . esc_attr( get_post_type() ) . '-item-' . esc_attr( get_the_ID() ) . '"><a href="' . esc_url( get_permalink() ) . '" title="">' . get_the_title() . '</a></li>';
592
+					echo '<li class="' . esc_attr(get_post_type()) . '_item ' . esc_attr(get_post_type()) . '-item-' . esc_attr(get_the_ID()) . '"><a href="' . esc_url(get_permalink()) . '" title="">' . get_the_title() . '</a></li>';
593 593
 				}
594 594
 
595 595
 				echo '</ul>';
@@ -600,7 +600,7 @@  discard block
 block discarded – undo
600 600
 
601 601
 endif;
602 602
 
603
-if ( ! function_exists( 'lsx_sitemap_taxonomy_clouds' ) ) :
603
+if ( ! function_exists('lsx_sitemap_taxonomy_clouds')) :
604 604
 
605 605
 	/**
606 606
 	 * Outputs the public taxonomies.
@@ -614,18 +614,18 @@  discard block
 block discarded – undo
614 614
 			'_builtin' => false,
615 615
 		);
616 616
 
617
-		$taxonomies = get_taxonomies( $taxonomy_args );
617
+		$taxonomies = get_taxonomies($taxonomy_args);
618 618
 
619
-		if ( ! empty( $taxonomies ) ) {
620
-			foreach ( $taxonomies as $taxonomy_id => $taxonomy ) {
621
-				$tag_cloud = wp_tag_cloud( array(
619
+		if ( ! empty($taxonomies)) {
620
+			foreach ($taxonomies as $taxonomy_id => $taxonomy) {
621
+				$tag_cloud = wp_tag_cloud(array(
622 622
 					'taxonomy' => $taxonomy_id,
623 623
 					'echo'     => false,
624
-				) );
624
+				));
625 625
 
626
-				if ( ! empty( $tag_cloud ) ) {
627
-					echo '<h2>' . esc_html( $taxonomy ) . '</h2>';
628
-					echo '<aside id="' . esc_attr( $taxonomy_id ) . '" class="widget widget_' . esc_attr( $taxonomy_id ) . '">' . esc_html( $tag_cloud ) . '</aside>';
626
+				if ( ! empty($tag_cloud)) {
627
+					echo '<h2>' . esc_html($taxonomy) . '</h2>';
628
+					echo '<aside id="' . esc_attr($taxonomy_id) . '" class="widget widget_' . esc_attr($taxonomy_id) . '">' . esc_html($tag_cloud) . '</aside>';
629 629
 				}
630 630
 			}
631 631
 		}
@@ -633,7 +633,7 @@  discard block
 block discarded – undo
633 633
 
634 634
 endif;
635 635
 
636
-if ( ! function_exists( 'lsx_add_top_menu' ) ) :
636
+if ( ! function_exists('lsx_add_top_menu')) :
637 637
 
638 638
 	/**
639 639
 	 * Adds our top menu to the theme.
@@ -642,28 +642,28 @@  discard block
 block discarded – undo
642 642
 	 * @subpackage template-tags
643 643
 	 */
644 644
 	function lsx_add_top_menu() {
645
-		if ( has_nav_menu( 'top-menu' ) || has_nav_menu( 'top-menu-left' ) ) :
645
+		if (has_nav_menu('top-menu') || has_nav_menu('top-menu-left')) :
646 646
 			?>
647 647
 			<div id="top-menu" class="<?php lsx_top_menu_classes(); ?>">
648 648
 				<div class="container">
649
-					<?php if ( has_nav_menu( 'top-menu' ) ) : ?>
649
+					<?php if (has_nav_menu('top-menu')) : ?>
650 650
 						<nav class="top-menu">
651 651
 							<?php
652
-								wp_nav_menu( array(
652
+								wp_nav_menu(array(
653 653
 									'theme_location' => 'top-menu',
654 654
 									'walker'         => new LSX_Bootstrap_Navwalker(),
655
-								) );
655
+								));
656 656
 							?>
657 657
 						</nav>
658 658
 					<?php endif; ?>
659 659
 
660
-					<?php if ( has_nav_menu( 'top-menu-left' ) ) : ?>
660
+					<?php if (has_nav_menu('top-menu-left')) : ?>
661 661
 						<nav class="top-menu pull-left">
662 662
 							<?php
663
-								wp_nav_menu( array(
663
+								wp_nav_menu(array(
664 664
 									'theme_location' => 'top-menu-left',
665 665
 									'walker'         => new LSX_Bootstrap_Navwalker(),
666
-								) );
666
+								));
667 667
 							?>
668 668
 						</nav>
669 669
 					<?php endif; ?>
@@ -675,9 +675,9 @@  discard block
 block discarded – undo
675 675
 
676 676
 endif;
677 677
 
678
-add_action( 'lsx_header_before', 'lsx_add_top_menu' );
678
+add_action('lsx_header_before', 'lsx_add_top_menu');
679 679
 
680
-if ( ! function_exists( 'lsx_get_my_url' ) ) :
680
+if ( ! function_exists('lsx_get_my_url')) :
681 681
 
682 682
 	/**
683 683
 	 * Return URL from a link in the content.
@@ -686,11 +686,11 @@  discard block
 block discarded – undo
686 686
 	 * @subpackage template-tags
687 687
 	 */
688 688
 	function lsx_get_my_url() {
689
-		if ( ! preg_match( '/<a\s[^>]*?href=[\'"](.+?)[\'"]/is', get_the_content(), $matches ) ) {
689
+		if ( ! preg_match('/<a\s[^>]*?href=[\'"](.+?)[\'"]/is', get_the_content(), $matches)) {
690 690
 			return false;
691 691
 		}
692 692
 
693
-		return esc_url_raw( $matches[1] );
693
+		return esc_url_raw($matches[1]);
694 694
 	}
695 695
 
696 696
 endif;
Please login to merge, or discard this patch.
includes/customizer.php 1 patch
Spacing   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
  * @subpackage customizer
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! function_exists( 'lsx_customizer_core_controls' ) ) :
13
+if ( ! function_exists('lsx_customizer_core_controls')) :
14 14
 
15 15
 	/**
16 16
 	 * Returns an array of the core panel.
@@ -20,10 +20,10 @@  discard block
 block discarded – undo
20 20
 	 *
21 21
 	 * @return $lsx_controls array()
22 22
 	 */
23
-	function lsx_customizer_core_controls( $lsx_controls ) {
23
+	function lsx_customizer_core_controls($lsx_controls) {
24 24
 		$lsx_controls['sections']['lsx-core'] = array(
25
-			'title'       => esc_html__( 'Core Settings', 'lsx' ),
26
-			'description' => esc_html__( 'Change the core settings.', 'lsx' ),
25
+			'title'       => esc_html__('Core Settings', 'lsx'),
26
+			'description' => esc_html__('Change the core settings.', 'lsx'),
27 27
 			'priority'    => 21,
28 28
 		);
29 29
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 		);
35 35
 
36 36
 		$lsx_controls['fields']['lsx_lazyload_status'] = array(
37
-			'label'   => esc_html__( 'Lazy Loading Images', 'lsx' ),
37
+			'label'   => esc_html__('Lazy Loading Images', 'lsx'),
38 38
 			'section' => 'lsx-core',
39 39
 			'type'    => 'checkbox',
40 40
 		);
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 		);
47 47
 
48 48
 		$lsx_controls['fields']['lsx_preloader_content_status'] = array(
49
-			'label'   => esc_html__( 'Preloader Content', 'lsx' ),
49
+			'label'   => esc_html__('Preloader Content', 'lsx'),
50 50
 			'section' => 'lsx-core',
51 51
 			'type'    => 'checkbox',
52 52
 		);
@@ -56,9 +56,9 @@  discard block
 block discarded – undo
56 56
 
57 57
 endif;
58 58
 
59
-add_filter( 'lsx_customizer_controls', 'lsx_customizer_core_controls' );
59
+add_filter('lsx_customizer_controls', 'lsx_customizer_core_controls');
60 60
 
61
-if ( ! function_exists( 'lsx_customizer_layout_controls' ) ) :
61
+if ( ! function_exists('lsx_customizer_layout_controls')) :
62 62
 
63 63
 	/**
64 64
 	 * Returns an array of the layout panel.
@@ -68,21 +68,21 @@  discard block
 block discarded – undo
68 68
 	 *
69 69
 	 * @return $lsx_controls array()
70 70
 	 */
71
-	function lsx_customizer_layout_controls( $lsx_controls ) {
71
+	function lsx_customizer_layout_controls($lsx_controls) {
72 72
 		$lsx_controls['sections']['lsx-layout'] = array(
73
-			'title'       => esc_html__( 'Layout', 'lsx' ),
74
-			'description' => esc_html__( 'Change the layout sitewide. If your homepage is set to use a page with a template, the following will not apply to it.', 'lsx' ),
73
+			'title'       => esc_html__('Layout', 'lsx'),
74
+			'description' => esc_html__('Change the layout sitewide. If your homepage is set to use a page with a template, the following will not apply to it.', 'lsx'),
75 75
 			'priority'    => 22,
76 76
 		);
77 77
 
78
-		$lsx_controls['settings']['lsx_header_layout']  = array(
78
+		$lsx_controls['settings']['lsx_header_layout'] = array(
79 79
 			'default'   => 'inline',
80 80
 			'type'      => 'theme_mod',
81 81
 			'transport' => 'postMessage',
82 82
 		);
83 83
 
84 84
 		$lsx_controls['fields']['lsx_header_layout'] = array(
85
-			'label'   => esc_html__( 'Header','lsx' ),
85
+			'label'   => esc_html__('Header', 'lsx'),
86 86
 			'section' => 'lsx-layout',
87 87
 			'control' => 'LSX_Customize_Header_Layout_Control',
88 88
 			'choices' => array(
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 		);
100 100
 
101 101
 		$lsx_controls['fields']['lsx_layout'] = array(
102
-			'label'   => esc_html__( 'Body', 'lsx' ),
102
+			'label'   => esc_html__('Body', 'lsx'),
103 103
 			'section' => 'lsx-layout',
104 104
 			'control' => 'LSX_Customize_Layout_Control',
105 105
 			'choices' => array(
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 		);
117 117
 
118 118
 		$lsx_controls['fields']['lsx_header_fixed'] = array(
119
-			'label'   => esc_html__( 'Fixed Header', 'lsx' ),
119
+			'label'   => esc_html__('Fixed Header', 'lsx'),
120 120
 			'section' => 'lsx-layout',
121 121
 			'type'    => 'checkbox',
122 122
 		);
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 		);
129 129
 
130 130
 		$lsx_controls['fields']['lsx_header_search'] = array(
131
-			'label'   => esc_html__( 'Search Box in Header', 'lsx' ),
131
+			'label'   => esc_html__('Search Box in Header', 'lsx'),
132 132
 			'section' => 'lsx-layout',
133 133
 			'type'    => 'checkbox',
134 134
 		);
@@ -136,9 +136,9 @@  discard block
 block discarded – undo
136 136
 		$lsx_controls['selective_refresh']['lsx_header_search'] = array(
137 137
 			'selector'          => '#lsx-header-search-css',
138 138
 			'render_callback'   => function() {
139
-				$search_form = get_theme_mod( 'lsx_header_search' );
139
+				$search_form = get_theme_mod('lsx_header_search');
140 140
 
141
-				if ( false !== $search_form ) {
141
+				if (false !== $search_form) {
142 142
 					echo 'body #searchform { display: block; }';
143 143
 				} else {
144 144
 					echo 'body #searchform { display: none; }';
@@ -151,9 +151,9 @@  discard block
 block discarded – undo
151 151
 
152 152
 endif;
153 153
 
154
-add_filter( 'lsx_customizer_controls', 'lsx_customizer_layout_controls' );
154
+add_filter('lsx_customizer_controls', 'lsx_customizer_layout_controls');
155 155
 
156
-if ( ! function_exists( 'lsx_customizer_font_controls' ) ) :
156
+if ( ! function_exists('lsx_customizer_font_controls')) :
157 157
 
158 158
 	/**
159 159
 	 * Returns an array of the font controls.
@@ -163,21 +163,21 @@  discard block
 block discarded – undo
163 163
 	 *
164 164
 	 * @return $lsx_controls array()
165 165
 	 */
166
-	function lsx_customizer_font_controls( $lsx_controls ) {
166
+	function lsx_customizer_font_controls($lsx_controls) {
167 167
 		$data_fonts_file = get_template_directory() . '/assets/jsons/lsx-fonts.json';
168
-		$data_fonts = lsx_file_get_contents( $data_fonts_file );
169
-		$data_fonts = apply_filters( 'lsx_fonts_json', $data_fonts );
168
+		$data_fonts = lsx_file_get_contents($data_fonts_file);
169
+		$data_fonts = apply_filters('lsx_fonts_json', $data_fonts);
170 170
 
171 171
 		$data_fonts = '{' . $data_fonts . '}';
172
-		$data_fonts = json_decode( $data_fonts, true );
172
+		$data_fonts = json_decode($data_fonts, true);
173 173
 
174 174
 		$lsx_controls['sections']['lsx-font'] = array(
175
-			'title'       => esc_html__( 'Font', 'lsx' ),
176
-			'description' => esc_html__( 'Change the fonts sitewide.', 'lsx' ),
175
+			'title'       => esc_html__('Font', 'lsx'),
176
+			'description' => esc_html__('Change the fonts sitewide.', 'lsx'),
177 177
 			'priority'    => 41,
178 178
 		);
179 179
 
180
-		$lsx_controls['settings']['lsx_font']  = array(
180
+		$lsx_controls['settings']['lsx_font'] = array(
181 181
 			'default'   => 'lora_noto_sans',
182 182
 			'type'      => 'theme_mod',
183 183
 			'transport' => 'refresh',
@@ -197,9 +197,9 @@  discard block
 block discarded – undo
197 197
 
198 198
 endif;
199 199
 
200
-add_filter( 'lsx_customizer_controls', 'lsx_customizer_font_controls' );
200
+add_filter('lsx_customizer_controls', 'lsx_customizer_font_controls');
201 201
 
202
-if ( ! function_exists( 'lsx_get_customizer_controls' ) ) :
202
+if ( ! function_exists('lsx_get_customizer_controls')) :
203 203
 
204 204
 	/**
205 205
 	 * Returns an array of $controls for the customizer class to generate.
@@ -211,10 +211,10 @@  discard block
 block discarded – undo
211 211
 	 */
212 212
 	function lsx_get_customizer_controls() {
213 213
 		$lsx_controls = array();
214
-		$lsx_controls = apply_filters( 'lsx_customizer_controls', $lsx_controls );
214
+		$lsx_controls = apply_filters('lsx_customizer_controls', $lsx_controls);
215 215
 		return $lsx_controls;
216 216
 	}
217 217
 
218 218
 endif;
219 219
 
220
-$lsx_customizer = new LSX_Theme_Customizer( lsx_get_customizer_controls() );
220
+$lsx_customizer = new LSX_Theme_Customizer(lsx_get_customizer_controls());
Please login to merge, or discard this patch.
includes/plugins/the-events-calendar.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
  * @subpackage the-events-calendar
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! function_exists( 'lsx_tec_scripts_add_styles' ) ) :
13
+if ( ! function_exists('lsx_tec_scripts_add_styles')) :
14 14
 
15 15
 	/**
16 16
 	 * The Events Calendar enqueue styles.
@@ -19,11 +19,11 @@  discard block
 block discarded – undo
19 19
 	 * @subpackage the-events-calendar
20 20
 	 */
21 21
 	function lsx_tec_scripts_add_styles() {
22
-		wp_enqueue_style( 'the-events-calendar-lsx', get_template_directory_uri() . '/assets/css/the-events-calendar.css', array( 'lsx_main' ), LSX_VERSION );
23
-		wp_style_add_data( 'the-events-calendar-lsx', 'rtl', 'replace' );
22
+		wp_enqueue_style('the-events-calendar-lsx', get_template_directory_uri() . '/assets/css/the-events-calendar.css', array('lsx_main'), LSX_VERSION);
23
+		wp_style_add_data('the-events-calendar-lsx', 'rtl', 'replace');
24 24
 	}
25 25
 
26
-	add_action( 'wp_enqueue_scripts', 'lsx_tec_scripts_add_styles' );
26
+	add_action('wp_enqueue_scripts', 'lsx_tec_scripts_add_styles');
27 27
 
28 28
 endif;
29 29
 
Please login to merge, or discard this patch.
includes/plugins/sensei.php 1 patch
Spacing   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@  discard block
 block discarded – undo
6 6
  * @subpackage sensei
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13 13
 global $woothemes_sensei;
14 14
 
15
-if ( ! function_exists( 'lsx_sensei_scripts_add_styles' ) ) :
15
+if ( ! function_exists('lsx_sensei_scripts_add_styles')) :
16 16
 
17 17
 	/**
18 18
 	 * Sensei enqueue styles.
@@ -21,15 +21,15 @@  discard block
 block discarded – undo
21 21
 	 * @subpackage sensei
22 22
 	 */
23 23
 	function lsx_sensei_scripts_add_styles() {
24
-		wp_enqueue_style( 'sensei-lsx', get_template_directory_uri() . '/assets/css/sensei.css', array( 'lsx_main' ), LSX_VERSION );
25
-		wp_style_add_data( 'sensei-lsx', 'rtl', 'replace' );
24
+		wp_enqueue_style('sensei-lsx', get_template_directory_uri() . '/assets/css/sensei.css', array('lsx_main'), LSX_VERSION);
25
+		wp_style_add_data('sensei-lsx', 'rtl', 'replace');
26 26
 	}
27 27
 
28
-	add_action( 'wp_enqueue_scripts', 'lsx_sensei_scripts_add_styles' );
28
+	add_action('wp_enqueue_scripts', 'lsx_sensei_scripts_add_styles');
29 29
 
30 30
 endif;
31 31
 
32
-if ( ! function_exists( 'lsx_sensei_theme_wrapper_start' ) ) :
32
+if ( ! function_exists('lsx_sensei_theme_wrapper_start')) :
33 33
 
34 34
 	/**
35 35
 	 * Sensei wrapper start.
@@ -39,18 +39,18 @@  discard block
 block discarded – undo
39 39
 	 */
40 40
 	function lsx_sensei_theme_wrapper_start() {
41 41
 		lsx_content_wrap_before();
42
-		echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">';
42
+		echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">';
43 43
 		lsx_content_before();
44 44
 		echo '<main id="main" class="site-main" role="main">';
45 45
 		lsx_content_top();
46 46
 	}
47 47
 
48
-	remove_action( 'sensei_before_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper' ), 10 );
49
-	add_action( 'sensei_before_main_content', 'lsx_sensei_theme_wrapper_start' );
48
+	remove_action('sensei_before_main_content', array($woothemes_sensei->frontend, 'sensei_output_content_wrapper'), 10);
49
+	add_action('sensei_before_main_content', 'lsx_sensei_theme_wrapper_start');
50 50
 
51 51
 endif;
52 52
 
53
-if ( ! function_exists( 'lsx_sensei_theme_wrapper_end' ) ) :
53
+if ( ! function_exists('lsx_sensei_theme_wrapper_end')) :
54 54
 
55 55
 	/**
56 56
 	 * Sensei wrapper end.
@@ -66,12 +66,12 @@  discard block
 block discarded – undo
66 66
 		lsx_content_wrap_after();
67 67
 	}
68 68
 
69
-	remove_action( 'sensei_after_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper_end' ), 10 );
70
-	add_action( 'sensei_after_main_content', 'lsx_sensei_theme_wrapper_end' );
69
+	remove_action('sensei_after_main_content', array($woothemes_sensei->frontend, 'sensei_output_content_wrapper_end'), 10);
70
+	add_action('sensei_after_main_content', 'lsx_sensei_theme_wrapper_end');
71 71
 
72 72
 endif;
73 73
 
74
-if ( ! function_exists( 'lsx_sensei_disable_lsx_banner' ) ) :
74
+if ( ! function_exists('lsx_sensei_disable_lsx_banner')) :
75 75
 
76 76
 	/**
77 77
 	 * Disable LSX Banners in some Sensei pages.
@@ -79,8 +79,8 @@  discard block
 block discarded – undo
79 79
 	 * @package    lsx
80 80
 	 * @subpackage sensei
81 81
 	 */
82
-	function lsx_sensei_disable_lsx_banner( $disabled ) {
83
-		if ( is_sensei() ) {
82
+	function lsx_sensei_disable_lsx_banner($disabled) {
83
+		if (is_sensei()) {
84 84
 			$disabled = true;
85 85
 		}
86 86
 
@@ -88,15 +88,15 @@  discard block
 block discarded – undo
88 88
 	}
89 89
 
90 90
 	// LSX
91
-	add_filter( 'lsx_global_header_disable', 'lsx_sensei_disable_lsx_banner' );
91
+	add_filter('lsx_global_header_disable', 'lsx_sensei_disable_lsx_banner');
92 92
 	// LSX Banners - Plugin, Placeholders
93
-	add_filter( 'lsx_banner_plugin_disable', 'lsx_sensei_disable_lsx_banner' );
93
+	add_filter('lsx_banner_plugin_disable', 'lsx_sensei_disable_lsx_banner');
94 94
 	// LSX Banners - Banner
95
-	add_filter( 'lsx_banner_disable', 'lsx_sensei_disable_lsx_banner' );
95
+	add_filter('lsx_banner_disable', 'lsx_sensei_disable_lsx_banner');
96 96
 
97 97
 endif;
98 98
 
99
-if ( ! function_exists( 'lsx_sensei_archive_title' ) ) :
99
+if ( ! function_exists('lsx_sensei_archive_title')) :
100 100
 
101 101
 	/**
102 102
 	 * Filters the archive title.
@@ -104,17 +104,17 @@  discard block
 block discarded – undo
104 104
 	 * @package    lsx
105 105
 	 * @subpackage sensei
106 106
 	 */
107
-	function lsx_sensei_archive_title( $html ) {
108
-		$html = preg_replace( '/<header class="archive-header"><h1>([^<]+)<\/h1><\/header>/i', '<h1>$1</h1>', $html );
107
+	function lsx_sensei_archive_title($html) {
108
+		$html = preg_replace('/<header class="archive-header"><h1>([^<]+)<\/h1><\/header>/i', '<h1>$1</h1>', $html);
109 109
 		return $html;
110 110
 	}
111 111
 
112
-	add_filter( 'course_archive_title', 'lsx_sensei_archive_title', 10, 1 );
113
-	add_filter( 'sensei_lesson_archive_title', 'lsx_sensei_archive_title', 10, 1 );
112
+	add_filter('course_archive_title', 'lsx_sensei_archive_title', 10, 1);
113
+	add_filter('sensei_lesson_archive_title', 'lsx_sensei_archive_title', 10, 1);
114 114
 
115 115
 endif;
116 116
 
117
-if ( ! function_exists( 'lsx_sensei_category_title' ) ) :
117
+if ( ! function_exists('lsx_sensei_category_title')) :
118 118
 
119 119
 	/**
120 120
 	 * Filters the archive title.
@@ -122,19 +122,19 @@  discard block
 block discarded – undo
122 122
 	 * @package    lsx
123 123
 	 * @subpackage sensei
124 124
 	 */
125
-	function lsx_sensei_category_title( $html ) {
126
-		$html = str_replace( 'h2', 'h1', $html );
125
+	function lsx_sensei_category_title($html) {
126
+		$html = str_replace('h2', 'h1', $html);
127 127
 		return $html;
128 128
 	}
129 129
 
130
-	add_filter( 'course_category_title', 'lsx_sensei_category_title', 10, 1 );
130
+	add_filter('course_category_title', 'lsx_sensei_category_title', 10, 1);
131 131
 
132 132
 endif;
133 133
 
134 134
 // Switching the course filters and the headers around
135
-remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'archive_header' ), 10, 0 );
136
-remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_sorting' ) );
137
-remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_filters' ) );
138
-add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'archive_header' ), 11, 0 );
139
-add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_sorting' ),12 );
140
-add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_filters' ),12 );
135
+remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'archive_header'), 10, 0);
136
+remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_sorting'));
137
+remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_filters'));
138
+add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'archive_header'), 11, 0);
139
+add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_sorting'), 12);
140
+add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_filters'), 12);
Please login to merge, or discard this patch.
includes/plugins/woocommerce.php 1 patch
Spacing   +151 added lines, -151 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
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
 block discarded – undo
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,25 +38,25 @@  discard block
 block discarded – undo
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
 
55
-	add_action( 'wp_enqueue_scripts', 'lsx_wc_scripts_add_styles' );
55
+	add_action('wp_enqueue_scripts', 'lsx_wc_scripts_add_styles');
56 56
 
57 57
 endif;
58 58
 
59
-if ( ! function_exists( 'lsx_wc_form_field_args' ) ) :
59
+if ( ! function_exists('lsx_wc_form_field_args')) :
60 60
 
61 61
 	/**
62 62
 	 * WooCommerce form fields.
@@ -64,17 +64,17 @@  discard block
 block discarded – undo
64 64
 	 * @package    lsx
65 65
 	 * @subpackage woocommerce
66 66
 	 */
67
-	function lsx_wc_form_field_args( $args, $key, $value ) {
67
+	function lsx_wc_form_field_args($args, $key, $value) {
68 68
 		$args['input_class'][] = 'form-control';
69 69
 
70 70
 		return $args;
71 71
 	}
72 72
 
73
-	add_action( 'woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3 );
73
+	add_action('woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3);
74 74
 
75 75
 endif;
76 76
 
77
-if ( ! function_exists( 'lsx_wc_theme_wrapper_start' ) ) :
77
+if ( ! function_exists('lsx_wc_theme_wrapper_start')) :
78 78
 
79 79
 	/**
80 80
 	 * WooCommerce wrapper start.
@@ -84,18 +84,18 @@  discard block
 block discarded – undo
84 84
 	 */
85 85
 	function lsx_wc_theme_wrapper_start() {
86 86
 		lsx_content_wrap_before();
87
-		echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">';
87
+		echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">';
88 88
 		lsx_content_before();
89 89
 		echo '<main id="main" class="site-main" role="main">';
90 90
 		lsx_content_top();
91 91
 	}
92 92
 
93
-	remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 );
94
-	add_action( 'woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start' );
93
+	remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
94
+	add_action('woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start');
95 95
 
96 96
 endif;
97 97
 
98
-if ( ! function_exists( 'lsx_wc_theme_wrapper_end' ) ) :
98
+if ( ! function_exists('lsx_wc_theme_wrapper_end')) :
99 99
 
100 100
 	/**
101 101
 	 * WooCommerce wrapper end.
@@ -111,12 +111,12 @@  discard block
 block discarded – undo
111 111
 		lsx_content_wrap_after();
112 112
 	}
113 113
 
114
-	remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 );
115
-	add_action( 'woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end' );
114
+	remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
115
+	add_action('woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end');
116 116
 
117 117
 endif;
118 118
 
119
-if ( ! function_exists( 'lsx_wc_disable_lsx_banner_plugin' ) ) :
119
+if ( ! function_exists('lsx_wc_disable_lsx_banner_plugin')) :
120 120
 
121 121
 	/**
122 122
 	 * Disable LSX Banners plugin in some WC pages.
@@ -124,25 +124,25 @@  discard block
 block discarded – undo
124 124
 	 * @package    lsx
125 125
 	 * @subpackage woocommerce
126 126
 	 */
127
-	function lsx_wc_disable_lsx_banner_plugin( $disabled ) {
127
+	function lsx_wc_disable_lsx_banner_plugin($disabled) {
128 128
 		global $post;
129 129
 
130
-		if ( is_cart() || is_checkout() || is_account_page() ) {
130
+		if (is_cart() || is_checkout() || is_account_page()) {
131 131
 			$disabled = true;
132 132
 		}
133 133
 
134
-		if ( $post && class_exists( 'WC_Wishlists_Pages' ) && WC_Wishlists_Pages::is_wishlist_page( $post->post_name ) ) {
134
+		if ($post && class_exists('WC_Wishlists_Pages') && WC_Wishlists_Pages::is_wishlist_page($post->post_name)) {
135 135
 			$disabled = true;
136 136
 		}
137 137
 
138 138
 		return $disabled;
139 139
 	}
140 140
 
141
-	add_filter( 'lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin' );
141
+	add_filter('lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin');
142 142
 
143 143
 endif;
144 144
 
145
-if ( ! function_exists( 'lsx_wc_disable_lsx_banner' ) ) :
145
+if ( ! function_exists('lsx_wc_disable_lsx_banner')) :
146 146
 
147 147
 	/**
148 148
 	 * Disable LSX Banners banner in some WC pages.
@@ -150,19 +150,19 @@  discard block
 block discarded – undo
150 150
 	 * @package    lsx
151 151
 	 * @subpackage woocommerce
152 152
 	 */
153
-	function lsx_wc_disable_lsx_banner( $disabled ) {
154
-		if ( is_shop() || is_product_category() || is_product_tag() || is_product() ) {
153
+	function lsx_wc_disable_lsx_banner($disabled) {
154
+		if (is_shop() || is_product_category() || is_product_tag() || is_product()) {
155 155
 			$disabled = true;
156 156
 		}
157 157
 
158 158
 		return $disabled;
159 159
 	}
160 160
 
161
-	add_filter( 'lsx_banner_disable', 'lsx_wc_disable_lsx_banner' );
161
+	add_filter('lsx_banner_disable', 'lsx_wc_disable_lsx_banner');
162 162
 
163 163
 endif;
164 164
 
165
-if ( ! function_exists( 'lsx_wc_add_cart' ) ) :
165
+if ( ! function_exists('lsx_wc_add_cart')) :
166 166
 
167 167
 	/**
168 168
 	 * Adds WC cart to the header.
@@ -170,32 +170,32 @@  discard block
 block discarded – undo
170 170
 	 * @package    lsx
171 171
 	 * @subpackage template-tags
172 172
 	 */
173
-	function lsx_wc_add_cart( $items, $args ) {
174
-		$cart_menu_item_position = apply_filters( 'lsx_wc_cart_menu_item_position', 'primary' );
173
+	function lsx_wc_add_cart($items, $args) {
174
+		$cart_menu_item_position = apply_filters('lsx_wc_cart_menu_item_position', 'primary');
175 175
 
176
-		if ( $cart_menu_item_position === $args->theme_location ) {
177
-			$customizer_option  = get_theme_mod( 'lsx_header_wc_cart', false );
176
+		if ($cart_menu_item_position === $args->theme_location) {
177
+			$customizer_option = get_theme_mod('lsx_header_wc_cart', false);
178 178
 
179
-			if ( ! empty( $customizer_option ) ) {
179
+			if ( ! empty($customizer_option)) {
180 180
 				ob_start();
181
-				the_widget( 'WC_Widget_Cart', 'title=' );
181
+				the_widget('WC_Widget_Cart', 'title=');
182 182
 				$widget = ob_get_clean();
183 183
 
184
-				if ( is_cart() ) {
184
+				if (is_cart()) {
185 185
 					$item_class = 'current-menu-item';
186 186
 				} else {
187 187
 					$item_class = '';
188 188
 				}
189 189
 
190 190
 				$item_class = 'menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children dropdown lsx-wc-cart-menu-item ' . $class;
191
-				$item_class = apply_filters( 'lsx_wc_cart_menu_item_class', $item_class );
191
+				$item_class = apply_filters('lsx_wc_cart_menu_item_class', $item_class);
192 192
 
193 193
 				$item = '<li class="' . $item_class . '">' .
194
-							'<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">' .
195
-								'<span class="lsx-wc-cart-amount">' . wp_kses_data( WC()->cart->get_cart_subtotal() ) . '</span>' .
194
+							'<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">' .
195
+								'<span class="lsx-wc-cart-amount">' . wp_kses_data(WC()->cart->get_cart_subtotal()) . '</span>' .
196 196
 								/* Translators: %s: items quantity */
197
-								'<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>' .
198
-								( ! empty( WC()->cart->get_cart_contents_count() ) ? '<span class="lsx-wc-cart-count-badge">' . wp_kses_data( WC()->cart->get_cart_contents_count() ) . '</span>' : '' ) .
197
+								'<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>' .
198
+								( ! empty(WC()->cart->get_cart_contents_count()) ? '<span class="lsx-wc-cart-count-badge">' . wp_kses_data(WC()->cart->get_cart_contents_count()) . '</span>' : '') .
199 199
 							'</a>' .
200 200
 							'<ul role="menu" class=" dropdown-menu lsx-wc-cart-sub-menu">' .
201 201
 								'<li>' .
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
 							'</ul>' .
205 205
 						'</li>';
206 206
 
207
-				if ( 'top-menu' === $args->theme_location ) {
207
+				if ('top-menu' === $args->theme_location) {
208 208
 					$items = $item . $items;
209 209
 				} else {
210 210
 					$items = $items . $item;
@@ -215,11 +215,11 @@  discard block
 block discarded – undo
215 215
 		return $items;
216 216
 	}
217 217
 
218
-	add_filter( 'wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2 );
218
+	add_filter('wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2);
219 219
 
220 220
 endif;
221 221
 
222
-if ( ! function_exists( 'lsx_wc_products_widget_wrapper_before' ) ) :
222
+if ( ! function_exists('lsx_wc_products_widget_wrapper_before')) :
223 223
 
224 224
 	/**
225 225
 	 * Change WC products widget wrapper (before).
@@ -227,16 +227,16 @@  discard block
 block discarded – undo
227 227
 	 * @package    lsx
228 228
 	 * @subpackage woocommerce
229 229
 	 */
230
-	function lsx_wc_products_widget_wrapper_before( $html ) {
230
+	function lsx_wc_products_widget_wrapper_before($html) {
231 231
 		$html = '<div class="lsx-woocommerce-slider lsx-woocommerce-shortcode">';
232 232
 		return $html;
233 233
 	}
234 234
 
235
-	add_filter( 'woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15 );
235
+	add_filter('woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15);
236 236
 
237 237
 endif;
238 238
 
239
-if ( ! function_exists( 'lsx_wc_products_widget_wrapper_after' ) ) :
239
+if ( ! function_exists('lsx_wc_products_widget_wrapper_after')) :
240 240
 
241 241
 	/**
242 242
 	 * Change WC products widget wrapper (after).
@@ -244,16 +244,16 @@  discard block
 block discarded – undo
244 244
 	 * @package    lsx
245 245
 	 * @subpackage woocommerce
246 246
 	 */
247
-	function lsx_wc_products_widget_wrapper_after( $html ) {
247
+	function lsx_wc_products_widget_wrapper_after($html) {
248 248
 		$html = '</div>';
249 249
 		return $html;
250 250
 	}
251 251
 
252
-	add_filter( 'woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15 );
252
+	add_filter('woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15);
253 253
 
254 254
 endif;
255 255
 
256
-if ( ! function_exists( 'lsx_wc_reviews_widget_override' ) ) :
256
+if ( ! function_exists('lsx_wc_reviews_widget_override')) :
257 257
 
258 258
 	/**
259 259
 	 * Override WC ewviews widget.
@@ -262,18 +262,18 @@  discard block
 block discarded – undo
262 262
 	 * @subpackage woocommerce
263 263
 	 */
264 264
 	function lsx_wc_reviews_widget_override() {
265
-		if ( class_exists( 'WC_Widget_Recent_Reviews' ) ) {
266
-			unregister_widget( 'WC_Widget_Recent_Reviews' );
265
+		if (class_exists('WC_Widget_Recent_Reviews')) {
266
+			unregister_widget('WC_Widget_Recent_Reviews');
267 267
 			require get_template_directory() . '/includes/classes/class-lsx-wc-widget-recent-reviews.php';
268
-			register_widget( 'LSX_WC_Widget_Recent_Reviews' );
268
+			register_widget('LSX_WC_Widget_Recent_Reviews');
269 269
 		}
270 270
 	}
271 271
 
272
-	add_action( 'widgets_init', 'lsx_wc_reviews_widget_override', 15 );
272
+	add_action('widgets_init', 'lsx_wc_reviews_widget_override', 15);
273 273
 
274 274
 endif;
275 275
 
276
-if ( ! function_exists( 'lsx_wc_change_price_html' ) ) :
276
+if ( ! function_exists('lsx_wc_change_price_html')) :
277 277
 
278 278
 	/**
279 279
 	 * Change WC ZERO price to "free".
@@ -281,28 +281,28 @@  discard block
 block discarded – undo
281 281
 	 * @package    lsx
282 282
 	 * @subpackage woocommerce
283 283
 	 */
284
-	function lsx_wc_change_price_html( $price, $product ) {
285
-		if ( empty( $product->get_price() ) ) {
286
-			if ( $product->is_on_sale() && $product->get_regular_price() ) {
287
-				$regular_price = wc_get_price_to_display( $product, array(
284
+	function lsx_wc_change_price_html($price, $product) {
285
+		if (empty($product->get_price())) {
286
+			if ($product->is_on_sale() && $product->get_regular_price()) {
287
+				$regular_price = wc_get_price_to_display($product, array(
288 288
 					'qty' => 1,
289 289
 					'price' => $product->get_regular_price(),
290
-				) );
290
+				));
291 291
 
292
-				$price = wc_format_price_range( $regular_price, esc_html__( 'Free!', 'lsx' ) );
292
+				$price = wc_format_price_range($regular_price, esc_html__('Free!', 'lsx'));
293 293
 			} else {
294
-				$price = '<span class="amount">' . esc_html__( 'Free!', 'lsx' ) . '</span>';
294
+				$price = '<span class="amount">' . esc_html__('Free!', 'lsx') . '</span>';
295 295
 			}
296 296
 		}
297 297
 
298 298
 		return $price;
299 299
 	}
300 300
 
301
-	add_filter( 'woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2 );
301
+	add_filter('woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2);
302 302
 
303 303
 endif;
304 304
 
305
-if ( ! function_exists( 'lsx_wc_cart_link_fragment' ) ) :
305
+if ( ! function_exists('lsx_wc_cart_link_fragment')) :
306 306
 
307 307
 	/**
308 308
 	 * Cart Fragments.
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
 	 * @package    lsx
312 312
 	 * @subpackage woocommerce
313 313
 	 */
314
-	function lsx_wc_cart_link_fragment( $fragments ) {
314
+	function lsx_wc_cart_link_fragment($fragments) {
315 315
 		global $woocommerce;
316 316
 
317 317
 		ob_start();
@@ -322,8 +322,8 @@  discard block
 block discarded – undo
322 322
 		lsx_wc_items_counter();
323 323
 		$items_counter = ob_get_clean();
324 324
 
325
-		if ( ! empty( $items_counter ) ) {
326
-			$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'] );
325
+		if ( ! empty($items_counter)) {
326
+			$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']);
327 327
 		}
328 328
 
329 329
 		return $fragments;
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
 
332 332
 endif;
333 333
 
334
-if ( ! function_exists( 'lsx_wc_cart_link' ) ) :
334
+if ( ! function_exists('lsx_wc_cart_link')) :
335 335
 
336 336
 	/**
337 337
 	 * Cart Link.
@@ -342,14 +342,14 @@  discard block
 block discarded – undo
342 342
 	 */
343 343
 	function lsx_wc_cart_link() {
344 344
 		?>
345
-			<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">
346
-				<span class="lsx-wc-cart-amount"><?php echo wp_kses_data( WC()->cart->get_cart_subtotal() ); ?></span>
345
+			<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">
346
+				<span class="lsx-wc-cart-amount"><?php echo wp_kses_data(WC()->cart->get_cart_subtotal()); ?></span>
347 347
 
348 348
 				<?php /* Translators: %s: items quantity */ ?>
349
-				<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>
349
+				<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>
350 350
 
351
-				<?php if ( ! empty( WC()->cart->get_cart_contents_count() ) ) : ?>
352
-					<span class="lsx-wc-cart-count-badge"><?php echo wp_kses_data( WC()->cart->get_cart_contents_count() );?></span>
351
+				<?php if ( ! empty(WC()->cart->get_cart_contents_count())) : ?>
352
+					<span class="lsx-wc-cart-count-badge"><?php echo wp_kses_data(WC()->cart->get_cart_contents_count()); ?></span>
353 353
 				<?php endif; ?>
354 354
 			</a>
355 355
 		<?php
@@ -357,7 +357,7 @@  discard block
 block discarded – undo
357 357
 
358 358
 endif;
359 359
 
360
-if ( ! function_exists( 'lsx_wc_items_counter' ) ) :
360
+if ( ! function_exists('lsx_wc_items_counter')) :
361 361
 
362 362
 	/**
363 363
 	 * Add car item hidden items counter.
@@ -369,21 +369,21 @@  discard block
 block discarded – undo
369 369
 		$count = (int) WC()->cart->get_cart_contents_count();
370 370
 		$items_counter = '';
371 371
 
372
-		if ( ! empty( $count ) ) {
372
+		if ( ! empty($count)) {
373 373
 			$count -= 3;
374 374
 
375
-			if ( 1 === $count ) {
376
-				$items_counter = esc_html__( '1 other item in cart', 'lsx' );
377
-			} elseif ( $count > 1 ) {
375
+			if (1 === $count) {
376
+				$items_counter = esc_html__('1 other item in cart', 'lsx');
377
+			} elseif ($count > 1) {
378 378
 				/* Translators: %s: items counter */
379
-				$items_counter = sprintf( esc_html__( '%s other items in cart', 'lsx' ), $count );
379
+				$items_counter = sprintf(esc_html__('%s other items in cart', 'lsx'), $count);
380 380
 			}
381 381
 		}
382 382
 
383
-		if ( ! empty( $items_counter ) ) :
383
+		if ( ! empty($items_counter)) :
384 384
 			?>
385 385
 				<li class="woocommerce-mini-cart-item mini_cart_item" style="display: block;">
386
-					<a href="<?php echo esc_url( WC()->cart->get_cart_url() ); ?>"><?php echo esc_html( $items_counter ); ?></a>
386
+					<a href="<?php echo esc_url(WC()->cart->get_cart_url()); ?>"><?php echo esc_html($items_counter); ?></a>
387 387
 				</li>
388 388
 			<?php
389 389
 		endif;
@@ -391,7 +391,7 @@  discard block
 block discarded – undo
391 391
 
392 392
 endif;
393 393
 
394
-if ( ! function_exists( 'lsx_wc_loop_shop_per_page' ) ) :
394
+if ( ! function_exists('lsx_wc_loop_shop_per_page')) :
395 395
 
396 396
 	/**
397 397
 	 * Changes the number of products to display on shop.
@@ -399,16 +399,16 @@  discard block
 block discarded – undo
399 399
 	 * @package    lsx
400 400
 	 * @subpackage woocommerce
401 401
 	 */
402
-	function lsx_wc_loop_shop_per_page( $items ) {
402
+	function lsx_wc_loop_shop_per_page($items) {
403 403
 		$items = 20;
404 404
 		return $items;
405 405
 	}
406 406
 
407
-	add_filter( 'loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20 );
407
+	add_filter('loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20);
408 408
 
409 409
 endif;
410 410
 
411
-if ( ! function_exists( 'lsx_wc_add_to_cart_message_html' ) ) :
411
+if ( ! function_exists('lsx_wc_add_to_cart_message_html')) :
412 412
 
413 413
 	/**
414 414
 	 * Changes the "added to cart" message HTML.
@@ -416,39 +416,39 @@  discard block
 block discarded – undo
416 416
 	 * @package    lsx
417 417
 	 * @subpackage woocommerce
418 418
 	 */
419
-	function lsx_wc_add_to_cart_message_html( $message, $products ) {
419
+	function lsx_wc_add_to_cart_message_html($message, $products) {
420 420
 		$message = '<div class="woocommerce-message-added-to-cart">' . $message . '</div>';
421 421
 		return $message;
422 422
 	}
423 423
 
424
-	add_filter( 'wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2 );
424
+	add_filter('wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2);
425 425
 
426 426
 endif;
427 427
 
428
-if ( defined( 'WC_VERSION' ) && version_compare( WC_VERSION, '2.3', '>=' ) ) {
429
-	add_filter( 'woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment' );
428
+if (defined('WC_VERSION') && version_compare(WC_VERSION, '2.3', '>=')) {
429
+	add_filter('woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment');
430 430
 } else {
431
-	add_filter( 'add_to_cart_fragments', 'lsx_wc_cart_link_fragment' );
431
+	add_filter('add_to_cart_fragments', 'lsx_wc_cart_link_fragment');
432 432
 }
433 433
 
434
-remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 );
434
+remove_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 10);
435 435
 
436
-add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9 );
437
-add_action( 'woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10 );
438
-add_action( 'woocommerce_after_shop_loop', 'woocommerce_result_count', 20 );
439
-add_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 30 );
440
-add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 );
436
+add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9);
437
+add_action('woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10);
438
+add_action('woocommerce_after_shop_loop', 'woocommerce_result_count', 20);
439
+add_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 30);
440
+add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31);
441 441
 
442
-remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
443
-remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 );
442
+remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20);
443
+remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30);
444 444
 
445
-add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9 );
446
-add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10 );
447
-add_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
448
-add_action( 'woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30 );
449
-add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 );
445
+add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9);
446
+add_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10);
447
+add_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20);
448
+add_action('woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30);
449
+add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31);
450 450
 
451
-if ( ! function_exists( 'lsx_wc_sorting_wrapper' ) ) :
451
+if ( ! function_exists('lsx_wc_sorting_wrapper')) :
452 452
 
453 453
 	/**
454 454
 	 * Sorting wrapper.
@@ -462,7 +462,7 @@  discard block
 block discarded – undo
462 462
 
463 463
 endif;
464 464
 
465
-if ( ! function_exists( 'lsx_wc_sorting_wrapper_close' ) ) :
465
+if ( ! function_exists('lsx_wc_sorting_wrapper_close')) :
466 466
 
467 467
 	/**
468 468
 	 * Sorting wrapper close.
@@ -476,7 +476,7 @@  discard block
 block discarded – undo
476 476
 
477 477
 endif;
478 478
 
479
-if ( ! function_exists( 'lsx_wc_product_columns_wrapper_close' ) ) :
479
+if ( ! function_exists('lsx_wc_product_columns_wrapper_close')) :
480 480
 
481 481
 	/**
482 482
 	 * Product columns wrapper close.
@@ -490,7 +490,7 @@  discard block
 block discarded – undo
490 490
 
491 491
 endif;
492 492
 
493
-if ( ! function_exists( 'lsx_wc_woocommerce_pagination' ) ) :
493
+if ( ! function_exists('lsx_wc_woocommerce_pagination')) :
494 494
 
495 495
 	/**
496 496
 	 * LSX WooCommerce Pagination
@@ -502,14 +502,14 @@  discard block
 block discarded – undo
502 502
 	 * @subpackage woocommerce
503 503
 	 */
504 504
 	function lsx_wc_woocommerce_pagination() {
505
-		if ( woocommerce_products_will_display() ) {
505
+		if (woocommerce_products_will_display()) {
506 506
 			woocommerce_pagination();
507 507
 		}
508 508
 	}
509 509
 
510 510
 endif;
511 511
 
512
-if ( ! function_exists( 'lsx_customizer_wc_controls' ) ) :
512
+if ( ! function_exists('lsx_customizer_wc_controls')) :
513 513
 
514 514
 	/**
515 515
 	 * Returns an array of the core panel.
@@ -519,10 +519,10 @@  discard block
 block discarded – undo
519 519
 	 *
520 520
 	 * @return $lsx_controls array()
521 521
 	 */
522
-	function lsx_customizer_wc_controls( $lsx_controls ) {
522
+	function lsx_customizer_wc_controls($lsx_controls) {
523 523
 		$lsx_controls['panels']['lsx-wc'] = array(
524
-			'title'       => esc_html__( 'WooCommerce', 'lsx' ),
525
-			'description' => esc_html__( 'Change the WooCommerce settings.', 'lsx' ),
524
+			'title'       => esc_html__('WooCommerce', 'lsx'),
525
+			'description' => esc_html__('Change the WooCommerce settings.', 'lsx'),
526 526
 			'priority'    => 23,
527 527
 		);
528 528
 
@@ -531,8 +531,8 @@  discard block
 block discarded – undo
531 531
 		 */
532 532
 
533 533
 		$lsx_controls['sections']['lsx-wc-global'] = array(
534
-			'title'       => esc_html__( 'Global', 'lsx' ),
535
-			'description' => esc_html__( 'Change the WooCommerce global settings.', 'lsx' ),
534
+			'title'       => esc_html__('Global', 'lsx'),
535
+			'description' => esc_html__('Change the WooCommerce global settings.', 'lsx'),
536 536
 			'panel'       => 'lsx-wc',
537 537
 			'priority'    => 1,
538 538
 		);
@@ -543,8 +543,8 @@  discard block
 block discarded – undo
543 543
 		);
544 544
 
545 545
 		$lsx_controls['fields']['lsx_wc_mobile_footer_bar_status'] = array(
546
-			'label'       => esc_html__( 'Footer Bar', 'lsx' ),
547
-			'description' => esc_html__( 'Enable the mobile footer bar.', 'lsx' ),
546
+			'label'       => esc_html__('Footer Bar', 'lsx'),
547
+			'description' => esc_html__('Enable the mobile footer bar.', 'lsx'),
548 548
 			'section'     => 'lsx-wc-global',
549 549
 			'type'        => 'checkbox',
550 550
 			'priority'    => 1,
@@ -555,8 +555,8 @@  discard block
 block discarded – undo
555 555
 		 */
556 556
 
557 557
 		$lsx_controls['sections']['lsx-wc-cart'] = array(
558
-			'title'       => esc_html__( 'Cart', 'lsx' ),
559
-			'description' => esc_html__( 'Change the WooCommerce cart settings.', 'lsx' ),
558
+			'title'       => esc_html__('Cart', 'lsx'),
559
+			'description' => esc_html__('Change the WooCommerce cart settings.', 'lsx'),
560 560
 			'panel'       => 'lsx-wc',
561 561
 			'priority'    => 2,
562 562
 		);
@@ -567,8 +567,8 @@  discard block
 block discarded – undo
567 567
 		);
568 568
 
569 569
 		$lsx_controls['fields']['lsx_header_wc_cart'] = array(
570
-			'label'       => esc_html__( 'Menu Item', 'lsx' ),
571
-			'description' => esc_html__( 'Enable the cart menu item.', 'lsx' ),
570
+			'label'       => esc_html__('Menu Item', 'lsx'),
571
+			'description' => esc_html__('Enable the cart menu item.', 'lsx'),
572 572
 			'section'     => 'lsx-wc-cart',
573 573
 			'type'        => 'checkbox',
574 574
 			'priority'    => 1,
@@ -577,11 +577,11 @@  discard block
 block discarded – undo
577 577
 		return $lsx_controls;
578 578
 	}
579 579
 
580
-	add_filter( 'lsx_customizer_controls', 'lsx_customizer_wc_controls' );
580
+	add_filter('lsx_customizer_controls', 'lsx_customizer_wc_controls');
581 581
 
582 582
 endif;
583 583
 
584
-if ( ! function_exists( 'lsx_wc_footer_bar' ) ) :
584
+if ( ! function_exists('lsx_wc_footer_bar')) :
585 585
 
586 586
 	/**
587 587
 	 * Display WC footer bar.
@@ -590,46 +590,46 @@  discard block
 block discarded – undo
590 590
 	 * @subpackage woocommerce
591 591
 	 */
592 592
 	function lsx_wc_footer_bar() {
593
-		if ( ! empty( get_theme_mod( 'lsx_wc_mobile_footer_bar_status', '1' ) ) ) :
593
+		if ( ! empty(get_theme_mod('lsx_wc_mobile_footer_bar_status', '1'))) :
594 594
 			?>
595 595
 			<div class="lsx-wc-footer-bar">
596
-				<form role="search" method="get" action="<?php echo esc_url( home_url() ); ?>" class="lsx-wc-footer-bar-form">
596
+				<form role="search" method="get" action="<?php echo esc_url(home_url()); ?>" class="lsx-wc-footer-bar-form">
597 597
 					<fieldset>
598
-						<legend class="screen-reader-text"><?php esc_html_e( 'Search products', 'lsx' ); ?></legend>
599
-						<input type="search" name="s" placeholder="<?php esc_attr_e( 'Search products…', 'lsx' ); ?>" class="form-control">
598
+						<legend class="screen-reader-text"><?php esc_html_e('Search products', 'lsx'); ?></legend>
599
+						<input type="search" name="s" placeholder="<?php esc_attr_e('Search products…', 'lsx'); ?>" class="form-control">
600 600
 					</fieldset>
601 601
 				</form>
602 602
 
603 603
 				<ul class="lsx-wc-footer-bar-items">
604 604
 					<li class="lsx-wc-footer-bar-item">
605
-						<a href="<?php echo esc_url( home_url() ); ?>" class="lsx-wc-footer-bar-link">
605
+						<a href="<?php echo esc_url(home_url()); ?>" class="lsx-wc-footer-bar-link">
606 606
 							<i class="fa fa-home" aria-hidden="true"></i>
607
-							<span><?php esc_html_e( 'Home', 'lsx' ); ?></span>
607
+							<span><?php esc_html_e('Home', 'lsx'); ?></span>
608 608
 						</a>
609 609
 					</li>
610 610
 
611 611
 					<li class="lsx-wc-footer-bar-item">
612
-						<a href="<?php echo esc_url( get_permalink( get_option( 'woocommerce_myaccount_page_id' ) ) ); ?>" class="lsx-wc-footer-bar-link">
612
+						<a href="<?php echo esc_url(get_permalink(get_option('woocommerce_myaccount_page_id'))); ?>" class="lsx-wc-footer-bar-link">
613 613
 							<i class="fa fa-user" aria-hidden="true"></i>
614
-							<span><?php esc_html_e( 'Account', 'lsx' ); ?></span>
614
+							<span><?php esc_html_e('Account', 'lsx'); ?></span>
615 615
 						</a>
616 616
 					</li>
617 617
 
618 618
 					<li class="lsx-wc-footer-bar-item">
619 619
 						<a href="#" class="lsx-wc-footer-bar-link lsx-wc-footer-bar-link-toogle">
620 620
 							<i class="fa fa-search" aria-hidden="true"></i>
621
-							<span><?php esc_html_e( 'Search', 'lsx' ); ?></span>
621
+							<span><?php esc_html_e('Search', 'lsx'); ?></span>
622 622
 						</a>
623 623
 					</li>
624 624
 
625 625
 					<li class="lsx-wc-footer-bar-item">
626
-						<a href="<?php echo esc_url( WC()->cart->get_cart_url() ); ?>" class="lsx-wc-footer-bar-link">
626
+						<a href="<?php echo esc_url(WC()->cart->get_cart_url()); ?>" class="lsx-wc-footer-bar-link">
627 627
 							<i class="fa fa-shopping-basket" aria-hidden="true"></i>
628 628
 							<?php $count = WC()->cart->get_cart_contents_count(); ?>
629
-							<?php if ( ! empty( $count ) ) : ?>
630
-								<span class="lsx-wc-footer-bar-count"><?php echo wp_kses_data( $count ); ?></span>
629
+							<?php if ( ! empty($count)) : ?>
630
+								<span class="lsx-wc-footer-bar-count"><?php echo wp_kses_data($count); ?></span>
631 631
 							<?php endif; ?>
632
-							<span><?php esc_html_e( 'Cart', 'lsx' ); ?></span>
632
+							<span><?php esc_html_e('Cart', 'lsx'); ?></span>
633 633
 						</a>
634 634
 					</li>
635 635
 				</ul>
@@ -638,11 +638,11 @@  discard block
 block discarded – undo
638 638
 		endif;
639 639
 	}
640 640
 
641
-	add_action( 'lsx_body_bottom', 'lsx_wc_footer_bar', 15 );
641
+	add_action('lsx_body_bottom', 'lsx_wc_footer_bar', 15);
642 642
 
643 643
 endif;
644 644
 
645
-if ( ! function_exists( 'lsx_wc_body_class' ) ) :
645
+if ( ! function_exists('lsx_wc_body_class')) :
646 646
 
647 647
 	/**
648 648
 	 * Changes body class.
@@ -650,21 +650,21 @@  discard block
 block discarded – undo
650 650
 	 * @package    lsx
651 651
 	 * @subpackage woocommerce
652 652
 	 */
653
-	function lsx_wc_body_class( $classes ) {
653
+	function lsx_wc_body_class($classes) {
654 654
 		global $post;
655 655
 
656
-		if ( $post && class_exists( 'WC_Wishlists_Pages' ) && WC_Wishlists_Pages::is_wishlist_page( $post->post_name ) ) {
656
+		if ($post && class_exists('WC_Wishlists_Pages') && WC_Wishlists_Pages::is_wishlist_page($post->post_name)) {
657 657
 			$classes[] = 'woocommerce-page woocommerce-wishlist';
658 658
 		}
659 659
 
660 660
 		return $classes;
661 661
 	}
662 662
 
663
-	add_filter( 'body_class', 'lsx_wc_body_class', 2999 );
663
+	add_filter('body_class', 'lsx_wc_body_class', 2999);
664 664
 
665 665
 endif;
666 666
 
667
-if ( ! function_exists( 'lsx_wc_downloadable_products' ) ) :
667
+if ( ! function_exists('lsx_wc_downloadable_products')) :
668 668
 
669 669
 	/**
670 670
 	 * Changes downloads "download" button text.
@@ -672,14 +672,14 @@  discard block
 block discarded – undo
672 672
 	 * @package    lsx
673 673
 	 * @subpackage woocommerce
674 674
 	 */
675
-	function lsx_wc_downloadable_products( $downloads ) {
676
-		foreach ( $downloads as $i => $download ) {
677
-			$downloads[ $i ]['download_name'] = esc_html__( 'Download', 'lsx' );
675
+	function lsx_wc_downloadable_products($downloads) {
676
+		foreach ($downloads as $i => $download) {
677
+			$downloads[$i]['download_name'] = esc_html__('Download', 'lsx');
678 678
 		}
679 679
 
680 680
 		return $downloads;
681 681
 	}
682 682
 
683
-	add_filter( 'woocommerce_customer_get_downloadable_products', 'lsx_wc_downloadable_products', 2999 );
683
+	add_filter('woocommerce_customer_get_downloadable_products', 'lsx_wc_downloadable_products', 2999);
684 684
 
685 685
 endif;
Please login to merge, or discard this patch.
functions.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -5,21 +5,21 @@
 block discarded – undo
5 5
  * @package lsx
6 6
  */
7 7
 
8
-if ( ! defined( 'ABSPATH' ) ) {
8
+if ( ! defined('ABSPATH')) {
9 9
 	exit;
10 10
 }
11 11
 
12
-define( 'LSX_VERSION', '2.1.0' );
12
+define('LSX_VERSION', '2.1.0');
13 13
 
14
-if ( class_exists( 'WooCommerce' ) ) {
14
+if (class_exists('WooCommerce')) {
15 15
 	require get_template_directory() . '/includes/plugins/woocommerce.php';
16 16
 }
17 17
 
18
-if ( class_exists( 'Tribe__Events__Main' ) ) {
18
+if (class_exists('Tribe__Events__Main')) {
19 19
 	require get_template_directory() . '/includes/plugins/the-events-calendar.php';
20 20
 }
21 21
 
22
-if ( class_exists( 'Sensei_WC' ) ) {
22
+if (class_exists('Sensei_WC')) {
23 23
 	require get_template_directory() . '/includes/plugins/sensei.php';
24 24
 }
25 25
 
Please login to merge, or discard this patch.