@@ -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,18 +17,18 @@ 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 | <?php |
23 | - while ( have_posts() ) : |
|
23 | + while (have_posts()) : |
|
24 | 24 | the_post(); |
25 | 25 | ?> |
26 | 26 | |
27 | 27 | <?php |
28 | - if ( is_singular( 'post' ) ) { |
|
29 | - get_template_part( 'partials/content', 'post' ); |
|
28 | + if (is_singular('post')) { |
|
29 | + get_template_part('partials/content', 'post'); |
|
30 | 30 | } else { |
31 | - get_template_part( 'partials/content', 'custom' ); |
|
31 | + get_template_part('partials/content', 'custom'); |
|
32 | 32 | } |
33 | 33 | ?> |
34 | 34 | |
@@ -43,13 +43,13 @@ discard block |
||
43 | 43 | <?php lsx_content_after(); ?> |
44 | 44 | |
45 | 45 | <?php |
46 | - if ( is_singular( 'post' ) ) { |
|
46 | + if (is_singular('post')) { |
|
47 | 47 | lsx_post_nav(); |
48 | 48 | } |
49 | 49 | ?> |
50 | 50 | |
51 | 51 | <?php |
52 | - if ( comments_open() ) { |
|
52 | + if (comments_open()) { |
|
53 | 53 | comments_template(); |
54 | 54 | } |
55 | 55 | ?> |
@@ -22,74 +22,74 @@ discard block |
||
22 | 22 | <ul class="lsx-wc-checkout-steps-items"> |
23 | 23 | <li class="lsx-wc-checkout-steps-item lsx-wc-checkout-steps-item-done"> |
24 | 24 | <i class="fa fa-check-circle" aria-hidden="true"></i> |
25 | - <span><span><?php esc_html_e( 'Choose your product', 'lsx' ); ?></span></span> |
|
25 | + <span><span><?php esc_html_e('Choose your product', 'lsx'); ?></span></span> |
|
26 | 26 | <i class="fa fa-angle-right" aria-hidden="true"></i> |
27 | 27 | </li> |
28 | 28 | |
29 | 29 | <li class="lsx-wc-checkout-steps-item lsx-wc-checkout-steps-item-done lsx-wc-checkout-steps-item-cart"> |
30 | 30 | <i class="fa fa-check-circle" aria-hidden="true"></i> |
31 | - <span><span><?php esc_html_e( 'My Cart', 'lsx' ); ?></span></span> |
|
31 | + <span><span><?php esc_html_e('My Cart', 'lsx'); ?></span></span> |
|
32 | 32 | </li> |
33 | 33 | |
34 | 34 | <li class="lsx-wc-checkout-steps-item lsx-wc-checkout-steps-item-done lsx-wc-checkout-steps-item-payment"> |
35 | 35 | <i class="fa fa-check-circle" aria-hidden="true"></i> |
36 | - <span><span><?php esc_html_e( 'Payment details', 'lsx' ); ?></span></span> |
|
36 | + <span><span><?php esc_html_e('Payment details', 'lsx'); ?></span></span> |
|
37 | 37 | <i class="fa fa-angle-right" aria-hidden="true"></i> |
38 | 38 | </li> |
39 | 39 | |
40 | 40 | <li class="lsx-wc-checkout-steps-item lsx-wc-checkout-steps-item-current lsx-wc-checkout-steps-item-thankyou"> |
41 | - <i class="lsx-wc-checkout-steps-counter" aria-hidden="true"><?php esc_html_e( '4', 'lsx' ); ?></i> |
|
42 | - <span><span><?php esc_html_e( 'Thank you!', 'lsx' ); ?></span></span> |
|
41 | + <i class="lsx-wc-checkout-steps-counter" aria-hidden="true"><?php esc_html_e('4', 'lsx'); ?></i> |
|
42 | + <span><span><?php esc_html_e('Thank you!', 'lsx'); ?></span></span> |
|
43 | 43 | </li> |
44 | 44 | </ul> |
45 | 45 | </div> |
46 | 46 | |
47 | 47 | <?php lsx_content_top(); ?> |
48 | 48 | |
49 | - <?php if ( have_posts() ) : ?> |
|
49 | + <?php if (have_posts()) : ?> |
|
50 | 50 | |
51 | 51 | <?php |
52 | - while ( have_posts() ) : |
|
52 | + while (have_posts()) : |
|
53 | 53 | the_post(); |
54 | 54 | ?> |
55 | 55 | |
56 | 56 | <?php |
57 | 57 | WC()->payment_gateways()->payment_gateways; |
58 | - $order_key = isset( $_GET['key'] ) ? wc_clean( $_GET['key'] ) : ''; |
|
59 | - $order_id = absint( $wp->query_vars['order-received'] ); |
|
60 | - $order = wc_get_order( $order_id ); |
|
58 | + $order_key = isset($_GET['key']) ? wc_clean($_GET['key']) : ''; |
|
59 | + $order_id = absint($wp->query_vars['order-received']); |
|
60 | + $order = wc_get_order($order_id); |
|
61 | 61 | ?> |
62 | 62 | |
63 | - <?php if ( $order && $order->get_id() === $order_id && $order->get_order_key() === $order_key ) : ?> |
|
63 | + <?php if ($order && $order->get_id() === $order_id && $order->get_order_key() === $order_key) : ?> |
|
64 | 64 | |
65 | 65 | <?php // @codingStandardsIgnoreStart ?> |
66 | 66 | |
67 | - <div class="alert alert-success"><?php echo apply_filters( 'woocommerce_thankyou_order_received_text', esc_html__( 'Thank you. Your order has been received.', 'lsx' ), $order ); ?></div> |
|
67 | + <div class="alert alert-success"><?php echo apply_filters('woocommerce_thankyou_order_received_text', esc_html__('Thank you. Your order has been received.', 'lsx'), $order); ?></div> |
|
68 | 68 | |
69 | 69 | <div class="row"> |
70 | 70 | <div class="col-xs-12 col-sm-6"> |
71 | - <h2><?php esc_html_e( 'Order Details', 'lsx' ); ?></h2> |
|
71 | + <h2><?php esc_html_e('Order Details', 'lsx'); ?></h2> |
|
72 | 72 | |
73 | 73 | <table class="table"> |
74 | 74 | <tbody> |
75 | 75 | <tr> |
76 | - <th><?php esc_html_e( 'Order:', 'lsx' ); ?></th> |
|
76 | + <th><?php esc_html_e('Order:', 'lsx'); ?></th> |
|
77 | 77 | <td><?php echo $order->get_order_number(); ?></td> |
78 | 78 | </tr> |
79 | 79 | |
80 | 80 | <tr> |
81 | - <th><?php esc_html_e( 'Date:', 'lsx' ); ?></th> |
|
82 | - <td><?php echo date_i18n( get_option( 'date_format' ), strtotime( $order->order_date ) ); ?></td> |
|
81 | + <th><?php esc_html_e('Date:', 'lsx'); ?></th> |
|
82 | + <td><?php echo date_i18n(get_option('date_format'), strtotime($order->order_date)); ?></td> |
|
83 | 83 | </tr> |
84 | 84 | |
85 | 85 | <tr> |
86 | - <th><?php esc_html_e( 'Total:', 'lsx' ); ?></th> |
|
86 | + <th><?php esc_html_e('Total:', 'lsx'); ?></th> |
|
87 | 87 | <td><?php echo $order->get_formatted_order_total(); ?></td> |
88 | 88 | </tr> |
89 | 89 | |
90 | - <?php if ( $order->payment_method_title ) : ?> |
|
90 | + <?php if ($order->payment_method_title) : ?> |
|
91 | 91 | <tr> |
92 | - <th><?php esc_html_e( 'Payment method:', 'lsx' ); ?></th> |
|
92 | + <th><?php esc_html_e('Payment method:', 'lsx'); ?></th> |
|
93 | 93 | <td><?php echo $order->payment_method_title; ?></td> |
94 | 94 | </tr> |
95 | 95 | <?php endif; ?> |
@@ -98,48 +98,48 @@ discard block |
||
98 | 98 | |
99 | 99 | <?php // do_action( 'woocommerce_order_details_after_order_table', $order ); ?> |
100 | 100 | |
101 | - <h2><?php esc_html_e( 'Customer details', 'lsx' ); ?></h2> |
|
101 | + <h2><?php esc_html_e('Customer details', 'lsx'); ?></h2> |
|
102 | 102 | |
103 | 103 | <dl class="customer_details"> |
104 | 104 | <?php |
105 | - if ( $order->billing_email ) echo '<dt>' . esc_html__( 'Email:', 'lsx' ) . '</dt><dd>' . $order->billing_email . '</dd>'; |
|
106 | - if ( $order->billing_phone ) echo '<dt>' . esc_html__( 'Telephone:', 'lsx' ) . '</dt><dd>' . $order->billing_phone . '</dd>'; |
|
105 | + if ($order->billing_email) echo '<dt>' . esc_html__('Email:', 'lsx') . '</dt><dd>' . $order->billing_email . '</dd>'; |
|
106 | + if ($order->billing_phone) echo '<dt>' . esc_html__('Telephone:', 'lsx') . '</dt><dd>' . $order->billing_phone . '</dd>'; |
|
107 | 107 | |
108 | 108 | // Additional customer details hook |
109 | - do_action( 'woocommerce_order_details_after_customer_details', $order ); |
|
109 | + do_action('woocommerce_order_details_after_customer_details', $order); |
|
110 | 110 | ?> |
111 | 111 | </dl> |
112 | 112 | |
113 | - <?php if ( ! wc_ship_to_billing_address_only() && $order->needs_shipping_address() && get_option( 'woocommerce_calc_shipping' ) !== 'no' ) : ?> |
|
113 | + <?php if ( ! wc_ship_to_billing_address_only() && $order->needs_shipping_address() && get_option('woocommerce_calc_shipping') !== 'no') : ?> |
|
114 | 114 | |
115 | 115 | <div class="row"> |
116 | 116 | <div class="col-xs-12 col-sm-6"> |
117 | 117 | |
118 | 118 | <?php endif; ?> |
119 | 119 | |
120 | - <h3><?php esc_html_e( 'Billing Address', 'lsx' ); ?></h3> |
|
120 | + <h3><?php esc_html_e('Billing Address', 'lsx'); ?></h3> |
|
121 | 121 | |
122 | 122 | <address> |
123 | 123 | <?php |
124 | - if ( ! $order->get_formatted_billing_address() ) { |
|
125 | - esc_html_e( 'N/A', 'lsx' ); |
|
124 | + if ( ! $order->get_formatted_billing_address()) { |
|
125 | + esc_html_e('N/A', 'lsx'); |
|
126 | 126 | } else { |
127 | 127 | echo $order->get_formatted_billing_address(); |
128 | 128 | } |
129 | 129 | ?> |
130 | 130 | </address> |
131 | 131 | |
132 | - <?php if ( ! wc_ship_to_billing_address_only() && $order->needs_shipping_address() && get_option( 'woocommerce_calc_shipping' ) !== 'no' ) : ?> |
|
132 | + <?php if ( ! wc_ship_to_billing_address_only() && $order->needs_shipping_address() && get_option('woocommerce_calc_shipping') !== 'no') : ?> |
|
133 | 133 | |
134 | 134 | </div> |
135 | 135 | |
136 | 136 | <div class="col-xs-12 col-sm-6"> |
137 | - <h3><?php esc_html_e( 'Shipping Address', 'lsx' ); ?></h3> |
|
137 | + <h3><?php esc_html_e('Shipping Address', 'lsx'); ?></h3> |
|
138 | 138 | |
139 | 139 | <address> |
140 | 140 | <?php |
141 | - if ( ! $order->get_formatted_shipping_address() ) { |
|
142 | - esc_html_e( 'N/A', 'lsx' ); |
|
141 | + if ( ! $order->get_formatted_shipping_address()) { |
|
142 | + esc_html_e('N/A', 'lsx'); |
|
143 | 143 | } else { |
144 | 144 | echo $order->get_formatted_shipping_address(); |
145 | 145 | } |
@@ -152,68 +152,68 @@ discard block |
||
152 | 152 | </div> |
153 | 153 | |
154 | 154 | <div class="col-xs-12 col-sm-6"> |
155 | - <h2><?php esc_html_e( 'Products details', 'lsx' ); ?></h2> |
|
155 | + <h2><?php esc_html_e('Products details', 'lsx'); ?></h2> |
|
156 | 156 | |
157 | 157 | <table class="table"> |
158 | 158 | <thead> |
159 | 159 | <tr> |
160 | - <th><?php esc_html_e( 'Product', 'lsx' ); ?></th> |
|
161 | - <th><?php esc_html_e( 'Total', 'lsx' ); ?></th> |
|
160 | + <th><?php esc_html_e('Product', 'lsx'); ?></th> |
|
161 | + <th><?php esc_html_e('Total', 'lsx'); ?></th> |
|
162 | 162 | </tr> |
163 | 163 | </thead> |
164 | 164 | |
165 | 165 | <tbody> |
166 | 166 | <?php |
167 | - if ( sizeof( $order->get_items() ) > 0 ) : |
|
168 | - foreach( $order->get_items() as $item ) : |
|
169 | - $_product = apply_filters( 'woocommerce_order_item_product', $order->get_product_from_item( $item ), $item ); |
|
170 | - $item_meta = new WC_Order_Item_Meta( $item['item_meta'], $_product ); |
|
167 | + if (sizeof($order->get_items()) > 0) : |
|
168 | + foreach ($order->get_items() as $item) : |
|
169 | + $_product = apply_filters('woocommerce_order_item_product', $order->get_product_from_item($item), $item); |
|
170 | + $item_meta = new WC_Order_Item_Meta($item['item_meta'], $_product); |
|
171 | 171 | ?> |
172 | 172 | |
173 | 173 | <tr> |
174 | 174 | <td> |
175 | 175 | <?php |
176 | - if ( $_product && ! $_product->is_visible() ) { |
|
177 | - echo apply_filters( 'woocommerce_order_item_name', $item['name'], $item ); |
|
176 | + if ($_product && ! $_product->is_visible()) { |
|
177 | + echo apply_filters('woocommerce_order_item_name', $item['name'], $item); |
|
178 | 178 | } else { |
179 | - echo apply_filters( 'woocommerce_order_item_name', sprintf( '<a href="%s">%s</a>', get_permalink( $item['product_id'] ), $item['name'] ), $item ); |
|
179 | + echo apply_filters('woocommerce_order_item_name', sprintf('<a href="%s">%s</a>', get_permalink($item['product_id']), $item['name']), $item); |
|
180 | 180 | } |
181 | 181 | |
182 | - echo apply_filters( 'woocommerce_order_item_quantity_html', ' <strong class="product-quantity">' . sprintf( '× %s', $item['qty'] ) . '</strong>', $item ); |
|
182 | + echo apply_filters('woocommerce_order_item_quantity_html', ' <strong class="product-quantity">' . sprintf('× %s', $item['qty']) . '</strong>', $item); |
|
183 | 183 | |
184 | 184 | ob_start(); |
185 | 185 | $item_meta->display(); |
186 | 186 | $_item_meta = ob_get_clean(); |
187 | 187 | |
188 | - if ( ! empty( $_item_meta ) ) { |
|
188 | + if ( ! empty($_item_meta)) { |
|
189 | 189 | echo $_item_meta; |
190 | 190 | } else { |
191 | 191 | echo '<br>'; |
192 | 192 | } |
193 | 193 | |
194 | - if ( $_product && $_product->exists() && $_product->is_downloadable() && $order->is_download_permitted() ) { |
|
195 | - $download_files = $order->get_item_downloads( $item ); |
|
194 | + if ($_product && $_product->exists() && $_product->is_downloadable() && $order->is_download_permitted()) { |
|
195 | + $download_files = $order->get_item_downloads($item); |
|
196 | 196 | $i = 0; |
197 | 197 | $links = array(); |
198 | 198 | |
199 | - if ( empty( $download_files ) ) { |
|
199 | + if (empty($download_files)) { |
|
200 | 200 | $download_files = $_product->get_files(); |
201 | 201 | } |
202 | 202 | |
203 | - foreach ( $download_files as $download_id => $file ) { |
|
203 | + foreach ($download_files as $download_id => $file) { |
|
204 | 204 | ++$i; |
205 | 205 | |
206 | - if ( $i > 1 ) { |
|
206 | + if ($i > 1) { |
|
207 | 207 | echo '<br>'; |
208 | 208 | } |
209 | 209 | |
210 | - if ( ! empty( $_item_meta ) ) { |
|
210 | + if ( ! empty($_item_meta)) { |
|
211 | 211 | echo '<span style="margin-top: -2.4rem; display: block;">'; |
212 | 212 | } else { |
213 | 213 | echo '<span>'; |
214 | 214 | } |
215 | 215 | |
216 | - echo '<a href="' . esc_url( $file['download_url'] ? $file['download_url'] : $file['file'] ) . '">' . sprintf( esc_html__( 'Download file%s', 'lsx' ), ( count( $download_files ) > 1 ? ' ' . $i . ': ' : ': ' ) ) . esc_html( $file['name'] ) . '</a>'; |
|
216 | + echo '<a href="' . esc_url($file['download_url'] ? $file['download_url'] : $file['file']) . '">' . sprintf(esc_html__('Download file%s', 'lsx'), (count($download_files) > 1 ? ' ' . $i . ': ' : ': ')) . esc_html($file['name']) . '</a>'; |
|
217 | 217 | echo '</span>'; |
218 | 218 | } |
219 | 219 | } |
@@ -221,15 +221,15 @@ discard block |
||
221 | 221 | </td> |
222 | 222 | |
223 | 223 | <td> |
224 | - <?php echo $order->get_formatted_line_subtotal( $item ); ?> |
|
224 | + <?php echo $order->get_formatted_line_subtotal($item); ?> |
|
225 | 225 | </td> |
226 | 226 | </tr> |
227 | 227 | |
228 | 228 | <?php |
229 | - if ( $order->has_status( array( 'completed', 'processing' ) ) && ( $purchase_note = get_post_meta( $_product->id, '_purchase_note', true ) ) ) { |
|
229 | + if ($order->has_status(array('completed', 'processing')) && ($purchase_note = get_post_meta($_product->id, '_purchase_note', true))) { |
|
230 | 230 | ?> |
231 | 231 | <tr class="product-purchase-note"> |
232 | - <td colspan="3"><?php echo wpautop( do_shortcode( wp_kses_post( $purchase_note ) ) ); ?></td> |
|
232 | + <td colspan="3"><?php echo wpautop(do_shortcode(wp_kses_post($purchase_note))); ?></td> |
|
233 | 233 | </tr> |
234 | 234 | <?php |
235 | 235 | } |
@@ -242,8 +242,8 @@ discard block |
||
242 | 242 | |
243 | 243 | <tfoot> |
244 | 244 | <?php |
245 | - if ( $totals = $order->get_order_item_totals() ) : |
|
246 | - foreach ( $totals as $total ) : |
|
245 | + if ($totals = $order->get_order_item_totals()) : |
|
246 | + foreach ($totals as $total) : |
|
247 | 247 | ?> |
248 | 248 | <tr> |
249 | 249 | <th scope="row"><?php echo $total['label']; ?></th> |
@@ -256,9 +256,9 @@ discard block |
||
256 | 256 | </tfoot> |
257 | 257 | </table> |
258 | 258 | |
259 | - <?php if ( 'bacs' === $order->get_payment_method() ) { ?> |
|
260 | - <h2><?php esc_html_e( 'Bank Details', 'lsx' ); ?></h2> |
|
261 | - <?php do_action( 'woocommerce_thankyou_' . $order->get_payment_method(), $order->get_id() ); ?> |
|
259 | + <?php if ('bacs' === $order->get_payment_method()) { ?> |
|
260 | + <h2><?php esc_html_e('Bank Details', 'lsx'); ?></h2> |
|
261 | + <?php do_action('woocommerce_thankyou_' . $order->get_payment_method(), $order->get_id()); ?> |
|
262 | 262 | <?php } ?> |
263 | 263 | </div> |
264 | 264 | </div> |
@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | |
268 | 268 | <?php else : ?> |
269 | 269 | |
270 | - <div class="alert alert-danger"><?php esc_html_e( 'Invalid order.', 'lsx' ); ?></div> |
|
270 | + <div class="alert alert-danger"><?php esc_html_e('Invalid order.', 'lsx'); ?></div> |
|
271 | 271 | |
272 | 272 | <?php endif; ?> |
273 | 273 |
@@ -20,14 +20,14 @@ 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 | 25 | <?php |
26 | - while ( have_posts() ) : |
|
26 | + while (have_posts()) : |
|
27 | 27 | the_post(); |
28 | 28 | ?> |
29 | 29 | |
30 | - <?php get_template_part( 'partials/content', 'page' ); ?> |
|
30 | + <?php get_template_part('partials/content', 'page'); ?> |
|
31 | 31 | |
32 | 32 | <?php endwhile; ?> |
33 | 33 | |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | <?php lsx_content_bottom(); ?> |
37 | 37 | |
38 | 38 | <?php |
39 | - if ( comments_open() ) { |
|
39 | + if (comments_open()) { |
|
40 | 40 | comments_template(); |
41 | 41 | } |
42 | 42 | ?> |
@@ -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,10 +20,10 @@ 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 | 25 | <?php |
26 | - while ( have_posts() ) : |
|
26 | + while (have_posts()) : |
|
27 | 27 | the_post(); |
28 | 28 | ?> |
29 | 29 | |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | |
58 | 58 | <?php lsx_content_wrap_after(); ?> |
59 | 59 | |
60 | -<?php get_sidebar( 'sitemap' ); ?> |
|
60 | +<?php get_sidebar('sitemap'); ?> |
|
61 | 61 | |
62 | 62 | <?php |
63 | 63 | get_footer(); |
@@ -20,10 +20,10 @@ discard block |
||
20 | 20 | |
21 | 21 | <?php lsx_content_top(); ?> |
22 | 22 | |
23 | - <?php if ( ( have_posts() && ! class_exists( 'LSX_Banners' ) || ( function_exists( 'has_blocks' ) && has_blocks() ) ) ) : ?> |
|
23 | + <?php if ((have_posts() && ! class_exists('LSX_Banners') || (function_exists('has_blocks') && has_blocks()))) : ?> |
|
24 | 24 | |
25 | 25 | <?php |
26 | - while ( have_posts() ) : |
|
26 | + while (have_posts()) : |
|
27 | 27 | the_post(); |
28 | 28 | ?> |
29 | 29 | |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | <?php |
38 | 38 | wp_link_pages( |
39 | 39 | array( |
40 | - 'before' => '<nav class="page-nav"><p>' . esc_html__( 'Pages:', 'lsx' ), |
|
40 | + 'before' => '<nav class="page-nav"><p>' . esc_html__('Pages:', 'lsx'), |
|
41 | 41 | 'after' => '</p></nav>', |
42 | 42 | ) |
43 | 43 | ); |
@@ -52,11 +52,11 @@ discard block |
||
52 | 52 | |
53 | 53 | <?php endif; ?> |
54 | 54 | |
55 | - <?php if ( is_active_sidebar( 'sidebar-home' ) ) : ?> |
|
55 | + <?php if (is_active_sidebar('sidebar-home')) : ?> |
|
56 | 56 | |
57 | 57 | <div id="home-widgets"> |
58 | 58 | |
59 | - <?php dynamic_sidebar( 'sidebar-home' ); ?> |
|
59 | + <?php dynamic_sidebar('sidebar-home'); ?> |
|
60 | 60 | |
61 | 61 | </div> |
62 | 62 |
@@ -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,10 +20,10 @@ 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 | 25 | <?php |
26 | - while ( have_posts() ) : |
|
26 | + while (have_posts()) : |
|
27 | 27 | the_post(); |
28 | 28 | ?> |
29 | 29 | |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | <?php lsx_entry_top(); ?> |
35 | 35 | |
36 | 36 | <div class="entry-content"> |
37 | - <h2><?php esc_html_e( 'The Last 30 Posts', 'lsx' ); ?></h2> |
|
37 | + <h2><?php esc_html_e('The Last 30 Posts', 'lsx'); ?></h2> |
|
38 | 38 | |
39 | 39 | <ul> |
40 | 40 | <?php |
@@ -45,16 +45,16 @@ discard block |
||
45 | 45 | ); |
46 | 46 | ?> |
47 | 47 | |
48 | - <?php if ( $loop->have_posts() ) : ?> |
|
48 | + <?php if ($loop->have_posts()) : ?> |
|
49 | 49 | |
50 | - <?php while ( $loop->have_posts() ) : ?> |
|
50 | + <?php while ($loop->have_posts()) : ?> |
|
51 | 51 | |
52 | 52 | <?php |
53 | 53 | $loop->the_post(); |
54 | 54 | $loop->is_home = false; |
55 | 55 | ?> |
56 | 56 | |
57 | - <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> |
|
57 | + <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> |
|
58 | 58 | |
59 | 59 | <?php endwhile; ?> |
60 | 60 | |
@@ -63,16 +63,16 @@ discard block |
||
63 | 63 | <?php wp_reset_postdata(); ?> |
64 | 64 | </ul> |
65 | 65 | |
66 | - <h2><?php esc_html_e( 'Categories', 'lsx' ); ?></h2> |
|
66 | + <h2><?php esc_html_e('Categories', 'lsx'); ?></h2> |
|
67 | 67 | |
68 | 68 | <ul> |
69 | - <?php wp_list_categories( 'title_li=&hierarchical=0&show_count=1' ); ?> |
|
69 | + <?php wp_list_categories('title_li=&hierarchical=0&show_count=1'); ?> |
|
70 | 70 | </ul> |
71 | 71 | |
72 | - <h2><?php esc_html_e( 'Monthly Archives', 'lsx' ); ?></h2> |
|
72 | + <h2><?php esc_html_e('Monthly Archives', 'lsx'); ?></h2> |
|
73 | 73 | |
74 | 74 | <ul> |
75 | - <?php wp_get_archives( 'type=monthly&show_post_count=1' ); ?> |
|
75 | + <?php wp_get_archives('type=monthly&show_post_count=1'); ?> |
|
76 | 76 | </ul> |
77 | 77 | </div><!-- .entry-content --> |
78 | 78 |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | <?php lsx_entry_before(); ?> |
11 | 11 | |
12 | 12 | <?php |
13 | - $no_thumb_post_types = array( |
|
13 | + $no_thumb_post_types = array( |
|
14 | 14 | 'audio' => 'audio', |
15 | 15 | 'gallery' => 'gallery', |
16 | 16 | 'image' => 'image', |
@@ -18,38 +18,38 @@ discard block |
||
18 | 18 | 'quote' => 'quote', |
19 | 19 | 'video' => 'video', |
20 | 20 | ); |
21 | - $no_thumb_post_formats = apply_filters( 'lsx_no_thumb_post_formats', $no_thumb_post_types ); |
|
21 | + $no_thumb_post_formats = apply_filters('lsx_no_thumb_post_formats', $no_thumb_post_types); |
|
22 | 22 | |
23 | - $has_thumb = has_post_thumbnail() && ! has_post_format( $no_thumb_post_formats ); |
|
23 | + $has_thumb = has_post_thumbnail() && ! has_post_format($no_thumb_post_formats); |
|
24 | 24 | |
25 | - if ( $has_thumb ) { |
|
25 | + if ($has_thumb) { |
|
26 | 26 | $thumb_class = 'has-thumb'; |
27 | 27 | } else { |
28 | 28 | $thumb_class = 'no-thumb'; |
29 | 29 | } |
30 | 30 | |
31 | - $blog_layout = apply_filters( 'lsx_blog_layout', 'default' ); |
|
31 | + $blog_layout = apply_filters('lsx_blog_layout', 'default'); |
|
32 | 32 | |
33 | 33 | $image_class = ''; |
34 | 34 | |
35 | - $thumbnail_id = get_post_thumbnail_id( get_the_ID() ); |
|
36 | - $image_arr = wp_get_attachment_image_src( $thumbnail_id, 'lsx-thumbnail-single' ); |
|
35 | + $thumbnail_id = get_post_thumbnail_id(get_the_ID()); |
|
36 | + $image_arr = wp_get_attachment_image_src($thumbnail_id, 'lsx-thumbnail-single'); |
|
37 | 37 | |
38 | - if ( is_array( $image_arr ) ) { |
|
38 | + if (is_array($image_arr)) { |
|
39 | 39 | $image_src = $image_arr[0]; |
40 | 40 | } |
41 | 41 | ?> |
42 | 42 | |
43 | -<article id="post-<?php the_ID(); ?>" <?php post_class( array( 'lsx-slot', $thumb_class ) ); ?>> |
|
43 | +<article id="post-<?php the_ID(); ?>" <?php post_class(array('lsx-slot', $thumb_class)); ?>> |
|
44 | 44 | <?php lsx_entry_top(); ?> |
45 | 45 | |
46 | 46 | <div class="entry-layout"> |
47 | 47 | <div class="entry-layout-content entry-layout-content-<?php echo has_post_thumbnail() ? '67' : '100'; ?>"> |
48 | 48 | <header class="entry-header"> |
49 | - <?php if ( $has_thumb ) : ?> |
|
50 | - <div class="entry-image <?php echo esc_attr( $image_class ); ?>"> |
|
49 | + <?php if ($has_thumb) : ?> |
|
50 | + <div class="entry-image <?php echo esc_attr($image_class); ?>"> |
|
51 | 51 | <a class="thumbnail" href="<?php the_permalink(); ?>"> |
52 | - <?php lsx_thumbnail( 'lsx-thumbnail-single' ); ?> |
|
52 | + <?php lsx_thumbnail('lsx-thumbnail-single'); ?> |
|
53 | 53 | </a> |
54 | 54 | </div> |
55 | 55 | <?php endif; ?> |
@@ -57,37 +57,37 @@ discard block |
||
57 | 57 | <?php |
58 | 58 | $format = get_post_format(); |
59 | 59 | |
60 | - if ( false === $format ) { |
|
60 | + if (false === $format) { |
|
61 | 61 | $format = 'standard'; |
62 | - $show_on_front = get_option( 'show_on_front', 'posts' ); |
|
62 | + $show_on_front = get_option('show_on_front', 'posts'); |
|
63 | 63 | |
64 | - if ( 'page' === $show_on_front ) { |
|
65 | - $archive_link = get_permalink( get_option( 'page_for_posts' ) ); |
|
64 | + if ('page' === $show_on_front) { |
|
65 | + $archive_link = get_permalink(get_option('page_for_posts')); |
|
66 | 66 | } else { |
67 | 67 | $archive_link = home_url(); |
68 | 68 | } |
69 | 69 | } else { |
70 | - $archive_link = get_post_format_link( $format ); |
|
70 | + $archive_link = get_post_format_link($format); |
|
71 | 71 | } |
72 | 72 | |
73 | - $format = lsx_translate_format_to_fontawesome( $format ); |
|
73 | + $format = lsx_translate_format_to_fontawesome($format); |
|
74 | 74 | ?> |
75 | 75 | |
76 | 76 | <h2 class="entry-title"> |
77 | - <?php if ( has_post_thumbnail() ) : ?> |
|
78 | - <a href="<?php echo esc_url( $archive_link ); ?>" class="format-link has-thumb fa fa-<?php echo esc_attr( $format ); ?>"></a> |
|
77 | + <?php if (has_post_thumbnail()) : ?> |
|
78 | + <a href="<?php echo esc_url($archive_link); ?>" class="format-link has-thumb fa fa-<?php echo esc_attr($format); ?>"></a> |
|
79 | 79 | <?php else : ?> |
80 | - <a href="<?php echo esc_url( $archive_link ); ?>" class="format-link fa fa-<?php echo esc_attr( $format ); ?>"></a> |
|
80 | + <a href="<?php echo esc_url($archive_link); ?>" class="format-link fa fa-<?php echo esc_attr($format); ?>"></a> |
|
81 | 81 | <?php endif; ?> |
82 | 82 | |
83 | - <?php if ( has_post_format( array( 'link' ) ) ) : ?> |
|
84 | - <a href="<?php echo esc_url( lsx_get_my_url() ); ?>" rel="bookmark"><?php the_title(); ?> <span class="fa fa-external-link"></span></a> |
|
83 | + <?php if (has_post_format(array('link'))) : ?> |
|
84 | + <a href="<?php echo esc_url(lsx_get_my_url()); ?>" rel="bookmark"><?php the_title(); ?> <span class="fa fa-external-link"></span></a> |
|
85 | 85 | <?php else : ?> |
86 | 86 | <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a> |
87 | 87 | <?php endif; ?> |
88 | 88 | |
89 | - <?php if ( is_sticky() ) : ?> |
|
90 | - <span class="label label-default label-sticky"><?php esc_html_e( 'Featured', 'lsx' ); ?></span> |
|
89 | + <?php if (is_sticky()) : ?> |
|
90 | + <span class="label label-default label-sticky"><?php esc_html_e('Featured', 'lsx'); ?></span> |
|
91 | 91 | <?php endif; ?> |
92 | 92 | </h2> |
93 | 93 | <div class="entry-meta"> |
@@ -98,27 +98,27 @@ discard block |
||
98 | 98 | |
99 | 99 | </header><!-- .entry-header --> |
100 | 100 | |
101 | - <?php if ( has_post_format( array( 'quote' ) ) || apply_filters( 'lsx_blog_display_text_on_list', true ) ) : ?> |
|
101 | + <?php if (has_post_format(array('quote')) || apply_filters('lsx_blog_display_text_on_list', true)) : ?> |
|
102 | 102 | |
103 | - <?php if ( lsx_post_format_force_content_on_list() && ! apply_filters( 'lsx_blog_force_content_on_list', false ) ) : ?> |
|
103 | + <?php if (lsx_post_format_force_content_on_list() && ! apply_filters('lsx_blog_force_content_on_list', false)) : ?> |
|
104 | 104 | |
105 | 105 | <div class="entry-summary"> |
106 | 106 | <?php |
107 | - if ( ! has_excerpt() ) { |
|
107 | + if ( ! has_excerpt()) { |
|
108 | 108 | |
109 | - $excerpt_more = '<p><a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'Read More', 'lsx' ) . '</a></p>'; |
|
110 | - $content = wp_trim_words( get_the_content(), 50 ); |
|
109 | + $excerpt_more = '<p><a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('Read More', 'lsx') . '</a></p>'; |
|
110 | + $content = wp_trim_words(get_the_content(), 50); |
|
111 | 111 | $content = '<p>' . $content . '</p>' . $excerpt_more; |
112 | - echo wp_kses_post( $content ); |
|
112 | + echo wp_kses_post($content); |
|
113 | 113 | } else { |
114 | 114 | the_excerpt(); |
115 | 115 | } |
116 | 116 | ?> |
117 | 117 | </div><!-- .entry-summary --> |
118 | 118 | |
119 | - <?php elseif ( has_post_format( array( 'link' ) ) ) : ?> |
|
119 | + <?php elseif (has_post_format(array('link'))) : ?> |
|
120 | 120 | |
121 | - <?php elseif ( apply_filters( 'lsx_blog_force_content_on_list', false ) ) : ?> |
|
121 | + <?php elseif (apply_filters('lsx_blog_force_content_on_list', false)) : ?> |
|
122 | 122 | |
123 | 123 | <div class="entry-content"> |
124 | 124 | <?php the_content(); ?> |
@@ -130,12 +130,12 @@ discard block |
||
130 | 130 | <?php |
131 | 131 | the_content(); |
132 | 132 | |
133 | - wp_link_pages( array( |
|
133 | + wp_link_pages(array( |
|
134 | 134 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
135 | 135 | 'after' => '</div></div>', |
136 | 136 | 'link_before' => '<span>', |
137 | 137 | 'link_after' => '</span>', |
138 | - ) ); |
|
138 | + )); |
|
139 | 139 | ?> |
140 | 140 | </div><!-- .entry-content --> |
141 | 141 | |
@@ -151,23 +151,23 @@ discard block |
||
151 | 151 | |
152 | 152 | <?php lsx_content_post_tags(); ?> |
153 | 153 | |
154 | - <?php if ( comments_open() && ! empty( $comments_number ) ) : ?> |
|
154 | + <?php if (comments_open() && ! empty($comments_number)) : ?> |
|
155 | 155 | <div class="post-comments"> |
156 | 156 | <a href="<?php the_permalink(); ?>#comments"> |
157 | 157 | <?php |
158 | - if ( '1' === $comments_number ) { |
|
159 | - echo esc_html_x( 'One Comment', 'content.php', 'lsx' ); |
|
158 | + if ('1' === $comments_number) { |
|
159 | + echo esc_html_x('One Comment', 'content.php', 'lsx'); |
|
160 | 160 | } else { |
161 | 161 | printf( |
162 | 162 | /* Translators: %s: number of comments */ |
163 | - esc_html( _nx( |
|
163 | + esc_html(_nx( |
|
164 | 164 | '%s Comment', |
165 | 165 | '%s Comments', |
166 | 166 | $comments_number, |
167 | 167 | 'content.php', |
168 | 168 | 'lsx' |
169 | - ) ), |
|
170 | - esc_html( number_format_i18n( $comments_number ) ) |
|
169 | + )), |
|
170 | + esc_html(number_format_i18n($comments_number)) |
|
171 | 171 | ); |
172 | 172 | } |
173 | 173 | ?> |
@@ -177,11 +177,11 @@ discard block |
||
177 | 177 | </div> |
178 | 178 | </div> |
179 | 179 | |
180 | - <?php if ( has_post_thumbnail() ) : ?> |
|
180 | + <?php if (has_post_thumbnail()) : ?> |
|
181 | 181 | |
182 | 182 | <div class="entry-image hidden-xs"> |
183 | - <a class="thumbnail" href="<?php the_permalink(); ?>" style="background-image:url(<?php echo esc_url( $image_src ); ?>);"> |
|
184 | - <?php lsx_thumbnail( 'lsx-thumbnail-single' ); ?> |
|
183 | + <a class="thumbnail" href="<?php the_permalink(); ?>" style="background-image:url(<?php echo esc_url($image_src); ?>);"> |
|
184 | + <?php lsx_thumbnail('lsx-thumbnail-single'); ?> |
|
185 | 185 | </a> |
186 | 186 | </div> |
187 | 187 |
@@ -17,31 +17,31 @@ |
||
17 | 17 | <?php |
18 | 18 | the_content(); |
19 | 19 | |
20 | - wp_link_pages( array( |
|
20 | + wp_link_pages(array( |
|
21 | 21 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
22 | 22 | 'after' => '</div></div>', |
23 | 23 | 'link_before' => '<span>', |
24 | 24 | 'link_after' => '</span>', |
25 | - ) ); |
|
25 | + )); |
|
26 | 26 | ?> |
27 | 27 | </div><!-- .entry-content --> |
28 | 28 | |
29 | 29 | <footer class="footer-meta clearfix"> |
30 | - <?php if ( has_tag() || class_exists( 'LSX_Sharing' ) || ( function_exists( 'sharing_display' ) || class_exists( 'Jetpack_Likes' ) ) ) : ?> |
|
30 | + <?php if (has_tag() || class_exists('LSX_Sharing') || (function_exists('sharing_display') || class_exists('Jetpack_Likes'))) : ?> |
|
31 | 31 | <div class="post-tags-wrapper"> |
32 | 32 | <?php lsx_content_post_tags(); ?> |
33 | 33 | |
34 | 34 | <?php |
35 | - if ( class_exists( 'LSX_Sharing' ) ) { |
|
35 | + if (class_exists('LSX_Sharing')) { |
|
36 | 36 | lsx_content_sharing(); |
37 | 37 | } else { |
38 | - if ( function_exists( 'sharing_display' ) ) { |
|
39 | - sharing_display( '', true ); |
|
38 | + if (function_exists('sharing_display')) { |
|
39 | + sharing_display('', true); |
|
40 | 40 | } |
41 | 41 | |
42 | - if ( class_exists( 'Jetpack_Likes' ) ) { |
|
42 | + if (class_exists('Jetpack_Likes')) { |
|
43 | 43 | $custom_likes = new Jetpack_Likes(); |
44 | - echo wp_kses_post( $custom_likes->post_likes( '' ) ); |
|
44 | + echo wp_kses_post($custom_likes->post_likes('')); |
|
45 | 45 | } |
46 | 46 | } |
47 | 47 | ?> |
@@ -5,42 +5,42 @@ |
||
5 | 5 | * @package lsx |
6 | 6 | */ |
7 | 7 | |
8 | -if ( ! defined( 'ABSPATH' ) ) { |
|
8 | +if ( ! defined('ABSPATH')) { |
|
9 | 9 | exit; |
10 | 10 | } |
11 | 11 | global $comment, $stored_comment, $_product, $rating; |
12 | 12 | $the_comment = $comment; |
13 | -if ( null !== $stored_comment ) { |
|
13 | +if (null !== $stored_comment) { |
|
14 | 14 | $the_comment = $stored_comment; |
15 | 15 | } |
16 | 16 | ?> |
17 | 17 | <div class="lsx-woocommerce-review-slot"> |
18 | 18 | <div class="lsx-woocommerce-review-flex"> |
19 | - <a href="<?php echo esc_url( get_comment_link( $the_comment->comment_ID ) ); ?>"> |
|
19 | + <a href="<?php echo esc_url(get_comment_link($the_comment->comment_ID)); ?>"> |
|
20 | 20 | <figure class="lsx-woocommerce-avatar"> |
21 | - <?php echo wp_kses_post( $_product->get_image( 'lsx-thumbnail-square' ) ); ?> |
|
21 | + <?php echo wp_kses_post($_product->get_image('lsx-thumbnail-square')); ?> |
|
22 | 22 | </figure> |
23 | 23 | </a> |
24 | 24 | |
25 | 25 | <div class="lsx-woocommerce-review-box"> |
26 | 26 | <div class="lsx-woocommerce-rating"> |
27 | - <?php echo wp_kses_post( wc_get_rating_html( $rating ) ); ?> |
|
27 | + <?php echo wp_kses_post(wc_get_rating_html($rating)); ?> |
|
28 | 28 | </div> |
29 | 29 | |
30 | 30 | <h5 class="lsx-woocommerce-title"> |
31 | - <a href="<?php echo esc_url( get_comment_link( $the_comment->comment_ID ) ); ?>"><?php echo wp_kses_post( $_product->get_name() ); ?></a> |
|
31 | + <a href="<?php echo esc_url(get_comment_link($the_comment->comment_ID)); ?>"><?php echo wp_kses_post($_product->get_name()); ?></a> |
|
32 | 32 | </h5> |
33 | 33 | |
34 | 34 | <p class="lsx-woocommerce-reviewer"> |
35 | 35 | <?php |
36 | 36 | /* translators: %s: review author */ |
37 | - echo wp_kses_post( esc_html__( 'by ', 'lsx' ) . get_comment_author( $the_comment->comment_ID ) ); |
|
37 | + echo wp_kses_post(esc_html__('by ', 'lsx') . get_comment_author($the_comment->comment_ID)); |
|
38 | 38 | ?> |
39 | 39 | </p> |
40 | 40 | |
41 | 41 | <div class="lsx-woocommerce-content"> |
42 | - <p><?php echo wp_kses_post( $the_comment->comment_content ); ?></p> |
|
43 | - <p><a href="<?php echo esc_url( get_comment_link( $the_comment->comment_ID ) ); ?>" class="moretag"><?php esc_attr_e( 'View more', 'lsx' ); ?></a></p> |
|
42 | + <p><?php echo wp_kses_post($the_comment->comment_content); ?></p> |
|
43 | + <p><a href="<?php echo esc_url(get_comment_link($the_comment->comment_ID)); ?>" class="moretag"><?php esc_attr_e('View more', 'lsx'); ?></a></p> |
|
44 | 44 | </div> |
45 | 45 | </div> |
46 | 46 | </div> |