@@ -6,11 +6,11 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 updated"><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 |
||
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="vcard post-meta-author"><span>%1$s</span> <span class="fn"><a href="%2$s">%3$s</a></span></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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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">←</span> ' . esc_html__( 'Previous', 'lsx' ), |
|
389 | - 'next_text' => esc_html__( 'Next', 'lsx' ) . ' <span class="meta-nav">→</span>', |
|
390 | - ) ); |
|
387 | + 'current' => max(1, intval(get_query_var('paged'))), |
|
388 | + 'prev_text' => '<span class="meta-nav">←</span> ' . esc_html__('Previous', 'lsx'), |
|
389 | + 'next_text' => esc_html__('Next', 'lsx') . ' <span class="meta-nav">→</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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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; |
@@ -10,30 +10,30 @@ discard block |
||
10 | 10 | <div class="row"> |
11 | 11 | <div class="col-md-6"> |
12 | 12 | <div class="box mailchimp"> |
13 | - <h2><?php esc_html_e( 'Newsletter', 'lsx' ); ?></h2> |
|
14 | - <p><?php esc_html_e( 'Subscribe to our mailing list.', 'lsx' ); ?></p> |
|
13 | + <h2><?php esc_html_e('Newsletter', 'lsx'); ?></h2> |
|
14 | + <p><?php esc_html_e('Subscribe to our mailing list.', 'lsx'); ?></p> |
|
15 | 15 | |
16 | 16 | <!-- Begin MailChimp Signup Form --> |
17 | 17 | <form action="//lsdev.us2.list-manage.com/subscribe/post?u=e50b2c5c82f4b42ea978af479&id=92c36218e5" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate> |
18 | 18 | <div id="mc_embed_signup"> |
19 | 19 | <div id="mc_embed_signup_scroll"> |
20 | 20 | <div class="mc-field-group"> |
21 | - <label for="mce-EMAIL"><?php esc_html_e( 'Email Address', 'lsx' ); ?> <span class="asterisk">*</span></label> |
|
21 | + <label for="mce-EMAIL"><?php esc_html_e('Email Address', 'lsx'); ?> <span class="asterisk">*</span></label> |
|
22 | 22 | <input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL"> |
23 | 23 | </div> |
24 | 24 | <div class="mc-field-group"> |
25 | - <label for="mce-FNAME"><?php esc_html_e( 'First Name', 'lsx' ); ?> </label> |
|
25 | + <label for="mce-FNAME"><?php esc_html_e('First Name', 'lsx'); ?> </label> |
|
26 | 26 | <input type="text" value="" name="FNAME" class="" id="mce-FNAME"> |
27 | 27 | </div> |
28 | 28 | <div class="mc-field-group"> |
29 | - <label for="mce-LNAME"><?php esc_html_e( 'Last Name', 'lsx' ); ?> </label> |
|
29 | + <label for="mce-LNAME"><?php esc_html_e('Last Name', 'lsx'); ?> </label> |
|
30 | 30 | <input type="text" value="" name="LNAME" class="" id="mce-LNAME"> |
31 | 31 | </div> |
32 | 32 | </div> |
33 | 33 | <div style="position:absolute;left:-5000px;" aria-hidden="true"><input type="text" name="b_e50b2c5c82f4b42ea978af479_92c36218e5" tabindex="-1" value=""></div> |
34 | 34 | </div> |
35 | 35 | <div class="more-button"> |
36 | - <input type="submit" value="<?php esc_html_e( 'Subscribe', 'lsx' ); ?>" name="subscribe" class="button button-primary"> |
|
36 | + <input type="submit" value="<?php esc_html_e('Subscribe', 'lsx'); ?>" name="subscribe" class="button button-primary"> |
|
37 | 37 | </div> |
38 | 38 | </form> |
39 | 39 | <!--End mc_embed_signup--> |
@@ -42,13 +42,13 @@ discard block |
||
42 | 42 | |
43 | 43 | <div class="col-md-6"> |
44 | 44 | <div class="box suggest"> |
45 | - <h2><?php esc_html_e( 'Enjoying LSX?', 'lsx' ); ?></h2> |
|
45 | + <h2><?php esc_html_e('Enjoying LSX?', 'lsx'); ?></h2> |
|
46 | 46 | |
47 | 47 | <p> |
48 | 48 | <?php |
49 | 49 | printf( |
50 | 50 | /* Translators: 1: HTML open tag link, 2: HTML close tag link */ |
51 | - esc_html__( 'Why not %1$sleave a review%2$s on WordPress.org? We\'re looking foward to all our users\' feedback!', 'lsx' ), |
|
51 | + esc_html__('Why not %1$sleave a review%2$s on WordPress.org? We\'re looking foward to all our users\' feedback!', 'lsx'), |
|
52 | 52 | '<a href="https://wordpress.org/themes/lsx" target="_blank rel="noopener noreferrer">', |
53 | 53 | '</a>' |
54 | 54 | ); |
@@ -20,21 +20,21 @@ discard block |
||
20 | 20 | <div class="col-sm-12"> |
21 | 21 | <?php lsx_footer_top(); ?> |
22 | 22 | |
23 | - <p class="credit <?php if ( has_nav_menu( 'social' ) || has_nav_menu( 'footer' ) ) echo 'credit-float'; ?>"> |
|
23 | + <p class="credit <?php if (has_nav_menu('social') || has_nav_menu('footer')) echo 'credit-float'; ?>"> |
|
24 | 24 | <?php |
25 | 25 | printf( |
26 | 26 | /* Translators: 1: current year, 2: blog name */ |
27 | - esc_html__( '© %1$s %2$s All Rights Reserved', 'lsx' ), |
|
28 | - esc_html( date_i18n( 'Y' ) ), |
|
29 | - esc_html( get_bloginfo( 'name' ) ) |
|
27 | + esc_html__('© %1$s %2$s All Rights Reserved', 'lsx'), |
|
28 | + esc_html(date_i18n('Y')), |
|
29 | + esc_html(get_bloginfo('name')) |
|
30 | 30 | ); |
31 | 31 | ?> |
32 | 32 | |
33 | - <?php if ( apply_filters( 'lsx_credit_link', true ) ) : ?> |
|
33 | + <?php if (apply_filters('lsx_credit_link', true)) : ?> |
|
34 | 34 | <?php |
35 | 35 | printf( |
36 | 36 | /* Translators: 1: theme name, 2: author name and link */ |
37 | - esc_html__( ' | %1$s is a WordPress theme developed by %2$s.', 'lsx' ), |
|
37 | + esc_html__(' | %1$s is a WordPress theme developed by %2$s.', 'lsx'), |
|
38 | 38 | 'LSX', |
39 | 39 | '<a href="https://www.lsdev.biz/" rel="nofollow noreferrer noopener" title="LightSpeed WordPress Development - Unlocking the full value of your business, online" rel="author nofollow noopener noreferrer" >LightSpeed</a>' |
40 | 40 | ); |
@@ -42,24 +42,24 @@ discard block |
||
42 | 42 | <?php endif; ?> |
43 | 43 | </p> |
44 | 44 | |
45 | - <?php if ( has_nav_menu( 'social' ) ) : ?> |
|
45 | + <?php if (has_nav_menu('social')) : ?> |
|
46 | 46 | <nav id="social-navigation" class="social-navigation"> |
47 | 47 | <?php |
48 | - wp_nav_menu( array( |
|
48 | + wp_nav_menu(array( |
|
49 | 49 | 'theme_location' => 'social', |
50 | 50 | 'depth' => 1, |
51 | - ) ); |
|
51 | + )); |
|
52 | 52 | ?> |
53 | 53 | </nav><!-- .social-navigation --> |
54 | 54 | <?php endif; ?> |
55 | 55 | |
56 | - <?php if ( has_nav_menu( 'footer' ) ) : ?> |
|
56 | + <?php if (has_nav_menu('footer')) : ?> |
|
57 | 57 | <nav id="footer-navigation" class="footer-navigation"> |
58 | 58 | <?php |
59 | - wp_nav_menu( array( |
|
59 | + wp_nav_menu(array( |
|
60 | 60 | 'theme_location' => 'footer', |
61 | 61 | 'depth' => 1, |
62 | - ) ); |
|
62 | + )); |
|
63 | 63 | ?> |
64 | 64 | </nav><!-- .footer-navigation --> |
65 | 65 | <?php endif; ?> |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if ( ! defined('ABSPATH')) { |
|
3 | 3 | exit; |
4 | 4 | } |
5 | 5 | |
@@ -7,31 +7,31 @@ discard block |
||
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 wp_kses_post( $_product->get_image( 'lsx-thumbnail-square' ) ); ?> |
|
12 | + <?php echo wp_kses_post($_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 wp_kses_post( wc_get_rating_html( $rating ) ); ?> |
|
18 | + <?php echo wp_kses_post(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 wp_kses_post( $_product->get_name() ); ?></a> |
|
22 | + <a href="<?php echo esc_url(get_comment_link($comment->comment_ID)); ?>"><?php echo wp_kses_post($_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 | - echo wp_kses_post( esc_html__( 'by ', 'lsx' ) . get_comment_author() ); |
|
28 | + echo wp_kses_post(esc_html__('by ', '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> |
@@ -17,38 +17,38 @@ |
||
17 | 17 | */ |
18 | 18 | |
19 | 19 | // Exit if accessed directly |
20 | -if ( ! defined( 'ABSPATH' ) ) { |
|
20 | +if ( ! defined('ABSPATH')) { |
|
21 | 21 | exit; |
22 | 22 | } |
23 | 23 | |
24 | 24 | global $product; ?> |
25 | 25 | |
26 | 26 | <div class="lsx-woocommerce-slot"> |
27 | - <a href="<?php echo esc_url( $product->get_permalink() ); ?>"> |
|
27 | + <a href="<?php echo esc_url($product->get_permalink()); ?>"> |
|
28 | 28 | <figure class="lsx-woocommerce-avatar"> |
29 | - <?php echo wp_kses_post( $product->get_image( 'lsx-thumbnail-square' ) ); ?> |
|
29 | + <?php echo wp_kses_post($product->get_image('lsx-thumbnail-square')); ?> |
|
30 | 30 | </figure> |
31 | 31 | </a> |
32 | 32 | |
33 | 33 | <h5 class="lsx-woocommerce-title"> |
34 | - <a href="<?php echo esc_url( $product->get_permalink() ); ?>"><?php echo wp_kses_post( $product->get_name() ); ?></a> |
|
34 | + <a href="<?php echo esc_url($product->get_permalink()); ?>"><?php echo wp_kses_post($product->get_name()); ?></a> |
|
35 | 35 | </h5> |
36 | 36 | |
37 | - <?php if ( ! empty( $show_rating ) ) : ?> |
|
37 | + <?php if ( ! empty($show_rating)) : ?> |
|
38 | 38 | <div class="lsx-woocommerce-rating"> |
39 | - <?php echo wp_kses_post( wc_get_rating_html( $product->get_average_rating() ) ); ?> |
|
39 | + <?php echo wp_kses_post(wc_get_rating_html($product->get_average_rating())); ?> |
|
40 | 40 | </div> |
41 | 41 | <?php endif; ?> |
42 | 42 | |
43 | 43 | <?php |
44 | 44 | $price_html = $product->get_price_html(); |
45 | - if ( $price_html ) : ?> |
|
45 | + if ($price_html) : ?> |
|
46 | 46 | <div class="lsx-woocommerce-price"> |
47 | - <?php echo wp_kses_post( $price_html ); ?> |
|
47 | + <?php echo wp_kses_post($price_html); ?> |
|
48 | 48 | </div> |
49 | 49 | <?php endif; ?> |
50 | 50 | |
51 | 51 | <div class="lsx-woocommerce-content"> |
52 | - <a href="<?php echo esc_url( $product->get_permalink() ); ?>" class="moretag"><?php esc_attr_e( 'View more', 'lsx' ); ?></a> |
|
52 | + <a href="<?php echo esc_url($product->get_permalink()); ?>" class="moretag"><?php esc_attr_e('View more', 'lsx'); ?></a> |
|
53 | 53 | </div> |
54 | 54 | </div> |
@@ -9,21 +9,21 @@ discard block |
||
9 | 9 | |
10 | 10 | <div class="row"> |
11 | 11 | <div class="col-md-12"> |
12 | - <h1><span class="logo"><?php echo esc_html__( 'LSX', 'lsx' ); ?></span> <sup class="version"><?php echo esc_html( LSX_VERSION ); ?></sup></h1> |
|
12 | + <h1><span class="logo"><?php echo esc_html__('LSX', 'lsx'); ?></span> <sup class="version"><?php echo esc_html(LSX_VERSION); ?></sup></h1> |
|
13 | 13 | </div> |
14 | 14 | </div> |
15 | 15 | |
16 | 16 | <div class="row"> |
17 | 17 | <div class="col-md-6"> |
18 | 18 | <div class="box enrich"> |
19 | - <h2><?php esc_html_e( 'Built to enrich your WordPress experience', 'lsx' ); ?></h2> |
|
20 | - <p><?php esc_html_e( 'Whether you\'re using LSX for your personal blog, as the platform for a powerful WooCommerce store or as the foundation for your own child-theme, you\'ll find it\'s the perfect fit for WordPress.', 'lsx' ); ?></p> |
|
19 | + <h2><?php esc_html_e('Built to enrich your WordPress experience', 'lsx'); ?></h2> |
|
20 | + <p><?php esc_html_e('Whether you\'re using LSX for your personal blog, as the platform for a powerful WooCommerce store or as the foundation for your own child-theme, you\'ll find it\'s the perfect fit for WordPress.', 'lsx'); ?></p> |
|
21 | 21 | |
22 | 22 | <p> |
23 | 23 | <?php |
24 | 24 | printf( |
25 | 25 | /* Translators: 1: HTML open tag link, 2: HTML close tag link */ |
26 | - esc_html__( 'Use LSX with our %1$sTour Operator Plugin%2$s to create the ultimate tour operators website!', 'lsx' ), |
|
26 | + esc_html__('Use LSX with our %1$sTour Operator Plugin%2$s to create the ultimate tour operators website!', 'lsx'), |
|
27 | 27 | '<a href="https://www.lsdev.biz/product/tour-operator-plugin/" target="_blank" rel="noreferrer noopener">', |
28 | 28 | '</a>' |
29 | 29 | ); |
@@ -34,13 +34,13 @@ discard block |
||
34 | 34 | |
35 | 35 | <div class="col-md-6"> |
36 | 36 | <div class="box support"> |
37 | - <h2><?php esc_html_e( 'Get support', 'lsx' ); ?></h2> |
|
37 | + <h2><?php esc_html_e('Get support', 'lsx'); ?></h2> |
|
38 | 38 | |
39 | 39 | <p> |
40 | 40 | <?php |
41 | 41 | printf( |
42 | 42 | /* Translators: 1: HTML open tag link, 2: HTML close tag link, 3: HTML open tag link, 4: HTML close tag link */ |
43 | - esc_html__( 'You\'ll find information on how to use and customize the LSX theme in our %1$sdocumentation%2$s section. However, please do %3$scontact us%4$s for support should you still find yourself unable to achieve your needs.', 'lsx' ), |
|
43 | + esc_html__('You\'ll find information on how to use and customize the LSX theme in our %1$sdocumentation%2$s section. However, please do %3$scontact us%4$s for support should you still find yourself unable to achieve your needs.', 'lsx'), |
|
44 | 44 | '<a href="https://www.lsdev.biz/documentation/lsx/" target="_blank" rel="noreferrer noopener">', |
45 | 45 | '</a>', |
46 | 46 | '<a href="https://www.lsdev.biz/contact-us/" target="_blank" rel="noreferrer noopener">', |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | |
52 | 52 | <div class="more-button"> |
53 | 53 | <a href="https://www.lsdev.biz/contact-us/" target="_blank" rel="noreferrer" class="button button-primary" > |
54 | - <?php esc_html_e( 'Get in touch', 'lsx' ); ?> |
|
54 | + <?php esc_html_e('Get in touch', 'lsx'); ?> |
|
55 | 55 | </a> |
56 | 56 | </div> |
57 | 57 | </div> |
@@ -6,11 +6,11 @@ discard block |
||
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,15 +19,15 @@ discard block |
||
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 | |
30 | -if ( ! function_exists( 'lsx_tec_theme_wrapper_start' ) ) : |
|
30 | +if ( ! function_exists('lsx_tec_theme_wrapper_start')) : |
|
31 | 31 | |
32 | 32 | /** |
33 | 33 | * The Events Calendar wrapper start. |
@@ -37,17 +37,17 @@ discard block |
||
37 | 37 | */ |
38 | 38 | function lsx_tec_theme_wrapper_start() { |
39 | 39 | lsx_content_wrap_before(); |
40 | - echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">'; |
|
40 | + echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">'; |
|
41 | 41 | lsx_content_before(); |
42 | 42 | echo '<main id="main" class="site-main" role="main">'; |
43 | 43 | lsx_content_top(); |
44 | 44 | } |
45 | 45 | |
46 | - add_action( 'tribe_events_before_html', 'lsx_tec_theme_wrapper_start', 9 ); |
|
46 | + add_action('tribe_events_before_html', 'lsx_tec_theme_wrapper_start', 9); |
|
47 | 47 | |
48 | 48 | endif; |
49 | 49 | |
50 | -if ( ! function_exists( 'lsx_tec_theme_wrapper_end' ) ) : |
|
50 | +if ( ! function_exists('lsx_tec_theme_wrapper_end')) : |
|
51 | 51 | |
52 | 52 | /** |
53 | 53 | * The Events Calendar wrapper end. |
@@ -63,11 +63,11 @@ discard block |
||
63 | 63 | lsx_content_wrap_after(); |
64 | 64 | } |
65 | 65 | |
66 | - add_action( 'tribe_events_after_html', 'lsx_tec_theme_wrapper_end', 11 ); |
|
66 | + add_action('tribe_events_after_html', 'lsx_tec_theme_wrapper_end', 11); |
|
67 | 67 | |
68 | 68 | endif; |
69 | 69 | |
70 | -if ( ! function_exists( 'lsx_tec_disable_lsx_banner' ) ) : |
|
70 | +if ( ! function_exists('lsx_tec_disable_lsx_banner')) : |
|
71 | 71 | |
72 | 72 | /** |
73 | 73 | * Disable LSX Banners in some pages. |
@@ -75,16 +75,16 @@ discard block |
||
75 | 75 | * @package lsx |
76 | 76 | * @subpackage the-events-calendar |
77 | 77 | */ |
78 | - function lsx_tec_disable_lsx_banner( $disabled ) { |
|
78 | + function lsx_tec_disable_lsx_banner($disabled) { |
|
79 | 79 | global $current_screen; |
80 | 80 | |
81 | - $post_types = apply_filters( 'tribe_is_post_type_screen_post_types', Tribe__Main::get_post_types() ); |
|
81 | + $post_types = apply_filters('tribe_is_post_type_screen_post_types', Tribe__Main::get_post_types()); |
|
82 | 82 | |
83 | - if ( is_archive() && tribe_is_event() ) { |
|
83 | + if (is_archive() && tribe_is_event()) { |
|
84 | 84 | $disabled = true; |
85 | 85 | } |
86 | 86 | |
87 | - if ( is_single() && tribe_is_event() ) { |
|
87 | + if (is_single() && tribe_is_event()) { |
|
88 | 88 | $disabled = true; |
89 | 89 | } |
90 | 90 | |
@@ -92,6 +92,6 @@ discard block |
||
92 | 92 | } |
93 | 93 | |
94 | 94 | // LSX Banners - Banner |
95 | - add_filter( 'lsx_banner_disable', 'lsx_tec_disable_lsx_banner' ); |
|
95 | + add_filter('lsx_banner_disable', 'lsx_tec_disable_lsx_banner'); |
|
96 | 96 | |
97 | 97 | endif; |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | |
13 | 13 | <?php lsx_content_wrap_before(); ?> |
14 | 14 | |
15 | -<div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>"> |
|
15 | +<div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>"> |
|
16 | 16 | |
17 | 17 | <?php lsx_content_before(); ?> |
18 | 18 | |
@@ -20,9 +20,9 @@ discard block |
||
20 | 20 | |
21 | 21 | <?php lsx_content_top(); ?> |
22 | 22 | |
23 | - <?php if ( have_posts() ) : ?> |
|
23 | + <?php if (have_posts()) : ?> |
|
24 | 24 | |
25 | - <?php while ( have_posts() ) : the_post(); ?> |
|
25 | + <?php while (have_posts()) : the_post(); ?> |
|
26 | 26 | |
27 | 27 | <?php lsx_entry_before(); ?> |
28 | 28 | |
@@ -55,6 +55,6 @@ discard block |
||
55 | 55 | |
56 | 56 | <?php lsx_content_wrap_after(); ?> |
57 | 57 | |
58 | -<?php get_sidebar( 'sitemap' ); ?> |
|
58 | +<?php get_sidebar('sitemap'); ?> |
|
59 | 59 | |
60 | 60 | <?php get_footer(); |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | |
13 | 13 | <?php lsx_content_wrap_before(); ?> |
14 | 14 | |
15 | -<div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>"> |
|
15 | +<div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>"> |
|
16 | 16 | |
17 | 17 | <?php lsx_content_before(); ?> |
18 | 18 | |
@@ -20,9 +20,9 @@ discard block |
||
20 | 20 | |
21 | 21 | <?php lsx_content_top(); ?> |
22 | 22 | |
23 | - <?php if ( have_posts() ) : ?> |
|
23 | + <?php if (have_posts()) : ?> |
|
24 | 24 | |
25 | - <?php while ( have_posts() ) : the_post(); ?> |
|
25 | + <?php while (have_posts()) : the_post(); ?> |
|
26 | 26 | |
27 | 27 | <?php lsx_entry_before(); ?> |
28 | 28 | |
@@ -31,25 +31,25 @@ discard block |
||
31 | 31 | <?php lsx_entry_top(); ?> |
32 | 32 | |
33 | 33 | <div class="entry-content"> |
34 | - <h2><?php esc_html_e( 'The Last 30 Posts', 'lsx' ); ?></h2> |
|
34 | + <h2><?php esc_html_e('The Last 30 Posts', 'lsx'); ?></h2> |
|
35 | 35 | |
36 | 36 | <ul> |
37 | 37 | <?php |
38 | - $loop = new WP_Query( array( |
|
38 | + $loop = new WP_Query(array( |
|
39 | 39 | 'posts_per_page' => 30, |
40 | - ) ); |
|
40 | + )); |
|
41 | 41 | ?> |
42 | 42 | |
43 | - <?php if ( $loop->have_posts() ) : ?> |
|
43 | + <?php if ($loop->have_posts()) : ?> |
|
44 | 44 | |
45 | - <?php while ( $loop->have_posts() ) : ?> |
|
45 | + <?php while ($loop->have_posts()) : ?> |
|
46 | 46 | |
47 | 47 | <?php |
48 | 48 | $loop->the_post(); |
49 | 49 | $loop->is_home = false; |
50 | 50 | ?> |
51 | 51 | |
52 | - <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> - <?php the_time( get_option( 'date_format' ) ); ?> - <?php echo esc_html( $post->comment_count ); ?> <?php esc_html_e( 'comments', 'lsx' ); ?></li> |
|
52 | + <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> - <?php the_time(get_option('date_format')); ?> - <?php echo esc_html($post->comment_count); ?> <?php esc_html_e('comments', 'lsx'); ?></li> |
|
53 | 53 | |
54 | 54 | <?php endwhile; ?> |
55 | 55 | |
@@ -58,16 +58,16 @@ discard block |
||
58 | 58 | <?php wp_reset_postdata(); ?> |
59 | 59 | </ul> |
60 | 60 | |
61 | - <h2><?php esc_html_e( 'Categories', 'lsx' ); ?></h2> |
|
61 | + <h2><?php esc_html_e('Categories', 'lsx'); ?></h2> |
|
62 | 62 | |
63 | 63 | <ul> |
64 | - <?php wp_list_categories( 'title_li=&hierarchical=0&show_count=1' ); ?> |
|
64 | + <?php wp_list_categories('title_li=&hierarchical=0&show_count=1'); ?> |
|
65 | 65 | </ul> |
66 | 66 | |
67 | - <h2><?php esc_html_e( 'Monthly Archives', 'lsx' ); ?></h2> |
|
67 | + <h2><?php esc_html_e('Monthly Archives', 'lsx'); ?></h2> |
|
68 | 68 | |
69 | 69 | <ul> |
70 | - <?php wp_get_archives( 'type=monthly&show_post_count=1' ); ?> |
|
70 | + <?php wp_get_archives('type=monthly&show_post_count=1'); ?> |
|
71 | 71 | </ul> |
72 | 72 | </div><!-- .entry-content --> |
73 | 73 |