@@ -24,38 +24,38 @@ |
||
24 | 24 | <?php |
25 | 25 | the_content(); |
26 | 26 | |
27 | - wp_link_pages( array( |
|
27 | + wp_link_pages(array( |
|
28 | 28 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
29 | 29 | 'after' => '</div></div>', |
30 | 30 | 'link_before' => '<span>', |
31 | 31 | 'link_after' => '</span>', |
32 | - ) ); |
|
32 | + )); |
|
33 | 33 | ?> |
34 | 34 | </div><!-- .entry-content --> |
35 | 35 | |
36 | 36 | <footer class="footer-meta clearfix"> |
37 | - <?php if ( has_tag() || class_exists( 'LSX_Sharing' ) || ( function_exists( 'sharing_display' ) || class_exists( 'Jetpack_Likes' ) ) ) : ?> |
|
37 | + <?php if (has_tag() || class_exists('LSX_Sharing') || (function_exists('sharing_display') || class_exists('Jetpack_Likes'))) : ?> |
|
38 | 38 | <div class="post-tags-wrapper"> |
39 | 39 | <?php lsx_content_post_tags(); ?> |
40 | 40 | |
41 | 41 | <?php |
42 | - if ( class_exists( 'LSX_Sharing' ) ) { |
|
42 | + if (class_exists('LSX_Sharing')) { |
|
43 | 43 | lsx_content_sharing(); |
44 | 44 | } else { |
45 | - if ( function_exists( 'sharing_display' ) ) { |
|
46 | - sharing_display( '', true ); |
|
45 | + if (function_exists('sharing_display')) { |
|
46 | + sharing_display('', true); |
|
47 | 47 | } |
48 | 48 | |
49 | - if ( class_exists( 'Jetpack_Likes' ) ) { |
|
49 | + if (class_exists('Jetpack_Likes')) { |
|
50 | 50 | $custom_likes = new Jetpack_Likes; |
51 | - echo wp_kses_post( $custom_likes->post_likes( '' ) ); |
|
51 | + echo wp_kses_post($custom_likes->post_likes('')); |
|
52 | 52 | } |
53 | 53 | } |
54 | 54 | ?> |
55 | 55 | <?php endif ?> |
56 | 56 | </footer><!-- .footer-meta --> |
57 | 57 | |
58 | - <?php edit_post_link( esc_html__( 'Edit', 'lsx' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' ); ?> |
|
58 | + <?php edit_post_link(esc_html__('Edit', 'lsx'), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>'); ?> |
|
59 | 59 | |
60 | 60 | <?php lsx_entry_bottom(); ?> |
61 | 61 |
@@ -9,37 +9,37 @@ discard block |
||
9 | 9 | <?php lsx_entry_before(); ?> |
10 | 10 | |
11 | 11 | <?php |
12 | - $no_thumb_post_formats = array( 'audio', 'gallery', 'image', 'link', 'quote', 'video' ); |
|
13 | - $has_thumb = has_post_thumbnail() && ! has_post_format( $no_thumb_post_formats ); |
|
12 | + $no_thumb_post_formats = array('audio', 'gallery', 'image', 'link', 'quote', 'video'); |
|
13 | + $has_thumb = has_post_thumbnail() && ! has_post_format($no_thumb_post_formats); |
|
14 | 14 | |
15 | - if ( $has_thumb ) { |
|
15 | + if ($has_thumb) { |
|
16 | 16 | $thumb_class = 'has-thumb'; |
17 | 17 | } else { |
18 | 18 | $thumb_class = 'no-thumb'; |
19 | 19 | } |
20 | 20 | |
21 | - $blog_layout = apply_filters( 'lsx_blog_layout', 'default' ); |
|
21 | + $blog_layout = apply_filters('lsx_blog_layout', 'default'); |
|
22 | 22 | |
23 | 23 | $image_class = ''; |
24 | 24 | |
25 | - $thumbnail_id = get_post_thumbnail_id( get_the_ID() ); |
|
26 | - $image_arr = wp_get_attachment_image_src( $thumbnail_id, 'lsx-thumbnail-single' ); |
|
25 | + $thumbnail_id = get_post_thumbnail_id(get_the_ID()); |
|
26 | + $image_arr = wp_get_attachment_image_src($thumbnail_id, 'lsx-thumbnail-single'); |
|
27 | 27 | |
28 | - if ( is_array( $image_arr ) ) { |
|
28 | + if (is_array($image_arr)) { |
|
29 | 29 | $image_src = $image_arr[0]; |
30 | 30 | } |
31 | 31 | ?> |
32 | 32 | |
33 | -<article id="post-<?php the_ID(); ?>" <?php post_class( $thumb_class ); ?>> |
|
33 | +<article id="post-<?php the_ID(); ?>" <?php post_class($thumb_class); ?>> |
|
34 | 34 | <?php lsx_entry_top(); ?> |
35 | 35 | |
36 | 36 | <div class="entry-layout"> |
37 | 37 | <div class="entry-layout-content entry-layout-content-<?php echo has_post_thumbnail() ? '67' : '100'; ?>"> |
38 | 38 | <header class="entry-header"> |
39 | - <?php if ( $has_thumb ) : ?> |
|
40 | - <div class="entry-image <?php echo esc_attr( $image_class ); ?>"> |
|
39 | + <?php if ($has_thumb) : ?> |
|
40 | + <div class="entry-image <?php echo esc_attr($image_class); ?>"> |
|
41 | 41 | <a class="thumbnail" href="<?php the_permalink(); ?>"> |
42 | - <?php lsx_thumbnail( 'lsx-thumbnail-single' ); ?> |
|
42 | + <?php lsx_thumbnail('lsx-thumbnail-single'); ?> |
|
43 | 43 | </a> |
44 | 44 | </div> |
45 | 45 | <?php endif; ?> |
@@ -51,53 +51,53 @@ discard block |
||
51 | 51 | <?php |
52 | 52 | $format = get_post_format(); |
53 | 53 | |
54 | - if ( false === $format ) { |
|
54 | + if (false === $format) { |
|
55 | 55 | $format = 'standard'; |
56 | - $show_on_front = get_option( 'show_on_front', 'posts' ); |
|
56 | + $show_on_front = get_option('show_on_front', 'posts'); |
|
57 | 57 | |
58 | - if ( 'page' === $show_on_front ) { |
|
59 | - $archive_link = get_permalink( get_option( 'page_for_posts' ) ); |
|
58 | + if ('page' === $show_on_front) { |
|
59 | + $archive_link = get_permalink(get_option('page_for_posts')); |
|
60 | 60 | } else { |
61 | 61 | $archive_link = home_url(); |
62 | 62 | } |
63 | 63 | } else { |
64 | - $archive_link = get_post_format_link( $format ); |
|
64 | + $archive_link = get_post_format_link($format); |
|
65 | 65 | } |
66 | 66 | |
67 | - $format = lsx_translate_format_to_fontawesome( $format ); |
|
67 | + $format = lsx_translate_format_to_fontawesome($format); |
|
68 | 68 | ?> |
69 | 69 | |
70 | 70 | <h1 class="entry-title"> |
71 | - <?php if ( has_post_thumbnail() ) : ?> |
|
72 | - <a href="<?php echo esc_url( $archive_link ); ?>" class="format-link has-thumb fa fa-<?php echo esc_attr( $format ); ?>"></a> |
|
71 | + <?php if (has_post_thumbnail()) : ?> |
|
72 | + <a href="<?php echo esc_url($archive_link); ?>" class="format-link has-thumb fa fa-<?php echo esc_attr($format); ?>"></a> |
|
73 | 73 | <?php else : ?> |
74 | - <a href="<?php echo esc_url( $archive_link ); ?>" class="format-link fa fa-<?php echo esc_attr( $format ); ?>"></a> |
|
74 | + <a href="<?php echo esc_url($archive_link); ?>" class="format-link fa fa-<?php echo esc_attr($format); ?>"></a> |
|
75 | 75 | <?php endif; ?> |
76 | 76 | |
77 | - <?php if ( has_post_format( array( 'link' ) ) ) : ?> |
|
78 | - <a href="<?php echo esc_url( lsx_get_my_url() ); ?>" rel="bookmark"><?php the_title(); ?> <span class="fa fa-external-link"></span></a> |
|
77 | + <?php if (has_post_format(array('link'))) : ?> |
|
78 | + <a href="<?php echo esc_url(lsx_get_my_url()); ?>" rel="bookmark"><?php the_title(); ?> <span class="fa fa-external-link"></span></a> |
|
79 | 79 | <?php else : ?> |
80 | 80 | <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a> |
81 | 81 | <?php endif; ?> |
82 | 82 | |
83 | - <?php if ( is_sticky() ) : ?> |
|
84 | - <span class="label label-default label-sticky"><?php esc_html_e( 'Featured', 'lsx' ); ?></span> |
|
83 | + <?php if (is_sticky()) : ?> |
|
84 | + <span class="label label-default label-sticky"><?php esc_html_e('Featured', 'lsx'); ?></span> |
|
85 | 85 | <?php endif; ?> |
86 | 86 | </h1> |
87 | 87 | </header><!-- .entry-header --> |
88 | 88 | |
89 | - <?php if ( has_post_format( array( 'quote' ) ) || apply_filters( 'lsx_blog_display_text_on_list', true ) ) : ?> |
|
89 | + <?php if (has_post_format(array('quote')) || apply_filters('lsx_blog_display_text_on_list', true)) : ?> |
|
90 | 90 | |
91 | - <?php if ( ! has_post_format( array( 'video', 'audio', 'quote', 'link' ) ) && ! apply_filters( 'lsx_blog_force_content_on_list', false ) ) : ?> |
|
91 | + <?php if ( ! has_post_format(array('video', 'audio', 'quote', 'link')) && ! apply_filters('lsx_blog_force_content_on_list', false)) : ?> |
|
92 | 92 | |
93 | 93 | <div class="entry-summary"> |
94 | 94 | <?php the_excerpt(); ?> |
95 | - <?php edit_post_link( esc_html__( 'Edit', 'lsx' ), '<p class="edit-link">', '</p>' ); ?> |
|
95 | + <?php edit_post_link(esc_html__('Edit', 'lsx'), '<p class="edit-link">', '</p>'); ?> |
|
96 | 96 | </div><!-- .entry-summary --> |
97 | 97 | |
98 | - <?php elseif ( has_post_format( array( 'link' ) ) ) : ?> |
|
98 | + <?php elseif (has_post_format(array('link'))) : ?> |
|
99 | 99 | |
100 | - <?php elseif ( apply_filters( 'lsx_blog_force_content_on_list', false ) ) : ?> |
|
100 | + <?php elseif (apply_filters('lsx_blog_force_content_on_list', false)) : ?> |
|
101 | 101 | |
102 | 102 | <div class="entry-content"> |
103 | 103 | <?php the_content(); ?> |
@@ -109,12 +109,12 @@ discard block |
||
109 | 109 | <?php |
110 | 110 | the_content(); |
111 | 111 | |
112 | - wp_link_pages( array( |
|
112 | + wp_link_pages(array( |
|
113 | 113 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
114 | 114 | 'after' => '</div></div>', |
115 | 115 | 'link_before' => '<span>', |
116 | 116 | 'link_after' => '</span>', |
117 | - ) ); |
|
117 | + )); |
|
118 | 118 | ?> |
119 | 119 | </div><!-- .entry-content --> |
120 | 120 | |
@@ -131,23 +131,23 @@ discard block |
||
131 | 131 | |
132 | 132 | <?php lsx_content_post_tags(); ?> |
133 | 133 | |
134 | - <?php if ( comments_open() && ! empty( $comments_number ) ) : ?> |
|
134 | + <?php if (comments_open() && ! empty($comments_number)) : ?> |
|
135 | 135 | <div class="post-comments"> |
136 | 136 | <a href="<?php the_permalink(); ?>#comments"> |
137 | 137 | <?php |
138 | - if ( '1' === $comments_number ) { |
|
139 | - echo esc_html( _x( 'One Comment', 'lsx' ) ); |
|
138 | + if ('1' === $comments_number) { |
|
139 | + echo esc_html(_x('One Comment', 'lsx')); |
|
140 | 140 | } else { |
141 | 141 | printf( |
142 | 142 | /* Translators: %s: number of comments */ |
143 | - esc_html( _nx( |
|
143 | + esc_html(_nx( |
|
144 | 144 | '%s Comment', |
145 | 145 | '%s Comments', |
146 | 146 | $comments_number, |
147 | 147 | 'content.php', |
148 | 148 | 'lsx' |
149 | - ) ), |
|
150 | - esc_html( number_format_i18n( $comments_number ) ) |
|
149 | + )), |
|
150 | + esc_html(number_format_i18n($comments_number)) |
|
151 | 151 | ); |
152 | 152 | } |
153 | 153 | ?> |
@@ -157,11 +157,11 @@ discard block |
||
157 | 157 | </div> |
158 | 158 | </div> |
159 | 159 | |
160 | - <?php if ( has_post_thumbnail() ) : ?> |
|
160 | + <?php if (has_post_thumbnail()) : ?> |
|
161 | 161 | |
162 | 162 | <div class="entry-image hidden-xs"> |
163 | - <a class="thumbnail" href="<?php the_permalink(); ?>" style="background-image:url(<?php echo esc_url( $image_src ); ?>);"> |
|
164 | - <?php lsx_thumbnail( 'lsx-thumbnail-single' ); ?> |
|
163 | + <a class="thumbnail" href="<?php the_permalink(); ?>" style="background-image:url(<?php echo esc_url($image_src); ?>);"> |
|
164 | + <?php lsx_thumbnail('lsx-thumbnail-single'); ?> |
|
165 | 165 | </a> |
166 | 166 | </div> |
167 | 167 |
@@ -70,14 +70,20 @@ discard block |
||
70 | 70 | <h1 class="entry-title"> |
71 | 71 | <?php if ( has_post_thumbnail() ) : ?> |
72 | 72 | <a href="<?php echo esc_url( $archive_link ); ?>" class="format-link has-thumb fa fa-<?php echo esc_attr( $format ); ?>"></a> |
73 | - <?php else : ?> |
|
74 | - <a href="<?php echo esc_url( $archive_link ); ?>" class="format-link fa fa-<?php echo esc_attr( $format ); ?>"></a> |
|
73 | + <?php else { |
|
74 | + : ?> |
|
75 | + <a href="<?php echo esc_url( $archive_link ); |
|
76 | +} |
|
77 | +?>" class="format-link fa fa-<?php echo esc_attr( $format ); ?>"></a> |
|
75 | 78 | <?php endif; ?> |
76 | 79 | |
77 | 80 | <?php if ( has_post_format( array( 'link' ) ) ) : ?> |
78 | 81 | <a href="<?php echo esc_url( lsx_get_my_url() ); ?>" rel="bookmark"><?php the_title(); ?> <span class="fa fa-external-link"></span></a> |
79 | - <?php else : ?> |
|
80 | - <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a> |
|
82 | + <?php else { |
|
83 | + : ?> |
|
84 | + <a href="<?php the_permalink(); |
|
85 | +} |
|
86 | +?>" rel="bookmark"><?php the_title(); ?></a> |
|
81 | 87 | <?php endif; ?> |
82 | 88 | |
83 | 89 | <?php if ( is_sticky() ) : ?> |
@@ -103,11 +109,13 @@ discard block |
||
103 | 109 | <?php the_content(); ?> |
104 | 110 | </div><!-- .entry-content --> |
105 | 111 | |
106 | - <?php else : ?> |
|
112 | + <?php else { |
|
113 | + : ?> |
|
107 | 114 | |
108 | 115 | <div class="entry-content"> |
109 | 116 | <?php |
110 | 117 | the_content(); |
118 | +} |
|
111 | 119 | |
112 | 120 | wp_link_pages( array( |
113 | 121 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | |
10 | 10 | <?php lsx_content_wrap_before(); ?> |
11 | 11 | |
12 | -<div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>"> |
|
12 | +<div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>"> |
|
13 | 13 | |
14 | 14 | <?php lsx_content_before(); ?> |
15 | 15 | |
@@ -17,15 +17,15 @@ discard block |
||
17 | 17 | |
18 | 18 | <?php lsx_content_top(); ?> |
19 | 19 | |
20 | - <?php if ( have_posts() ) : ?> |
|
20 | + <?php if (have_posts()) : ?> |
|
21 | 21 | |
22 | - <?php while ( have_posts() ) : the_post(); ?> |
|
22 | + <?php while (have_posts()) : the_post(); ?> |
|
23 | 23 | |
24 | 24 | <?php |
25 | - if ( is_singular( 'post' ) ) { |
|
26 | - get_template_part( 'partials/content', 'post' ); |
|
25 | + if (is_singular('post')) { |
|
26 | + get_template_part('partials/content', 'post'); |
|
27 | 27 | } else { |
28 | - get_template_part( 'partials/content', 'custom' ); |
|
28 | + get_template_part('partials/content', 'custom'); |
|
29 | 29 | } |
30 | 30 | ?> |
31 | 31 | |
@@ -40,13 +40,13 @@ discard block |
||
40 | 40 | <?php lsx_content_after(); ?> |
41 | 41 | |
42 | 42 | <?php |
43 | - if ( is_singular( 'post' ) ) { |
|
43 | + if (is_singular('post')) { |
|
44 | 44 | lsx_post_nav(); |
45 | 45 | } |
46 | 46 | ?> |
47 | 47 | |
48 | 48 | <?php |
49 | - if ( comments_open() ) { |
|
49 | + if (comments_open()) { |
|
50 | 50 | comments_template(); |
51 | 51 | } |
52 | 52 | ?> |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | |
10 | 10 | <?php lsx_content_wrap_before(); ?> |
11 | 11 | |
12 | -<div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>"> |
|
12 | +<div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>"> |
|
13 | 13 | |
14 | 14 | <?php lsx_content_before(); ?> |
15 | 15 | |
@@ -17,11 +17,11 @@ discard block |
||
17 | 17 | |
18 | 18 | <?php lsx_content_top(); ?> |
19 | 19 | |
20 | - <?php if ( have_posts() ) : ?> |
|
20 | + <?php if (have_posts()) : ?> |
|
21 | 21 | |
22 | - <?php while ( have_posts() ) : the_post(); ?> |
|
22 | + <?php while (have_posts()) : the_post(); ?> |
|
23 | 23 | |
24 | - <?php get_template_part( 'partials/content', 'page' ); ?> |
|
24 | + <?php get_template_part('partials/content', 'page'); ?> |
|
25 | 25 | |
26 | 26 | <?php endwhile; ?> |
27 | 27 | |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | <?php lsx_content_after(); ?> |
35 | 35 | |
36 | 36 | <?php |
37 | - if ( comments_open() ) { |
|
37 | + if (comments_open()) { |
|
38 | 38 | comments_template(); |
39 | 39 | } |
40 | 40 | ?> |
@@ -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/" title="LightSpeed WordPress Development - Unlocking the full value of your business, online" rel="author">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; ?> |
@@ -20,7 +20,10 @@ |
||
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' ) ) { |
|
24 | + echo 'credit-float'; |
|
25 | +} |
|
26 | +?>"> |
|
24 | 27 | <?php |
25 | 28 | printf( |
26 | 29 | /* Translators: 1: current year, 2: blog name */ |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | |
10 | 10 | <?php lsx_content_wrap_before(); ?> |
11 | 11 | |
12 | -<div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>"> |
|
12 | +<div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>"> |
|
13 | 13 | |
14 | 14 | <?php lsx_content_before(); ?> |
15 | 15 | |
@@ -17,13 +17,13 @@ discard block |
||
17 | 17 | |
18 | 18 | <?php lsx_content_top(); ?> |
19 | 19 | |
20 | - <?php if ( have_posts() ) : ?> |
|
20 | + <?php if (have_posts()) : ?> |
|
21 | 21 | |
22 | 22 | <div class="post-wrapper"> |
23 | 23 | |
24 | - <?php while ( have_posts() ) : the_post(); ?> |
|
24 | + <?php while (have_posts()) : the_post(); ?> |
|
25 | 25 | |
26 | - <?php get_template_part( 'partials/content', get_post_format() ); ?> |
|
26 | + <?php get_template_part('partials/content', get_post_format()); ?> |
|
27 | 27 | |
28 | 28 | <?php endwhile; ?> |
29 | 29 | |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | |
34 | 34 | <?php else : ?> |
35 | 35 | |
36 | - <?php get_template_part( 'partials/content', 'none' ); ?> |
|
36 | + <?php get_template_part('partials/content', 'none'); ?> |
|
37 | 37 | |
38 | 38 | <?php endif; ?> |
39 | 39 | |
@@ -47,6 +47,6 @@ discard block |
||
47 | 47 | |
48 | 48 | <?php lsx_content_wrap_after(); ?> |
49 | 49 | |
50 | -<?php get_sidebar( 'sidebar' ); ?> |
|
50 | +<?php get_sidebar('sidebar'); ?> |
|
51 | 51 | |
52 | 52 | <?php get_footer(); |
@@ -31,9 +31,12 @@ |
||
31 | 31 | |
32 | 32 | <?php lsx_paging_nav(); ?> |
33 | 33 | |
34 | - <?php else : ?> |
|
34 | + <?php else { |
|
35 | + : ?> |
|
35 | 36 | |
36 | - <?php get_template_part( 'partials/content', 'none' ); ?> |
|
37 | + <?php get_template_part( 'partials/content', 'none' ); |
|
38 | +} |
|
39 | +?> |
|
37 | 40 | |
38 | 41 | <?php endif; ?> |
39 | 42 |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | * @version 2.4.0 |
17 | 17 | */ |
18 | 18 | |
19 | -if ( ! defined( 'ABSPATH' ) ) { |
|
19 | +if ( ! defined('ABSPATH')) { |
|
20 | 20 | exit; |
21 | 21 | } |
22 | 22 | |
@@ -26,21 +26,21 @@ discard block |
||
26 | 26 | * Each tab is an array containing title, callback and priority. |
27 | 27 | * @see woocommerce_default_product_tabs() |
28 | 28 | */ |
29 | -$tabs = apply_filters( 'woocommerce_product_tabs', array() ); |
|
29 | +$tabs = apply_filters('woocommerce_product_tabs', array()); |
|
30 | 30 | |
31 | -if ( ! empty( $tabs ) ) : ?> |
|
31 | +if ( ! empty($tabs)) : ?> |
|
32 | 32 | |
33 | 33 | <div class="woocommerce-tabs wc-tabs-wrapper"> |
34 | 34 | <ul class="nav nav-tabs wc-tabs" role="tablist"> |
35 | - <?php foreach ( $tabs as $key => $tab ) : ?> |
|
36 | - <li class="<?php echo esc_attr( $key ); ?>_tab" id="tab-title-<?php echo esc_attr( $key ); ?>" role="tab" aria-controls="tab-<?php echo esc_attr( $key ); ?>"> |
|
37 | - <a href="#tab-<?php echo esc_attr( $key ); ?>"><?php echo apply_filters( 'woocommerce_product_' . $key . '_tab_title', esc_html( $tab['title'] ), $key ); ?></a> |
|
35 | + <?php foreach ($tabs as $key => $tab) : ?> |
|
36 | + <li class="<?php echo esc_attr($key); ?>_tab" id="tab-title-<?php echo esc_attr($key); ?>" role="tab" aria-controls="tab-<?php echo esc_attr($key); ?>"> |
|
37 | + <a href="#tab-<?php echo esc_attr($key); ?>"><?php echo apply_filters('woocommerce_product_' . $key . '_tab_title', esc_html($tab['title']), $key); ?></a> |
|
38 | 38 | </li> |
39 | 39 | <?php endforeach; ?> |
40 | 40 | </ul> |
41 | - <?php foreach ( $tabs as $key => $tab ) : ?> |
|
42 | - <div class="woocommerce-Tabs-panel woocommerce-Tabs-panel--<?php echo esc_attr( $key ); ?> panel entry-content wc-tab" id="tab-<?php echo esc_attr( $key ); ?>" role="tabpanel" aria-labelledby="tab-title-<?php echo esc_attr( $key ); ?>"> |
|
43 | - <?php call_user_func( $tab['callback'], $key, $tab ); ?> |
|
41 | + <?php foreach ($tabs as $key => $tab) : ?> |
|
42 | + <div class="woocommerce-Tabs-panel woocommerce-Tabs-panel--<?php echo esc_attr($key); ?> panel entry-content wc-tab" id="tab-<?php echo esc_attr($key); ?>" role="tabpanel" aria-labelledby="tab-title-<?php echo esc_attr($key); ?>"> |
|
43 | + <?php call_user_func($tab['callback'], $key, $tab); ?> |
|
44 | 44 | </div> |
45 | 45 | <?php endforeach; ?> |
46 | 46 | </div> |
@@ -16,31 +16,31 @@ |
||
16 | 16 | * @version 2.2.2 |
17 | 17 | */ |
18 | 18 | |
19 | -if ( ! defined( 'ABSPATH' ) ) { |
|
19 | +if ( ! defined('ABSPATH')) { |
|
20 | 20 | exit; // Exit if accessed directly |
21 | 21 | } |
22 | 22 | |
23 | 23 | global $wp_query; |
24 | 24 | |
25 | -if ( $wp_query->max_num_pages <= 1 ) { |
|
25 | +if ($wp_query->max_num_pages <= 1) { |
|
26 | 26 | return; |
27 | 27 | } |
28 | 28 | ?> |
29 | 29 | <div class="lsx-pagination-wrapper"> |
30 | 30 | <nav class="lsx-pagination"> |
31 | 31 | <?php |
32 | - echo paginate_links( apply_filters( 'woocommerce_pagination_args', array( |
|
33 | - 'base' => esc_url_raw( str_replace( 999999999, '%#%', remove_query_arg( 'add-to-cart', get_pagenum_link( 999999999, false ) ) ) ), |
|
32 | + echo paginate_links(apply_filters('woocommerce_pagination_args', array( |
|
33 | + 'base' => esc_url_raw(str_replace(999999999, '%#%', remove_query_arg('add-to-cart', get_pagenum_link(999999999, false)))), |
|
34 | 34 | 'format' => '', |
35 | 35 | 'add_args' => false, |
36 | - 'current' => max( 1, get_query_var( 'paged' ) ), |
|
36 | + 'current' => max(1, get_query_var('paged')), |
|
37 | 37 | 'total' => $wp_query->max_num_pages, |
38 | - 'prev_text' => '<span class="meta-nav">←</span> ' . esc_html__( 'Previous', 'lsx' ), |
|
39 | - 'next_text' => esc_html__( 'Next', 'lsx' ) . ' <span class="meta-nav">→</span>', |
|
38 | + 'prev_text' => '<span class="meta-nav">←</span> ' . esc_html__('Previous', 'lsx'), |
|
39 | + 'next_text' => esc_html__('Next', 'lsx') . ' <span class="meta-nav">→</span>', |
|
40 | 40 | // 'type' => 'list', |
41 | 41 | 'end_size' => 3, |
42 | 42 | 'mid_size' => 3, |
43 | - ) ) ); |
|
43 | + ))); |
|
44 | 44 | ?> |
45 | 45 | </nav> |
46 | 46 | </div> |
@@ -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 $_product->get_image( 'lsx-thumbnail-square' ); ?> |
|
12 | + <?php echo $_product->get_image('lsx-thumbnail-square'); ?> |
|
13 | 13 | </figure> |
14 | 14 | </a> |
15 | 15 | |
16 | 16 | <div class="lsx-woocommerce-review-box"> |
17 | 17 | <div class="lsx-woocommerce-rating"> |
18 | - <?php echo wc_get_rating_html( $rating ); ?> |
|
18 | + <?php echo wc_get_rating_html($rating); ?> |
|
19 | 19 | </div> |
20 | 20 | |
21 | 21 | <h5 class="lsx-woocommerce-title"> |
22 | - <a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>"><?php echo $_product->get_name(); ?></a> |
|
22 | + <a href="<?php echo esc_url(get_comment_link($comment->comment_ID)); ?>"><?php echo $_product->get_name(); ?></a> |
|
23 | 23 | </h5> |
24 | 24 | |
25 | 25 | <p class="lsx-woocommerce-reviewer"> |
26 | 26 | <?php |
27 | 27 | /* translators: %s: review author */ |
28 | - printf( esc_html__( 'by %s', 'woocommerce' ), get_comment_author() ); |
|
28 | + printf(esc_html__('by %s', 'woocommerce'), 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> |