Passed
Push — master ( 2e51f1...2256c9 )
by Fernando
02:51
created
partials/content-custom.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,16 +16,16 @@
 block discarded – undo
16 16
 		<?php
17 17
 			the_content();
18 18
 
19
-			wp_link_pages( array(
19
+			wp_link_pages(array(
20 20
 				'before'      => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
21 21
 				'after'       => '</div></div>',
22 22
 				'link_before' => '<span>',
23 23
 				'link_after'  => '</span>',
24
-			) );
24
+			));
25 25
 		?>
26 26
 	</div><!-- .entry-content -->
27 27
 
28
-	<?php edit_post_link( esc_html__( 'Edit', 'lsx' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' ); ?>
28
+	<?php edit_post_link(esc_html__('Edit', 'lsx'), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>'); ?>
29 29
 
30 30
 	<?php lsx_entry_bottom(); ?>
31 31
 
Please login to merge, or discard this patch.
includes/extras.php 1 patch
Spacing   +139 added lines, -139 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
includes/layout.php 1 patch
Spacing   +99 added lines, -99 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
includes/woocommerce.php 1 patch
Spacing   +92 added lines, -92 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
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
 block discarded – undo
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,25 +35,25 @@  discard block
 block discarded – undo
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
-		if ( ! is_admin() ) {
44
-			wp_dequeue_style( 'select2' );
45
-			wp_deregister_style( 'select2' );
43
+		if ( ! is_admin()) {
44
+			wp_dequeue_style('select2');
45
+			wp_deregister_style('select2');
46 46
 
47
-			wp_dequeue_script( 'select2' );
48
-			wp_deregister_script( 'select2' );
47
+			wp_dequeue_script('select2');
48
+			wp_deregister_script('select2');
49 49
 		}
50 50
 	}
51 51
 
52
-	add_action( 'wp_enqueue_scripts', 'lsx_wc_scripts_add_styles' );
52
+	add_action('wp_enqueue_scripts', 'lsx_wc_scripts_add_styles');
53 53
 
54 54
 endif;
55 55
 
56
-if ( ! function_exists( 'lsx_wc_form_field_args' ) ) :
56
+if ( ! function_exists('lsx_wc_form_field_args')) :
57 57
 
58 58
 	/**
59 59
 	 * WooCommerce form fields.
@@ -61,17 +61,17 @@  discard block
 block discarded – undo
61 61
 	 * @package    lsx
62 62
 	 * @subpackage woocommerce
63 63
 	 */
64
-	function lsx_wc_form_field_args( $args, $key, $value ) {
64
+	function lsx_wc_form_field_args($args, $key, $value) {
65 65
 		$args['input_class'][] = 'form-control';
66 66
 
67 67
 		return $args;
68 68
 	}
69 69
 
70
-	add_action( 'woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3 );
70
+	add_action('woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3);
71 71
 
72 72
 endif;
73 73
 
74
-if ( ! function_exists( 'lsx_wc_theme_wrapper_start' ) ) :
74
+if ( ! function_exists('lsx_wc_theme_wrapper_start')) :
75 75
 
76 76
 	/**
77 77
 	 * WooCommerce wrapper start.
@@ -87,12 +87,12 @@  discard block
 block discarded – undo
87 87
 		lsx_content_top();
88 88
 	}
89 89
 
90
-	remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 );
91
-	add_action( 'woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start' );
90
+	remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
91
+	add_action('woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start');
92 92
 
93 93
 endif;
94 94
 
95
-if ( ! function_exists( 'lsx_wc_theme_wrapper_end' ) ) :
95
+if ( ! function_exists('lsx_wc_theme_wrapper_end')) :
96 96
 
97 97
 	/**
98 98
 	 * WooCommerce wrapper end.
@@ -108,12 +108,12 @@  discard block
 block discarded – undo
108 108
 		lsx_content_wrap_after();
109 109
 	}
110 110
 
111
-	remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 );
112
-	add_action( 'woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end' );
111
+	remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
112
+	add_action('woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end');
113 113
 
114 114
 endif;
115 115
 
116
-if ( ! function_exists( 'lsx_wc_disable_lsx_banner_plugin' ) ) :
116
+if ( ! function_exists('lsx_wc_disable_lsx_banner_plugin')) :
117 117
 
118 118
 	/**
119 119
 	 * Disable LSX Banners plugin in some WC pages.
@@ -121,19 +121,19 @@  discard block
 block discarded – undo
121 121
 	 * @package    lsx
122 122
 	 * @subpackage woocommerce
123 123
 	 */
124
-	function lsx_wc_disable_lsx_banner_plugin( $disabled ) {
125
-		if ( is_cart() || is_checkout() || is_account_page() ) {
124
+	function lsx_wc_disable_lsx_banner_plugin($disabled) {
125
+		if (is_cart() || is_checkout() || is_account_page()) {
126 126
 			$disabled = true;
127 127
 		}
128 128
 
129 129
 		return $disabled;
130 130
 	}
131 131
 
132
-	add_filter( 'lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin' );
132
+	add_filter('lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin');
133 133
 
134 134
 endif;
135 135
 
136
-if ( ! function_exists( 'lsx_wc_disable_lsx_banner' ) ) :
136
+if ( ! function_exists('lsx_wc_disable_lsx_banner')) :
137 137
 
138 138
 	/**
139 139
 	 * Disable LSX Banners banner in some WC pages.
@@ -141,19 +141,19 @@  discard block
 block discarded – undo
141 141
 	 * @package    lsx
142 142
 	 * @subpackage woocommerce
143 143
 	 */
144
-	function lsx_wc_disable_lsx_banner( $disabled ) {
145
-		if ( is_shop() || is_product_category() || is_product_tag() || is_product() ) {
144
+	function lsx_wc_disable_lsx_banner($disabled) {
145
+		if (is_shop() || is_product_category() || is_product_tag() || is_product()) {
146 146
 			$disabled = true;
147 147
 		}
148 148
 
149 149
 		return $disabled;
150 150
 	}
151 151
 
152
-	add_filter( 'lsx_banner_disable', 'lsx_wc_disable_lsx_banner' );
152
+	add_filter('lsx_banner_disable', 'lsx_wc_disable_lsx_banner');
153 153
 
154 154
 endif;
155 155
 
156
-if ( ! function_exists( 'lsx_wc_add_cart' ) ) :
156
+if ( ! function_exists('lsx_wc_add_cart')) :
157 157
 
158 158
 	/**
159 159
 	 * Adds WC cart to the header.
@@ -161,25 +161,25 @@  discard block
 block discarded – undo
161 161
 	 * @package    lsx
162 162
 	 * @subpackage template-tags
163 163
 	 */
164
-	function lsx_wc_add_cart( $items, $args ) {
165
-		if ( 'primary' === $args->theme_location ) {
166
-			$customizer_option  = get_theme_mod( 'lsx_header_wc_cart', false );
164
+	function lsx_wc_add_cart($items, $args) {
165
+		if ('primary' === $args->theme_location) {
166
+			$customizer_option = get_theme_mod('lsx_header_wc_cart', false);
167 167
 
168
-			if ( ! empty( $customizer_option ) ) {
168
+			if ( ! empty($customizer_option)) {
169 169
 				ob_start();
170
-				the_widget( 'WC_Widget_Cart', 'title=' );
170
+				the_widget('WC_Widget_Cart', 'title=');
171 171
 				$widget = ob_get_clean();
172 172
 
173
-				if ( is_cart() ) {
173
+				if (is_cart()) {
174 174
 					$class = 'current-menu-item';
175 175
 				} else {
176 176
 					$class = '';
177 177
 				}
178 178
 
179 179
 				$item = '<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children dropdown lsx-wc-cart-menu-item ' . $class . '">' .
180
-							'<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">' .
180
+							'<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">' .
181 181
 								/* Translators: %s: items quantity */
182
-								'<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>' .
182
+								'<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>' .
183 183
 							'</a>' .
184 184
 							'<ul role="menu" class=" dropdown-menu lsx-wc-cart-sub-menu">' .
185 185
 								'<li>' .
@@ -195,11 +195,11 @@  discard block
 block discarded – undo
195 195
 		return $items;
196 196
 	}
197 197
 
198
-	add_filter( 'wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2 );
198
+	add_filter('wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2);
199 199
 
200 200
 endif;
201 201
 
202
-if ( ! function_exists( 'lsx_wc_products_widget_wrapper_before' ) ) :
202
+if ( ! function_exists('lsx_wc_products_widget_wrapper_before')) :
203 203
 
204 204
 	/**
205 205
 	 * Change WC products widget wrapper (before).
@@ -207,16 +207,16 @@  discard block
 block discarded – undo
207 207
 	 * @package    lsx
208 208
 	 * @subpackage woocommerce
209 209
 	 */
210
-	function lsx_wc_products_widget_wrapper_before( $html ) {
210
+	function lsx_wc_products_widget_wrapper_before($html) {
211 211
 		$html = '<div class="lsx-woocommerce-slider lsx-woocommerce-shortcode">';
212 212
 		return $html;
213 213
 	}
214 214
 
215
-	add_filter( 'woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15 );
215
+	add_filter('woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15);
216 216
 
217 217
 endif;
218 218
 
219
-if ( ! function_exists( 'lsx_wc_products_widget_wrapper_after' ) ) :
219
+if ( ! function_exists('lsx_wc_products_widget_wrapper_after')) :
220 220
 
221 221
 	/**
222 222
 	 * Change WC products widget wrapper (after).
@@ -224,16 +224,16 @@  discard block
 block discarded – undo
224 224
 	 * @package    lsx
225 225
 	 * @subpackage woocommerce
226 226
 	 */
227
-	function lsx_wc_products_widget_wrapper_after( $html ) {
227
+	function lsx_wc_products_widget_wrapper_after($html) {
228 228
 		$html = '</div>';
229 229
 		return $html;
230 230
 	}
231 231
 
232
-	add_filter( 'woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15 );
232
+	add_filter('woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15);
233 233
 
234 234
 endif;
235 235
 
236
-if ( ! function_exists( 'lsx_wc_reviews_widget_override' ) ) :
236
+if ( ! function_exists('lsx_wc_reviews_widget_override')) :
237 237
 
238 238
 	/**
239 239
 	 * Override WC ewviews widget.
@@ -242,18 +242,18 @@  discard block
 block discarded – undo
242 242
 	 * @subpackage woocommerce
243 243
 	 */
244 244
 	function lsx_wc_reviews_widget_override() {
245
-		if ( class_exists( 'WC_Widget_Recent_Reviews' ) ) {
246
-			unregister_widget( 'WC_Widget_Recent_Reviews' );
245
+		if (class_exists('WC_Widget_Recent_Reviews')) {
246
+			unregister_widget('WC_Widget_Recent_Reviews');
247 247
 			require get_template_directory() . '/includes/classes/class-lsx-wc-widget-recent-reviews.php';
248
-			register_widget( 'LSX_WC_Widget_Recent_Reviews' );
248
+			register_widget('LSX_WC_Widget_Recent_Reviews');
249 249
 		}
250 250
 	}
251 251
 
252
-	add_action( 'widgets_init', 'lsx_wc_reviews_widget_override', 15 );
252
+	add_action('widgets_init', 'lsx_wc_reviews_widget_override', 15);
253 253
 
254 254
 endif;
255 255
 
256
-if ( ! function_exists( 'lsx_wc_change_price_html' ) ) :
256
+if ( ! function_exists('lsx_wc_change_price_html')) :
257 257
 
258 258
 	/**
259 259
 	 * Change WC ZERO price to "free".
@@ -261,28 +261,28 @@  discard block
 block discarded – undo
261 261
 	 * @package    lsx
262 262
 	 * @subpackage woocommerce
263 263
 	 */
264
-	function lsx_wc_change_price_html( $price, $product ) {
265
-		if ( empty( $product->get_price() ) ) {
266
-			if ( $product->is_on_sale() && $product->get_regular_price() ) {
267
-				$regular_price = wc_get_price_to_display( $product, array(
264
+	function lsx_wc_change_price_html($price, $product) {
265
+		if (empty($product->get_price())) {
266
+			if ($product->is_on_sale() && $product->get_regular_price()) {
267
+				$regular_price = wc_get_price_to_display($product, array(
268 268
 					'qty' => 1,
269 269
 					'price' => $product->get_regular_price(),
270
-				) );
270
+				));
271 271
 
272
-				$price = wc_format_price_range( $regular_price, esc_html__( 'Free!', 'lsx' ) );
272
+				$price = wc_format_price_range($regular_price, esc_html__('Free!', 'lsx'));
273 273
 			} else {
274
-				$price = '<span class="amount">' . esc_html__( 'Free!', 'lsx' ) . '</span>';
274
+				$price = '<span class="amount">' . esc_html__('Free!', 'lsx') . '</span>';
275 275
 			}
276 276
 		}
277 277
 
278 278
 		return $price;
279 279
 	}
280 280
 
281
-	add_filter( 'woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2 );
281
+	add_filter('woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2);
282 282
 
283 283
 endif;
284 284
 
285
-if ( ! function_exists( 'lsx_wc_cart_link_fragment' ) ) :
285
+if ( ! function_exists('lsx_wc_cart_link_fragment')) :
286 286
 
287 287
 	/**
288 288
 	 * Cart Fragments.
@@ -291,7 +291,7 @@  discard block
 block discarded – undo
291 291
 	 * @package    lsx
292 292
 	 * @subpackage woocommerce
293 293
 	 */
294
-	function lsx_wc_cart_link_fragment( $fragments ) {
294
+	function lsx_wc_cart_link_fragment($fragments) {
295 295
 		global $woocommerce;
296 296
 
297 297
 		ob_start();
@@ -303,7 +303,7 @@  discard block
 block discarded – undo
303 303
 
304 304
 endif;
305 305
 
306
-if ( ! function_exists( 'lsx_wc_cart_link' ) ) :
306
+if ( ! function_exists('lsx_wc_cart_link')) :
307 307
 
308 308
 	/**
309 309
 	 * Cart Link.
@@ -314,16 +314,16 @@  discard block
 block discarded – undo
314 314
 	 */
315 315
 	function lsx_wc_cart_link() {
316 316
 		?>
317
-			<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">
317
+			<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">
318 318
 				<?php /* Translators: %s: items quantity */ ?>
319
-				<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>
319
+				<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>
320 320
 			</a>
321 321
 		<?php
322 322
 	}
323 323
 
324 324
 endif;
325 325
 
326
-if ( ! function_exists( 'lsx_wc_loop_shop_per_page' ) ) :
326
+if ( ! function_exists('lsx_wc_loop_shop_per_page')) :
327 327
 
328 328
 	/**
329 329
 	 * Changes the number of products to display on shop.
@@ -331,16 +331,16 @@  discard block
 block discarded – undo
331 331
 	 * @package    lsx
332 332
 	 * @subpackage woocommerce
333 333
 	 */
334
-	function lsx_wc_loop_shop_per_page( $items ) {
334
+	function lsx_wc_loop_shop_per_page($items) {
335 335
 		$items = 20;
336 336
 		return $items;
337 337
 	}
338 338
 
339
-	add_filter( 'loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20 );
339
+	add_filter('loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20);
340 340
 
341 341
 endif;
342 342
 
343
-if ( ! function_exists( 'lsx_wc_add_to_cart_message_html' ) ) :
343
+if ( ! function_exists('lsx_wc_add_to_cart_message_html')) :
344 344
 
345 345
 	/**
346 346
 	 * Changes the "added to cart" message HTML.
@@ -348,39 +348,39 @@  discard block
 block discarded – undo
348 348
 	 * @package    lsx
349 349
 	 * @subpackage woocommerce
350 350
 	 */
351
-	function lsx_wc_add_to_cart_message_html( $message, $products ) {
351
+	function lsx_wc_add_to_cart_message_html($message, $products) {
352 352
 		$message = '<div class="woocommerce-message-added-to-cart">' . $message . '</div>';
353 353
 		return $message;
354 354
 	}
355 355
 
356
-	add_filter( 'wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2 );
356
+	add_filter('wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2);
357 357
 
358 358
 endif;
359 359
 
360
-if ( defined( 'WC_VERSION' ) && version_compare( WC_VERSION, '2.3', '>=' ) ) {
361
-	add_filter( 'woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment' );
360
+if (defined('WC_VERSION') && version_compare(WC_VERSION, '2.3', '>=')) {
361
+	add_filter('woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment');
362 362
 } else {
363
-	add_filter( 'add_to_cart_fragments', 'lsx_wc_cart_link_fragment' );
363
+	add_filter('add_to_cart_fragments', 'lsx_wc_cart_link_fragment');
364 364
 }
365 365
 
366
-remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 );
366
+remove_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 10);
367 367
 
368
-add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9 );
369
-add_action( 'woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10 );
370
-add_action( 'woocommerce_after_shop_loop', 'woocommerce_result_count', 20 );
371
-add_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 30 );
372
-add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 );
368
+add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9);
369
+add_action('woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10);
370
+add_action('woocommerce_after_shop_loop', 'woocommerce_result_count', 20);
371
+add_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 30);
372
+add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31);
373 373
 
374
-remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
375
-remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 );
374
+remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20);
375
+remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30);
376 376
 
377
-add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9 );
378
-add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10 );
379
-add_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
380
-add_action( 'woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30 );
381
-add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 );
377
+add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9);
378
+add_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10);
379
+add_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20);
380
+add_action('woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30);
381
+add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31);
382 382
 
383
-if ( ! function_exists( 'lsx_wc_sorting_wrapper' ) ) :
383
+if ( ! function_exists('lsx_wc_sorting_wrapper')) :
384 384
 
385 385
 	/**
386 386
 	 * Sorting wrapper.
@@ -394,7 +394,7 @@  discard block
 block discarded – undo
394 394
 
395 395
 endif;
396 396
 
397
-if ( ! function_exists( 'lsx_wc_sorting_wrapper_close' ) ) :
397
+if ( ! function_exists('lsx_wc_sorting_wrapper_close')) :
398 398
 
399 399
 	/**
400 400
 	 * Sorting wrapper close.
@@ -408,7 +408,7 @@  discard block
 block discarded – undo
408 408
 
409 409
 endif;
410 410
 
411
-if ( ! function_exists( 'lsx_wc_product_columns_wrapper_close' ) ) :
411
+if ( ! function_exists('lsx_wc_product_columns_wrapper_close')) :
412 412
 
413 413
 	/**
414 414
 	 * Product columns wrapper close.
@@ -422,7 +422,7 @@  discard block
 block discarded – undo
422 422
 
423 423
 endif;
424 424
 
425
-if ( ! function_exists( 'lsx_wc_woocommerce_pagination' ) ) :
425
+if ( ! function_exists('lsx_wc_woocommerce_pagination')) :
426 426
 
427 427
 	/**
428 428
 	 * LSX WooCommerce Pagination
@@ -434,7 +434,7 @@  discard block
 block discarded – undo
434 434
 	 * @subpackage woocommerce
435 435
 	 */
436 436
 	function lsx_wc_woocommerce_pagination() {
437
-		if ( woocommerce_products_will_display() ) {
437
+		if (woocommerce_products_will_display()) {
438 438
 			woocommerce_pagination();
439 439
 		}
440 440
 	}
Please login to merge, or discard this patch.
includes/admin/welcome-screen/component-enhance.php 1 patch
Spacing   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -10,28 +10,28 @@  discard block
 block discarded – undo
10 10
 <div class="row">
11 11
 	<div class="col-md-12">
12 12
 		<div class="box enhance">
13
-			<h2><?php esc_html_e( 'Enhance LSX', 'lsx' ); ?></h2>
14
-			<p><?php esc_html_e( 'Take a look at our range of extensions that add to the already rich functionality of the LSX WordPress theme.', 'lsx' ); ?></p>
13
+			<h2><?php esc_html_e('Enhance LSX', 'lsx'); ?></h2>
14
+			<p><?php esc_html_e('Take a look at our range of extensions that add to the already rich functionality of the LSX WordPress theme.', 'lsx'); ?></p>
15 15
 
16 16
 			<div class="row">
17 17
 				<div class="col-md-4">
18 18
 					<div class="box-clean">
19
-						<a href="https://www.lsdev.biz/product/lsx-banners/" target="_blank"><?php esc_html_e( 'Banners', 'lsx' ); ?> - <span class="price">Price from $39.00</span></a>
20
-						<p><?php esc_html_e( 'The LSX Banners extension adds advanced banner configuration options to your WordPress site running LSX theme.', 'lsx' ); ?></p>
19
+						<a href="https://www.lsdev.biz/product/lsx-banners/" target="_blank"><?php esc_html_e('Banners', 'lsx'); ?> - <span class="price">Price from $39.00</span></a>
20
+						<p><?php esc_html_e('The LSX Banners extension adds advanced banner configuration options to your WordPress site running LSX theme.', 'lsx'); ?></p>
21 21
 					</div>
22 22
 				</div>
23 23
 
24 24
 				<div class="col-md-4">
25 25
 					<div class="box-clean">
26
-						<a href="https://www.lsdev.biz/product/lsx-currencies/" target="_blank"><?php esc_html_e( 'Currencies', 'lsx' ); ?> - <span class="price">Price from $29.00</span></a>
27
-						<p><?php esc_html_e( 'The LSX Currencies extension adds currency selection functionality to sites, allowing users to view your products in whatever currencies you choose to sell in.', 'lsx' ); ?></p>
26
+						<a href="https://www.lsdev.biz/product/lsx-currencies/" target="_blank"><?php esc_html_e('Currencies', 'lsx'); ?> - <span class="price">Price from $29.00</span></a>
27
+						<p><?php esc_html_e('The LSX Currencies extension adds currency selection functionality to sites, allowing users to view your products in whatever currencies you choose to sell in.', 'lsx'); ?></p>
28 28
 					</div>
29 29
 				</div>
30 30
 
31 31
 				<div class="col-md-4">
32 32
 					<div class="box-clean">
33
-						<a href="https://www.lsdev.biz/product/lsx-blog-customizer/" target="_blank"><?php esc_html_e( 'Blog Customizer', 'lsx' ); ?> - <span class="price">Price from $29.00</span></a>
34
-						<p><?php esc_html_e( 'It allows you it to customize various aspects of the the appearance of your blog, posts widgets, archive pages and single posts so they looks exactly how you want.', 'lsx' ); ?></p>
33
+						<a href="https://www.lsdev.biz/product/lsx-blog-customizer/" target="_blank"><?php esc_html_e('Blog Customizer', 'lsx'); ?> - <span class="price">Price from $29.00</span></a>
34
+						<p><?php esc_html_e('It allows you it to customize various aspects of the the appearance of your blog, posts widgets, archive pages and single posts so they looks exactly how you want.', 'lsx'); ?></p>
35 35
 					</div>
36 36
 				</div>
37 37
 			</div>
@@ -39,22 +39,22 @@  discard block
 block discarded – undo
39 39
 			<div class="row">
40 40
 				<div class="col-md-4">
41 41
 					<div class="box-clean">
42
-						<a href="https://www.lsdev.biz/product/lsx-customizer/" target="_blank"><?php esc_html_e( 'Customizer', 'lsx' ); ?> - <span class="price">Price from $49.00</span></a>
43
-						<p><?php esc_html_e( 'You\'ve installed LSX, so now why not make it all yours? Whether it\'s a small CSS tweak or changing the entire layout of pages, posts or archives, please make use of the Theme Customizer plugin.', 'lsx' ); ?></p>
42
+						<a href="https://www.lsdev.biz/product/lsx-customizer/" target="_blank"><?php esc_html_e('Customizer', 'lsx'); ?> - <span class="price">Price from $49.00</span></a>
43
+						<p><?php esc_html_e('You\'ve installed LSX, so now why not make it all yours? Whether it\'s a small CSS tweak or changing the entire layout of pages, posts or archives, please make use of the Theme Customizer plugin.', 'lsx'); ?></p>
44 44
 					</div>
45 45
 				</div>
46 46
 
47 47
 				<div class="col-md-4">
48 48
 					<div class="box-clean">
49
-						<a href="https://www.lsdev.biz/product/lsx-login/" target="_blank"><?php esc_html_e( 'Login', 'lsx' ); ?> - <span class="price">Price from $39.00</span></a>
50
-						<p><?php esc_html_e( 'The LSX Login extension allows users to log into a dashboard and then see configurable content based on which users can access which content.', 'lsx' ); ?></p>
49
+						<a href="https://www.lsdev.biz/product/lsx-login/" target="_blank"><?php esc_html_e('Login', 'lsx'); ?> - <span class="price">Price from $39.00</span></a>
50
+						<p><?php esc_html_e('The LSX Login extension allows users to log into a dashboard and then see configurable content based on which users can access which content.', 'lsx'); ?></p>
51 51
 					</div>
52 52
 				</div>
53 53
 
54 54
 				<div class="col-md-4">
55 55
 					<div class="box-clean">
56
-						<a href="https://www.lsdev.biz/product/lsx-mega-menus/" target="_blank"><?php esc_html_e( 'Mega Menus', 'lsx' ); ?> - <span class="price">Price from $39.00</span></a>
57
-						<p><?php esc_html_e( 'Create custom, full-width dropdown menus that contain images, widgets and more that seamlessly tie into your LSX WordPress site.', 'lsx' ); ?></p>
56
+						<a href="https://www.lsdev.biz/product/lsx-mega-menus/" target="_blank"><?php esc_html_e('Mega Menus', 'lsx'); ?> - <span class="price">Price from $39.00</span></a>
57
+						<p><?php esc_html_e('Create custom, full-width dropdown menus that contain images, widgets and more that seamlessly tie into your LSX WordPress site.', 'lsx'); ?></p>
58 58
 					</div>
59 59
 				</div>
60 60
 			</div>
@@ -62,22 +62,22 @@  discard block
 block discarded – undo
62 62
 			<div class="row">
63 63
 				<div class="col-md-4">
64 64
 					<div class="box-clean">
65
-						<a href="https://www.lsdev.biz/product/lsx-team/" target="_blank"><?php esc_html_e( 'Team', 'lsx' ); ?> - <span class="price">Price from $29.00</span></a>
66
-						<p><?php esc_html_e( 'The LSX Team Extension provides a custom post type that allows you to easily show off the people that make up your business.', 'lsx' ); ?></p>
65
+						<a href="https://www.lsdev.biz/product/lsx-team/" target="_blank"><?php esc_html_e('Team', 'lsx'); ?> - <span class="price">Price from $29.00</span></a>
66
+						<p><?php esc_html_e('The LSX Team Extension provides a custom post type that allows you to easily show off the people that make up your business.', 'lsx'); ?></p>
67 67
 					</div>
68 68
 				</div>
69 69
 
70 70
 				<div class="col-md-4">
71 71
 					<div class="box-clean">
72
-						<a href="https://www.lsdev.biz/product/lsx-testimonials/" target="_blank"><?php esc_html_e( 'Testimonials', 'lsx' ); ?> - <span class="price">Price from $29.00</span></a>
73
-						<p><?php esc_html_e( 'The LSX Testimonials extension adds the "Testimonials" post type, which you can display front-and-centre on your site.', 'lsx' ); ?></p>
72
+						<a href="https://www.lsdev.biz/product/lsx-testimonials/" target="_blank"><?php esc_html_e('Testimonials', 'lsx'); ?> - <span class="price">Price from $29.00</span></a>
73
+						<p><?php esc_html_e('The LSX Testimonials extension adds the "Testimonials" post type, which you can display front-and-centre on your site.', 'lsx'); ?></p>
74 74
 					</div>
75 75
 				</div>
76 76
 
77 77
 				<div class="col-md-4">
78 78
 					<div class="box-clean">
79
-						<a href="https://www.lsdev.biz/product/lsx-geo-content/" target="_blank"><?php esc_html_e( 'Geo Content', 'lsx' ); ?> - <span class="price">Price from $59.00</span></a>
80
-						<p><?php esc_html_e( 'LSX Geo Content allows you to serve different content to users based on their automatically-detected IP address.', 'lsx' ); ?></p>
79
+						<a href="https://www.lsdev.biz/product/lsx-geo-content/" target="_blank"><?php esc_html_e('Geo Content', 'lsx'); ?> - <span class="price">Price from $59.00</span></a>
80
+						<p><?php esc_html_e('LSX Geo Content allows you to serve different content to users based on their automatically-detected IP address.', 'lsx'); ?></p>
81 81
 					</div>
82 82
 				</div>
83 83
 			</div>
@@ -85,41 +85,41 @@  discard block
 block discarded – undo
85 85
 			<div class="row">
86 86
 				<div class="col-md-4">
87 87
 					<div class="box-clean">
88
-						<a href="https://www.lsdev.biz/product/lsx-services/" target="_blank"><?php esc_html_e( 'Services', 'lsx' ); ?> - <span class="price">Price from $29.00</span></a>
89
-						<p><?php esc_html_e( 'Adds the "Service" post type to your LSX website which allows you to display and categorize the services your business provides.', 'lsx' ); ?></p>
88
+						<a href="https://www.lsdev.biz/product/lsx-services/" target="_blank"><?php esc_html_e('Services', 'lsx'); ?> - <span class="price">Price from $29.00</span></a>
89
+						<p><?php esc_html_e('Adds the "Service" post type to your LSX website which allows you to display and categorize the services your business provides.', 'lsx'); ?></p>
90 90
 					</div>
91 91
 				</div>
92 92
 
93 93
 				<div class="col-md-4">
94 94
 					<div class="box-clean">
95
-						<a href="https://www.lsdev.biz/product/lsx-projects/" target="_blank"><?php esc_html_e( 'Projects', 'lsx' ); ?> - <span class="price">Price from $29.00</span></a>
96
-						<p><?php esc_html_e( 'Show off your finest work with the LSX Projects Extension! It adds a "Project" post type, allowing you to categorize and display your Projects on your LSX website.', 'lsx' ); ?></p>
95
+						<a href="https://www.lsdev.biz/product/lsx-projects/" target="_blank"><?php esc_html_e('Projects', 'lsx'); ?> - <span class="price">Price from $29.00</span></a>
96
+						<p><?php esc_html_e('Show off your finest work with the LSX Projects Extension! It adds a "Project" post type, allowing you to categorize and display your Projects on your LSX website.', 'lsx'); ?></p>
97 97
 					</div>
98 98
 				</div>
99 99
 
100 100
 				<div class="col-md-4">
101 101
 					<div class="box-clean">
102
-						<a href="https://www.lsdev.biz/product/lsx-sharing/" target="_blank"><?php esc_html_e( 'Sharing', 'lsx' ); ?> - <span class="price">Price from $29.00</span></a>
103
-						<p><?php esc_html_e( 'LSX Sharing adds buttons to your posts that your readers can use to share your content on Facebook, Twitter and Pinterest.', 'lsx' ); ?></p>
102
+						<a href="https://www.lsdev.biz/product/lsx-sharing/" target="_blank"><?php esc_html_e('Sharing', 'lsx'); ?> - <span class="price">Price from $29.00</span></a>
103
+						<p><?php esc_html_e('LSX Sharing adds buttons to your posts that your readers can use to share your content on Facebook, Twitter and Pinterest.', 'lsx'); ?></p>
104 104
 					</div>
105 105
 				</div>
106 106
 			</div>
107 107
 
108
-			<h2><?php esc_html_e( 'LSX extensions bundles', 'lsx' ); ?></h2>
109
-			<p><?php esc_html_e( 'We\'ve created two bundles to help you to get the most out of LSX Theme.', 'lsx' ); ?></p>
108
+			<h2><?php esc_html_e('LSX extensions bundles', 'lsx'); ?></h2>
109
+			<p><?php esc_html_e('We\'ve created two bundles to help you to get the most out of LSX Theme.', 'lsx'); ?></p>
110 110
 
111 111
 			<div class="row">
112 112
 				<div class="col-md-4">
113 113
 					<div class="box-clean">
114
-						<a href="https://www.lsdev.biz/product/lsx-essentials-bundle/" target="_blank"><?php esc_html_e( 'LSX Essentials', 'lsx' ); ?> - <span class="price">Price from $99.00</span></a>
115
-						<p><?php esc_html_e( 'A collection of essential LSX extensions giving you more functionality, additional content types and greater control over the styling of your theme.', 'lsx' ); ?></p>
114
+						<a href="https://www.lsdev.biz/product/lsx-essentials-bundle/" target="_blank"><?php esc_html_e('LSX Essentials', 'lsx'); ?> - <span class="price">Price from $99.00</span></a>
115
+						<p><?php esc_html_e('A collection of essential LSX extensions giving you more functionality, additional content types and greater control over the styling of your theme.', 'lsx'); ?></p>
116 116
 					</div>
117 117
 				</div>
118 118
 
119 119
 				<div class="col-md-4">
120 120
 					<div class="box-clean">
121
-						<a href="https://www.lsdev.biz/product/lsx-complete-bundle/" target="_blank"><?php esc_html_e( 'LSX Complete', 'lsx' ); ?> - <span class="price">Price from $199.00</span></a>
122
-						<p><?php esc_html_e( 'A full set of LSX extensions giving you all the functionality, content types and customization tools you may need!', 'lsx' ); ?></p>
121
+						<a href="https://www.lsdev.biz/product/lsx-complete-bundle/" target="_blank"><?php esc_html_e('LSX Complete', 'lsx'); ?> - <span class="price">Price from $199.00</span></a>
122
+						<p><?php esc_html_e('A full set of LSX extensions giving you all the functionality, content types and customization tools you may need!', 'lsx'); ?></p>
123 123
 					</div>
124 124
 				</div>
125 125
 			</div>
Please login to merge, or discard this patch.