@@ -20,11 +20,11 @@ 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 | - <?php get_template_part( 'partials/content', 'page' ); ?> |
|
27 | + <?php get_template_part('partials/content', 'page'); ?> |
|
28 | 28 | |
29 | 29 | <?php endwhile; ?> |
30 | 30 | |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | <?php lsx_content_bottom(); ?> |
34 | 34 | |
35 | 35 | <?php |
36 | - if ( comments_open() ) { |
|
36 | + if (comments_open()) { |
|
37 | 37 | comments_template(); |
38 | 38 | } |
39 | 39 | ?> |
@@ -16,16 +16,16 @@ |
||
16 | 16 | <?php |
17 | 17 | the_content(); |
18 | 18 | |
19 | - wp_link_pages( array( |
|
19 | + wp_link_pages(array( |
|
20 | 20 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
21 | 21 | 'after' => '</div></div>', |
22 | 22 | 'link_before' => '<span>', |
23 | 23 | 'link_after' => '</span>', |
24 | - ) ); |
|
24 | + )); |
|
25 | 25 | ?> |
26 | 26 | </div><!-- .entry-content --> |
27 | 27 | |
28 | - <?php edit_post_link( esc_html__( 'Edit', 'lsx' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' ); ?> |
|
28 | + <?php edit_post_link(esc_html__('Edit', 'lsx'), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>'); ?> |
|
29 | 29 | |
30 | 30 | <?php lsx_entry_bottom(); ?> |
31 | 31 |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | * @subpackage extras |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
@@ -16,10 +16,10 @@ discard block |
||
16 | 16 | * @package lsx |
17 | 17 | * @subpackage extras |
18 | 18 | */ |
19 | -add_filter( 'widget_text', 'shortcode_unautop' ); |
|
20 | -add_filter( 'widget_text', 'do_shortcode' ); |
|
19 | +add_filter('widget_text', 'shortcode_unautop'); |
|
20 | +add_filter('widget_text', 'do_shortcode'); |
|
21 | 21 | |
22 | -if ( ! function_exists( 'lsx_kses_allowed_html' ) ) : |
|
22 | +if ( ! function_exists('lsx_kses_allowed_html')) : |
|
23 | 23 | |
24 | 24 | /** |
25 | 25 | * Enable extra attributes (srcset, sizes) in img tag. |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | * @package lsx |
28 | 28 | * @subpackage extras |
29 | 29 | */ |
30 | - function lsx_kses_allowed_html( $allowedtags, $context ) { |
|
30 | + function lsx_kses_allowed_html($allowedtags, $context) { |
|
31 | 31 | $allowedtags['img']['srcset'] = true; |
32 | 32 | $allowedtags['img']['sizes'] = true; |
33 | 33 | return $allowedtags; |
@@ -35,9 +35,9 @@ discard block |
||
35 | 35 | |
36 | 36 | endif; |
37 | 37 | |
38 | -add_filter( 'wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2 ); |
|
38 | +add_filter('wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2); |
|
39 | 39 | |
40 | -if ( ! function_exists( 'lsx_body_class' ) ) : |
|
40 | +if ( ! function_exists('lsx_body_class')) : |
|
41 | 41 | |
42 | 42 | /** |
43 | 43 | * Add and remove body_class() classes. |
@@ -45,44 +45,44 @@ discard block |
||
45 | 45 | * @package lsx |
46 | 46 | * @subpackage extras |
47 | 47 | */ |
48 | - function lsx_body_class( $classes ) { |
|
48 | + function lsx_body_class($classes) { |
|
49 | 49 | global $post; |
50 | 50 | |
51 | - $header_layout = get_theme_mod( 'lsx_header_layout', 'inline' ); |
|
51 | + $header_layout = get_theme_mod('lsx_header_layout', 'inline'); |
|
52 | 52 | $classes[] = 'header-' . $header_layout; |
53 | 53 | |
54 | - if ( isset( $post ) ) { |
|
54 | + if (isset($post)) { |
|
55 | 55 | $classes[] = $post->post_name; |
56 | 56 | } |
57 | 57 | |
58 | - if ( ! class_exists( 'LSX_Banners' ) || ! empty( apply_filters( 'lsx_banner_plugin_disable', false ) ) ) { |
|
59 | - $post_types = array( 'page', 'post' ); |
|
60 | - $post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types ); |
|
58 | + if ( ! class_exists('LSX_Banners') || ! empty(apply_filters('lsx_banner_plugin_disable', false))) { |
|
59 | + $post_types = array('page', 'post'); |
|
60 | + $post_types = apply_filters('lsx_allowed_post_type_banners', $post_types); |
|
61 | 61 | |
62 | - if ( is_singular( $post_types ) && has_post_thumbnail() ) { |
|
62 | + if (is_singular($post_types) && has_post_thumbnail()) { |
|
63 | 63 | $classes[] = 'page-has-banner'; |
64 | 64 | } |
65 | 65 | } |
66 | 66 | |
67 | - if ( has_nav_menu( 'top-menu' ) || has_nav_menu( 'top-menu-left' ) ) { |
|
67 | + if (has_nav_menu('top-menu') || has_nav_menu('top-menu-left')) { |
|
68 | 68 | $classes[] = 'has-top-menu'; |
69 | 69 | } |
70 | 70 | |
71 | - $fixed_header = get_theme_mod( 'lsx_header_fixed', false ); |
|
71 | + $fixed_header = get_theme_mod('lsx_header_fixed', false); |
|
72 | 72 | |
73 | - if ( false !== $fixed_header ) { |
|
73 | + if (false !== $fixed_header) { |
|
74 | 74 | $classes[] = 'top-menu-fixed'; |
75 | 75 | } |
76 | 76 | |
77 | - $search_form = get_theme_mod( 'lsx_header_search', false ); |
|
77 | + $search_form = get_theme_mod('lsx_header_search', false); |
|
78 | 78 | |
79 | - if ( false !== $search_form ) { |
|
79 | + if (false !== $search_form) { |
|
80 | 80 | $classes[] = 'has-header-search'; |
81 | 81 | } |
82 | 82 | |
83 | - $preloader_content = get_theme_mod( 'lsx_preloader_content_status', false ); |
|
83 | + $preloader_content = get_theme_mod('lsx_preloader_content_status', false); |
|
84 | 84 | |
85 | - if ( false !== $preloader_content ) { |
|
85 | + if (false !== $preloader_content) { |
|
86 | 86 | $classes[] = 'preloader-content-enable'; |
87 | 87 | } |
88 | 88 | |
@@ -91,9 +91,9 @@ discard block |
||
91 | 91 | |
92 | 92 | endif; |
93 | 93 | |
94 | -add_filter( 'body_class', 'lsx_body_class' ); |
|
94 | +add_filter('body_class', 'lsx_body_class'); |
|
95 | 95 | |
96 | -if ( ! function_exists( 'lsx_embed_wrap' ) ) : |
|
96 | +if ( ! function_exists('lsx_embed_wrap')) : |
|
97 | 97 | |
98 | 98 | /** |
99 | 99 | * Wrap embedded media as suggested by Readability. |
@@ -104,8 +104,8 @@ discard block |
||
104 | 104 | * @link https://gist.github.com/965956 |
105 | 105 | * @link http://www.readability.com/publishers/guidelines#publisher |
106 | 106 | */ |
107 | - function lsx_embed_wrap( $cache, $url, $attr = '', $post_id = '' ) { |
|
108 | - if ( false !== strpos( $cache, '<iframe' ) ) { |
|
107 | + function lsx_embed_wrap($cache, $url, $attr = '', $post_id = '') { |
|
108 | + if (false !== strpos($cache, '<iframe')) { |
|
109 | 109 | return '<div class="entry-content-asset">' . $cache . '</div>'; |
110 | 110 | } |
111 | 111 | |
@@ -114,9 +114,9 @@ discard block |
||
114 | 114 | |
115 | 115 | endif; |
116 | 116 | |
117 | -add_filter( 'embed_oembed_html', 'lsx_embed_wrap', 10, 4 ); |
|
117 | +add_filter('embed_oembed_html', 'lsx_embed_wrap', 10, 4); |
|
118 | 118 | |
119 | -if ( ! function_exists( 'lsx_remove_self_closing_tags' ) ) : |
|
119 | +if ( ! function_exists('lsx_remove_self_closing_tags')) : |
|
120 | 120 | |
121 | 121 | /** |
122 | 122 | * Remove unnecessary self-closing tags. |
@@ -124,17 +124,17 @@ discard block |
||
124 | 124 | * @package lsx |
125 | 125 | * @subpackage extras |
126 | 126 | */ |
127 | - function lsx_remove_self_closing_tags( $input ) { |
|
128 | - return str_replace( ' />', '>', $input ); |
|
127 | + function lsx_remove_self_closing_tags($input) { |
|
128 | + return str_replace(' />', '>', $input); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | endif; |
132 | 132 | |
133 | -add_filter( 'get_avatar', 'lsx_remove_self_closing_tags' ); // <img /> |
|
134 | -add_filter( 'comment_id_fields', 'lsx_remove_self_closing_tags' ); // <input /> |
|
135 | -add_filter( 'post_thumbnail_html', 'lsx_remove_self_closing_tags' ); // <img /> |
|
133 | +add_filter('get_avatar', 'lsx_remove_self_closing_tags'); // <img /> |
|
134 | +add_filter('comment_id_fields', 'lsx_remove_self_closing_tags'); // <input /> |
|
135 | +add_filter('post_thumbnail_html', 'lsx_remove_self_closing_tags'); // <img /> |
|
136 | 136 | |
137 | -if ( ! function_exists( 'lsx_is_element_empty' ) ) : |
|
137 | +if ( ! function_exists('lsx_is_element_empty')) : |
|
138 | 138 | |
139 | 139 | /** |
140 | 140 | * Checks if a Nav $element is empty or not. |
@@ -142,14 +142,14 @@ discard block |
||
142 | 142 | * @package lsx |
143 | 143 | * @subpackage extras |
144 | 144 | */ |
145 | - function lsx_is_element_empty( $element ) { |
|
146 | - $element = trim( $element ); |
|
147 | - return empty( $element ) ? false : true; |
|
145 | + function lsx_is_element_empty($element) { |
|
146 | + $element = trim($element); |
|
147 | + return empty($element) ? false : true; |
|
148 | 148 | } |
149 | 149 | |
150 | 150 | endif; |
151 | 151 | |
152 | -if ( ! function_exists( 'lsx_get_thumbnail' ) ) : |
|
152 | +if ( ! function_exists('lsx_get_thumbnail')) : |
|
153 | 153 | |
154 | 154 | /** |
155 | 155 | * return the responsive images. |
@@ -157,49 +157,49 @@ discard block |
||
157 | 157 | * @package lsx |
158 | 158 | * @subpackage extras |
159 | 159 | */ |
160 | - function lsx_get_thumbnail( $size, $image_src = false ) { |
|
161 | - if ( false === $image_src ) { |
|
160 | + function lsx_get_thumbnail($size, $image_src = false) { |
|
161 | + if (false === $image_src) { |
|
162 | 162 | $post_id = get_the_ID(); |
163 | - $post_thumbnail_id = get_post_thumbnail_id( $post_id ); |
|
164 | - } elseif ( false !== $image_src ) { |
|
165 | - if ( is_numeric( $image_src ) ) { |
|
163 | + $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
164 | + } elseif (false !== $image_src) { |
|
165 | + if (is_numeric($image_src)) { |
|
166 | 166 | $post_thumbnail_id = $image_src; |
167 | 167 | } else { |
168 | - $post_thumbnail_id = lsx_get_attachment_id_from_src( $image_src ); |
|
168 | + $post_thumbnail_id = lsx_get_attachment_id_from_src($image_src); |
|
169 | 169 | } |
170 | 170 | } |
171 | 171 | |
172 | - $size = apply_filters( 'lsx_thumbnail_size', $size ); |
|
172 | + $size = apply_filters('lsx_thumbnail_size', $size); |
|
173 | 173 | $img = false; |
174 | 174 | |
175 | - if ( 'lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size ) { |
|
175 | + if ('lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size) { |
|
176 | 176 | $srcset = false; |
177 | - $img = wp_get_attachment_image_src( $post_thumbnail_id, $size ); |
|
177 | + $img = wp_get_attachment_image_src($post_thumbnail_id, $size); |
|
178 | 178 | $img = $img[0]; |
179 | 179 | } else { |
180 | 180 | $srcset = true; |
181 | - $img = wp_get_attachment_image_srcset( $post_thumbnail_id, $size ); |
|
181 | + $img = wp_get_attachment_image_srcset($post_thumbnail_id, $size); |
|
182 | 182 | |
183 | - if ( false === $img ) { |
|
183 | + if (false === $img) { |
|
184 | 184 | $srcset = false; |
185 | - $img = wp_get_attachment_image_src( $post_thumbnail_id, $size ); |
|
185 | + $img = wp_get_attachment_image_src($post_thumbnail_id, $size); |
|
186 | 186 | $img = $img[0]; |
187 | 187 | } |
188 | 188 | } |
189 | 189 | |
190 | - if ( $srcset ) { |
|
191 | - $img = '<img alt="' . the_title_attribute( 'echo=0' ) . '" class="attachment-responsive wp-post-image lsx-responsive" srcset="' . esc_attr( $img ) . '" />'; |
|
190 | + if ($srcset) { |
|
191 | + $img = '<img alt="' . the_title_attribute('echo=0') . '" class="attachment-responsive wp-post-image lsx-responsive" srcset="' . esc_attr($img) . '" />'; |
|
192 | 192 | } else { |
193 | - $img = '<img alt="' . the_title_attribute( 'echo=0' ) . '" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url( $img ) . '" />'; |
|
193 | + $img = '<img alt="' . the_title_attribute('echo=0') . '" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url($img) . '" />'; |
|
194 | 194 | } |
195 | 195 | |
196 | - $img = apply_filters( 'lsx_lazyload_filter_images', $img ); |
|
196 | + $img = apply_filters('lsx_lazyload_filter_images', $img); |
|
197 | 197 | return $img; |
198 | 198 | } |
199 | 199 | |
200 | 200 | endif; |
201 | 201 | |
202 | -if ( ! function_exists( 'lsx_thumbnail' ) ) : |
|
202 | +if ( ! function_exists('lsx_thumbnail')) : |
|
203 | 203 | |
204 | 204 | /** |
205 | 205 | * Output the Resonsive Images. |
@@ -207,13 +207,13 @@ discard block |
||
207 | 207 | * @package lsx |
208 | 208 | * @subpackage extras |
209 | 209 | */ |
210 | - function lsx_thumbnail( $size = 'thumbnail', $image_src = false ) { |
|
211 | - echo wp_kses_post( lsx_get_thumbnail( $size, $image_src ) ); |
|
210 | + function lsx_thumbnail($size = 'thumbnail', $image_src = false) { |
|
211 | + echo wp_kses_post(lsx_get_thumbnail($size, $image_src)); |
|
212 | 212 | } |
213 | 213 | |
214 | 214 | endif; |
215 | 215 | |
216 | -if ( ! function_exists( 'lsx_get_attachment_id_from_src' ) ) : |
|
216 | +if ( ! function_exists('lsx_get_attachment_id_from_src')) : |
|
217 | 217 | |
218 | 218 | /** |
219 | 219 | * Gets the attachments ID from the src. |
@@ -221,13 +221,13 @@ discard block |
||
221 | 221 | * @package lsx |
222 | 222 | * @subpackage extras |
223 | 223 | */ |
224 | - function lsx_get_attachment_id_from_src( $image_src ) { |
|
225 | - $post_id = wp_cache_get( $image_src, 'lsx_get_attachment_id_from_src' ); |
|
224 | + function lsx_get_attachment_id_from_src($image_src) { |
|
225 | + $post_id = wp_cache_get($image_src, 'lsx_get_attachment_id_from_src'); |
|
226 | 226 | |
227 | - if ( false === $post_id ) { |
|
227 | + if (false === $post_id) { |
|
228 | 228 | global $wpdb; |
229 | - $post_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src ) ); |
|
230 | - wp_cache_set( $image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600 ); |
|
229 | + $post_id = $wpdb->get_var($wpdb->prepare("SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src)); |
|
230 | + wp_cache_set($image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600); |
|
231 | 231 | } |
232 | 232 | |
233 | 233 | return $post_id; |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | |
236 | 236 | endif; |
237 | 237 | |
238 | -if ( ! function_exists( 'lsx_page_banner' ) ) : |
|
238 | +if ( ! function_exists('lsx_page_banner')) : |
|
239 | 239 | |
240 | 240 | /** |
241 | 241 | * Add Featured Image as Banner on Single Pages. |
@@ -244,26 +244,26 @@ discard block |
||
244 | 244 | * @subpackage extras |
245 | 245 | */ |
246 | 246 | function lsx_page_banner() { |
247 | - if ( true === apply_filters( 'lsx_page_banner_disable', false ) ) { |
|
247 | + if (true === apply_filters('lsx_page_banner_disable', false)) { |
|
248 | 248 | return; |
249 | 249 | } |
250 | 250 | |
251 | - $post_types = array( 'page', 'post' ); |
|
252 | - $post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types ); |
|
251 | + $post_types = array('page', 'post'); |
|
252 | + $post_types = apply_filters('lsx_allowed_post_type_banners', $post_types); |
|
253 | 253 | |
254 | - if ( is_singular( $post_types ) && has_post_thumbnail() ) : |
|
254 | + if (is_singular($post_types) && has_post_thumbnail()) : |
|
255 | 255 | $bg_image = ''; |
256 | 256 | |
257 | - if ( has_post_thumbnail() ) { |
|
258 | - $bg_image = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'full' ); |
|
257 | + if (has_post_thumbnail()) { |
|
258 | + $bg_image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), 'full'); |
|
259 | 259 | $bg_image = $bg_image[0]; |
260 | 260 | } |
261 | 261 | |
262 | - if ( ! empty( $bg_image ) ) : |
|
262 | + if ( ! empty($bg_image)) : |
|
263 | 263 | ?> |
264 | 264 | <div class="page-banner-wrap"> |
265 | 265 | <div class="page-banner"> |
266 | - <div class="page-banner-image" style="background-image:url(<?php echo esc_attr( $bg_image ); ?>);"></div> |
|
266 | + <div class="page-banner-image" style="background-image:url(<?php echo esc_attr($bg_image); ?>);"></div> |
|
267 | 267 | |
268 | 268 | <div class="container"> |
269 | 269 | <header class="page-header"> |
@@ -282,9 +282,9 @@ discard block |
||
282 | 282 | |
283 | 283 | endif; |
284 | 284 | |
285 | -add_action( 'lsx_header_after', 'lsx_page_banner' ); |
|
285 | +add_action('lsx_header_after', 'lsx_page_banner'); |
|
286 | 286 | |
287 | -if ( ! function_exists( 'lsx_form_submit_button' ) ) : |
|
287 | +if ( ! function_exists('lsx_form_submit_button')) : |
|
288 | 288 | |
289 | 289 | /** |
290 | 290 | * filter the Gravity Forms button type. |
@@ -296,15 +296,15 @@ discard block |
||
296 | 296 | * @param $form Object |
297 | 297 | * @return String |
298 | 298 | */ |
299 | - function lsx_form_submit_button( $button, $form ) { |
|
299 | + function lsx_form_submit_button($button, $form) { |
|
300 | 300 | return "<button class='btn btn-primary' id='gform_submit_button_{$form["id"]}'><span>Submit</span></button>"; |
301 | 301 | } |
302 | 302 | |
303 | 303 | endif; |
304 | 304 | |
305 | -add_filter( 'gform_submit_button', 'lsx_form_submit_button', 10, 2 ); |
|
305 | +add_filter('gform_submit_button', 'lsx_form_submit_button', 10, 2); |
|
306 | 306 | |
307 | -if ( ! function_exists( 'lsx_excerpt_more' ) ) : |
|
307 | +if ( ! function_exists('lsx_excerpt_more')) : |
|
308 | 308 | |
309 | 309 | /** |
310 | 310 | * Replaces the excerpt "more" text by a link. |
@@ -312,15 +312,15 @@ discard block |
||
312 | 312 | * @package lsx |
313 | 313 | * @subpackage extras |
314 | 314 | */ |
315 | - function lsx_excerpt_more( $more ) { |
|
315 | + function lsx_excerpt_more($more) { |
|
316 | 316 | return '...'; |
317 | 317 | } |
318 | 318 | |
319 | 319 | endif; |
320 | 320 | |
321 | -add_filter( 'excerpt_more', 'lsx_excerpt_more' ); |
|
321 | +add_filter('excerpt_more', 'lsx_excerpt_more'); |
|
322 | 322 | |
323 | -if ( ! function_exists( 'lsx_the_excerpt_filter' ) ) : |
|
323 | +if ( ! function_exists('lsx_the_excerpt_filter')) : |
|
324 | 324 | |
325 | 325 | /** |
326 | 326 | * Add a continue reading link to the excerpt. |
@@ -328,24 +328,24 @@ discard block |
||
328 | 328 | * @package lsx |
329 | 329 | * @subpackage extras |
330 | 330 | */ |
331 | - function lsx_the_excerpt_filter( $excerpt ) { |
|
332 | - $show_full_content = has_post_format( apply_filters( 'lsx_the_excerpt_filter_post_types', array( 'aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio' ) ) ); |
|
331 | + function lsx_the_excerpt_filter($excerpt) { |
|
332 | + $show_full_content = has_post_format(apply_filters('lsx_the_excerpt_filter_post_types', array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio'))); |
|
333 | 333 | |
334 | - if ( ! $show_full_content ) { |
|
335 | - if ( '' !== $excerpt && ! stristr( $excerpt, 'moretag' ) ) { |
|
336 | - $pagination = wp_link_pages( array( |
|
334 | + if ( ! $show_full_content) { |
|
335 | + if ('' !== $excerpt && ! stristr($excerpt, 'moretag')) { |
|
336 | + $pagination = wp_link_pages(array( |
|
337 | 337 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
338 | 338 | 'after' => '</div></div>', |
339 | 339 | 'link_before' => '<span>', |
340 | 340 | 'link_after' => '</span>', |
341 | 341 | 'echo' => 0, |
342 | - ) ); |
|
342 | + )); |
|
343 | 343 | |
344 | - if ( ! empty( $pagination ) ) { |
|
344 | + if ( ! empty($pagination)) { |
|
345 | 345 | $excerpt .= $pagination; |
346 | 346 | } else { |
347 | - $excerpt_more = '<p><a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'Continue reading', 'lsx' ) . '</a></p>'; |
|
348 | - $excerpt .= apply_filters( 'excerpt_more_p', $excerpt_more ); |
|
347 | + $excerpt_more = '<p><a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('Continue reading', 'lsx') . '</a></p>'; |
|
348 | + $excerpt .= apply_filters('excerpt_more_p', $excerpt_more); |
|
349 | 349 | } |
350 | 350 | } |
351 | 351 | } |
@@ -355,9 +355,9 @@ discard block |
||
355 | 355 | |
356 | 356 | endif; |
357 | 357 | |
358 | -add_filter( 'the_excerpt', 'lsx_the_excerpt_filter' , 1 , 20 ); |
|
358 | +add_filter('the_excerpt', 'lsx_the_excerpt_filter', 1, 20); |
|
359 | 359 | |
360 | -if ( ! function_exists( 'lsx_custom_wp_trim_excerpt' ) ) : |
|
360 | +if ( ! function_exists('lsx_custom_wp_trim_excerpt')) : |
|
361 | 361 | |
362 | 362 | /** |
363 | 363 | * Allow HTML tags in excerpt. |
@@ -365,33 +365,33 @@ discard block |
||
365 | 365 | * @package lsx |
366 | 366 | * @subpackage extras |
367 | 367 | */ |
368 | - function lsx_custom_wp_trim_excerpt( $wpse_excerpt ) { |
|
368 | + function lsx_custom_wp_trim_excerpt($wpse_excerpt) { |
|
369 | 369 | global $post; |
370 | 370 | $raw_excerpt = $wpse_excerpt; |
371 | 371 | |
372 | - if ( empty( $wpse_excerpt ) ) { |
|
373 | - $wpse_excerpt = get_the_content( '' ); |
|
374 | - $show_full_content = has_post_format( array( 'aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio' ) ); |
|
372 | + if (empty($wpse_excerpt)) { |
|
373 | + $wpse_excerpt = get_the_content(''); |
|
374 | + $show_full_content = has_post_format(array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio')); |
|
375 | 375 | |
376 | - if ( ! $show_full_content ) { |
|
377 | - $wpse_excerpt = strip_shortcodes( $wpse_excerpt ); |
|
378 | - $wpse_excerpt = apply_filters( 'the_content', $wpse_excerpt ); |
|
379 | - $wpse_excerpt = str_replace( ']]>', ']]>', $wpse_excerpt ); |
|
380 | - $wpse_excerpt = strip_tags( $wpse_excerpt, apply_filters( 'excerpt_strip_tags', '<h1>,<h2>,<h3>,<h4>,<h5>,<h6>,<a>,<button>,<blockquote>,<p>,<br>,<b>,<strong>,<i>,<u>,<ul>,<ol>,<li>,<span>,<div>' ) ); |
|
376 | + if ( ! $show_full_content) { |
|
377 | + $wpse_excerpt = strip_shortcodes($wpse_excerpt); |
|
378 | + $wpse_excerpt = apply_filters('the_content', $wpse_excerpt); |
|
379 | + $wpse_excerpt = str_replace(']]>', ']]>', $wpse_excerpt); |
|
380 | + $wpse_excerpt = strip_tags($wpse_excerpt, apply_filters('excerpt_strip_tags', '<h1>,<h2>,<h3>,<h4>,<h5>,<h6>,<a>,<button>,<blockquote>,<p>,<br>,<b>,<strong>,<i>,<u>,<ul>,<ol>,<li>,<span>,<div>')); |
|
381 | 381 | |
382 | 382 | $excerpt_word_count = 50; |
383 | - $excerpt_word_count = apply_filters( 'excerpt_length', $excerpt_word_count ); |
|
383 | + $excerpt_word_count = apply_filters('excerpt_length', $excerpt_word_count); |
|
384 | 384 | |
385 | 385 | $tokens = array(); |
386 | 386 | $excerpt_output = ''; |
387 | 387 | $has_more = false; |
388 | 388 | $count = 0; |
389 | 389 | |
390 | - preg_match_all( '/(<[^>]+>|[^<>\s]+)\s*/u', $wpse_excerpt, $tokens ); |
|
390 | + preg_match_all('/(<[^>]+>|[^<>\s]+)\s*/u', $wpse_excerpt, $tokens); |
|
391 | 391 | |
392 | - foreach ( $tokens[0] as $token ) { |
|
393 | - if ( $count >= $excerpt_word_count ) { |
|
394 | - $excerpt_output .= trim( $token ); |
|
392 | + foreach ($tokens[0] as $token) { |
|
393 | + if ($count >= $excerpt_word_count) { |
|
394 | + $excerpt_output .= trim($token); |
|
395 | 395 | $has_more = true; |
396 | 396 | break; |
397 | 397 | } |
@@ -400,41 +400,41 @@ discard block |
||
400 | 400 | $excerpt_output .= $token; |
401 | 401 | } |
402 | 402 | |
403 | - $wpse_excerpt = trim( force_balance_tags( $excerpt_output ) ); |
|
403 | + $wpse_excerpt = trim(force_balance_tags($excerpt_output)); |
|
404 | 404 | |
405 | - if ( $has_more ) { |
|
406 | - $excerpt_end = '<a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'More', 'lsx' ) . '</a>'; |
|
407 | - $excerpt_end = apply_filters( 'excerpt_more', ' ' . $excerpt_end ); |
|
405 | + if ($has_more) { |
|
406 | + $excerpt_end = '<a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('More', 'lsx') . '</a>'; |
|
407 | + $excerpt_end = apply_filters('excerpt_more', ' ' . $excerpt_end); |
|
408 | 408 | |
409 | - $pos = strrpos( $wpse_excerpt, '</' ); |
|
409 | + $pos = strrpos($wpse_excerpt, '</'); |
|
410 | 410 | |
411 | - if ( false !== $pos ) { |
|
411 | + if (false !== $pos) { |
|
412 | 412 | // Inside last HTML tag |
413 | - $wpse_excerpt = substr_replace( $wpse_excerpt, $excerpt_end, $pos, 0 ); /* Add read more next to last word */ |
|
413 | + $wpse_excerpt = substr_replace($wpse_excerpt, $excerpt_end, $pos, 0); /* Add read more next to last word */ |
|
414 | 414 | } else { |
415 | 415 | // After the content |
416 | 416 | $wpse_excerpt .= $excerpt_end; /*Add read more in new paragraph */ |
417 | 417 | } |
418 | 418 | } |
419 | 419 | } else { |
420 | - $wpse_excerpt = apply_filters( 'the_content', $wpse_excerpt ); |
|
421 | - $wpse_excerpt = str_replace( ']]>', ']]>', $wpse_excerpt ); |
|
420 | + $wpse_excerpt = apply_filters('the_content', $wpse_excerpt); |
|
421 | + $wpse_excerpt = str_replace(']]>', ']]>', $wpse_excerpt); |
|
422 | 422 | //$wpse_excerpt = strip_tags( $wpse_excerpt, '<blockquote>,<p>' ); |
423 | - $wpse_excerpt = trim( force_balance_tags( $wpse_excerpt ) ); |
|
423 | + $wpse_excerpt = trim(force_balance_tags($wpse_excerpt)); |
|
424 | 424 | } |
425 | 425 | |
426 | 426 | return $wpse_excerpt; |
427 | 427 | } |
428 | 428 | |
429 | - return apply_filters( 'lsx_custom_wp_trim_excerpt', $wpse_excerpt, $raw_excerpt ); |
|
429 | + return apply_filters('lsx_custom_wp_trim_excerpt', $wpse_excerpt, $raw_excerpt); |
|
430 | 430 | } |
431 | 431 | |
432 | 432 | endif; |
433 | 433 | |
434 | -remove_filter( 'get_the_excerpt', 'wp_trim_excerpt' ); |
|
435 | -add_filter( 'get_the_excerpt', 'lsx_custom_wp_trim_excerpt' ); |
|
434 | +remove_filter('get_the_excerpt', 'wp_trim_excerpt'); |
|
435 | +add_filter('get_the_excerpt', 'lsx_custom_wp_trim_excerpt'); |
|
436 | 436 | |
437 | -if ( ! function_exists( 'lsx_full_width_widget_classes' ) ) : |
|
437 | +if ( ! function_exists('lsx_full_width_widget_classes')) : |
|
438 | 438 | |
439 | 439 | /** |
440 | 440 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -442,8 +442,8 @@ discard block |
||
442 | 442 | * @package lsx |
443 | 443 | * @subpackage extras |
444 | 444 | */ |
445 | - function lsx_full_width_widget_classes( $params ) { |
|
446 | - if ( is_admin() ) { |
|
445 | + function lsx_full_width_widget_classes($params) { |
|
446 | + if (is_admin()) { |
|
447 | 447 | return $params; |
448 | 448 | } |
449 | 449 | |
@@ -452,9 +452,9 @@ discard block |
||
452 | 452 | $widget_id = $params[0]['widget_id']; |
453 | 453 | $widget_name = $params[0]['widget_name']; |
454 | 454 | |
455 | - if ( 'Text' === $widget_name ) { |
|
456 | - $wp_registered_widgets[ $widget_id ]['original_callback'] = $wp_registered_widgets[ $widget_id ]['callback']; |
|
457 | - $wp_registered_widgets[ $widget_id ]['callback'] = 'lsx_full_width_widget_custom_callback'; |
|
455 | + if ('Text' === $widget_name) { |
|
456 | + $wp_registered_widgets[$widget_id]['original_callback'] = $wp_registered_widgets[$widget_id]['callback']; |
|
457 | + $wp_registered_widgets[$widget_id]['callback'] = 'lsx_full_width_widget_custom_callback'; |
|
458 | 458 | } |
459 | 459 | |
460 | 460 | return $params; |
@@ -462,9 +462,9 @@ discard block |
||
462 | 462 | |
463 | 463 | endif; |
464 | 464 | |
465 | -add_filter( 'dynamic_sidebar_params', 'lsx_full_width_widget_classes' ); |
|
465 | +add_filter('dynamic_sidebar_params', 'lsx_full_width_widget_classes'); |
|
466 | 466 | |
467 | -if ( ! function_exists( 'lsx_full_width_widget_custom_callback' ) ) : |
|
467 | +if ( ! function_exists('lsx_full_width_widget_custom_callback')) : |
|
468 | 468 | |
469 | 469 | /** |
470 | 470 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -478,25 +478,25 @@ discard block |
||
478 | 478 | $original_callback_params = func_get_args(); |
479 | 479 | $widget_id = $original_callback_params[0]['widget_id']; |
480 | 480 | |
481 | - $original_callback = $wp_registered_widgets[ $widget_id ]['original_callback']; |
|
482 | - $wp_registered_widgets[ $widget_id ]['callback'] = $original_callback; |
|
481 | + $original_callback = $wp_registered_widgets[$widget_id]['original_callback']; |
|
482 | + $wp_registered_widgets[$widget_id]['callback'] = $original_callback; |
|
483 | 483 | |
484 | - $widget_id_base = $wp_registered_widgets[ $widget_id ]['callback'][0]->id_base; |
|
484 | + $widget_id_base = $wp_registered_widgets[$widget_id]['callback'][0]->id_base; |
|
485 | 485 | |
486 | 486 | $widget_classname = ''; |
487 | 487 | |
488 | - if ( is_callable( $original_callback ) ) { |
|
488 | + if (is_callable($original_callback)) { |
|
489 | 489 | ob_start(); |
490 | - call_user_func_array( $original_callback, $original_callback_params ); |
|
490 | + call_user_func_array($original_callback, $original_callback_params); |
|
491 | 491 | $widget_output = ob_get_clean(); |
492 | 492 | |
493 | - echo wp_kses_post( apply_filters( 'lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id ) ); |
|
493 | + echo wp_kses_post(apply_filters('lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id)); |
|
494 | 494 | } |
495 | 495 | } |
496 | 496 | |
497 | 497 | endif; |
498 | 498 | |
499 | -if ( ! function_exists( 'lsx_full_width_widget_output' ) ) : |
|
499 | +if ( ! function_exists('lsx_full_width_widget_output')) : |
|
500 | 500 | |
501 | 501 | /** |
502 | 502 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -504,12 +504,12 @@ discard block |
||
504 | 504 | * @package lsx |
505 | 505 | * @subpackage extras |
506 | 506 | */ |
507 | - function lsx_full_width_widget_output( $widget_output, $widget_id_base, $widget_id ) { |
|
508 | - if ( 'text' === $widget_id_base ) { |
|
509 | - if ( false !== strpos( $widget_output, '<div class="lsx-full-width-alt">' ) ) { |
|
510 | - $widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output ); |
|
511 | - } elseif ( false !== strpos( $widget_output, '<div class="lsx-full-width">' ) ) { |
|
512 | - $widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output ); |
|
507 | + function lsx_full_width_widget_output($widget_output, $widget_id_base, $widget_id) { |
|
508 | + if ('text' === $widget_id_base) { |
|
509 | + if (false !== strpos($widget_output, '<div class="lsx-full-width-alt">')) { |
|
510 | + $widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output); |
|
511 | + } elseif (false !== strpos($widget_output, '<div class="lsx-full-width">')) { |
|
512 | + $widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output); |
|
513 | 513 | } |
514 | 514 | } |
515 | 515 | |
@@ -518,4 +518,4 @@ discard block |
||
518 | 518 | |
519 | 519 | endif; |
520 | 520 | |
521 | -add_filter( 'lsx_widget_output', 'lsx_full_width_widget_output', 10, 3 ); |
|
521 | +add_filter('lsx_widget_output', 'lsx_full_width_widget_output', 10, 3); |
@@ -10,28 +10,28 @@ discard block |
||
10 | 10 | <div class="row"> |
11 | 11 | <div class="col-md-12"> |
12 | 12 | <div class="box enhance"> |
13 | - <h2><?php esc_html_e( 'Enhance LSX', 'lsx' ); ?></h2> |
|
14 | - <p><?php esc_html_e( 'Take a look at our range of extensions that add to the already rich functionality of the LSX WordPress theme.', 'lsx' ); ?></p> |
|
13 | + <h2><?php esc_html_e('Enhance LSX', 'lsx'); ?></h2> |
|
14 | + <p><?php esc_html_e('Take a look at our range of extensions that add to the already rich functionality of the LSX WordPress theme.', 'lsx'); ?></p> |
|
15 | 15 | |
16 | 16 | <div class="row"> |
17 | 17 | <div class="col-md-4"> |
18 | 18 | <div class="box-clean"> |
19 | - <a href="https://www.lsdev.biz/product/lsx-banners/" target="_blank"><?php esc_html_e( 'Banners', 'lsx' ); ?> - <span class="price">Price from $39.00</span></a> |
|
20 | - <p><?php esc_html_e( 'The LSX Banners extension adds advanced banner configuration options to your WordPress site running LSX theme.', 'lsx' ); ?></p> |
|
19 | + <a href="https://www.lsdev.biz/product/lsx-banners/" target="_blank"><?php esc_html_e('Banners', 'lsx'); ?> - <span class="price">Price from $39.00</span></a> |
|
20 | + <p><?php esc_html_e('The LSX Banners extension adds advanced banner configuration options to your WordPress site running LSX theme.', 'lsx'); ?></p> |
|
21 | 21 | </div> |
22 | 22 | </div> |
23 | 23 | |
24 | 24 | <div class="col-md-4"> |
25 | 25 | <div class="box-clean"> |
26 | - <a href="https://www.lsdev.biz/product/lsx-currencies/" target="_blank"><?php esc_html_e( 'Currencies', 'lsx' ); ?> - <span class="price">Price from $29.00</span></a> |
|
27 | - <p><?php esc_html_e( 'The LSX Currencies extension adds currency selection functionality to sites, allowing users to view your products in whatever currencies you choose to sell in.', 'lsx' ); ?></p> |
|
26 | + <a href="https://www.lsdev.biz/product/lsx-currencies/" target="_blank"><?php esc_html_e('Currencies', 'lsx'); ?> - <span class="price">Price from $29.00</span></a> |
|
27 | + <p><?php esc_html_e('The LSX Currencies extension adds currency selection functionality to sites, allowing users to view your products in whatever currencies you choose to sell in.', 'lsx'); ?></p> |
|
28 | 28 | </div> |
29 | 29 | </div> |
30 | 30 | |
31 | 31 | <div class="col-md-4"> |
32 | 32 | <div class="box-clean"> |
33 | - <a href="https://www.lsdev.biz/product/lsx-blog-customizer/" target="_blank"><?php esc_html_e( 'Blog Customizer', 'lsx' ); ?> - <span class="price">Price from $29.00</span></a> |
|
34 | - <p><?php esc_html_e( 'It allows you it to customize various aspects of the the appearance of your blog, posts widgets, archive pages and single posts so they looks exactly how you want.', 'lsx' ); ?></p> |
|
33 | + <a href="https://www.lsdev.biz/product/lsx-blog-customizer/" target="_blank"><?php esc_html_e('Blog Customizer', 'lsx'); ?> - <span class="price">Price from $29.00</span></a> |
|
34 | + <p><?php esc_html_e('It allows you it to customize various aspects of the the appearance of your blog, posts widgets, archive pages and single posts so they looks exactly how you want.', 'lsx'); ?></p> |
|
35 | 35 | </div> |
36 | 36 | </div> |
37 | 37 | </div> |
@@ -39,22 +39,22 @@ discard block |
||
39 | 39 | <div class="row"> |
40 | 40 | <div class="col-md-4"> |
41 | 41 | <div class="box-clean"> |
42 | - <a href="https://www.lsdev.biz/product/lsx-customizer/" target="_blank"><?php esc_html_e( 'Customizer', 'lsx' ); ?> - <span class="price">Price from $49.00</span></a> |
|
43 | - <p><?php esc_html_e( 'You\'ve installed LSX, so now why not make it all yours? Whether it\'s a small CSS tweak or changing the entire layout of pages, posts or archives, please make use of the Theme Customizer plugin.', 'lsx' ); ?></p> |
|
42 | + <a href="https://www.lsdev.biz/product/lsx-customizer/" target="_blank"><?php esc_html_e('Customizer', 'lsx'); ?> - <span class="price">Price from $49.00</span></a> |
|
43 | + <p><?php esc_html_e('You\'ve installed LSX, so now why not make it all yours? Whether it\'s a small CSS tweak or changing the entire layout of pages, posts or archives, please make use of the Theme Customizer plugin.', 'lsx'); ?></p> |
|
44 | 44 | </div> |
45 | 45 | </div> |
46 | 46 | |
47 | 47 | <div class="col-md-4"> |
48 | 48 | <div class="box-clean"> |
49 | - <a href="https://www.lsdev.biz/product/lsx-login/" target="_blank"><?php esc_html_e( 'Login', 'lsx' ); ?> - <span class="price">Price from $39.00</span></a> |
|
50 | - <p><?php esc_html_e( 'The LSX Login extension allows users to log into a dashboard and then see configurable content based on which users can access which content.', 'lsx' ); ?></p> |
|
49 | + <a href="https://www.lsdev.biz/product/lsx-login/" target="_blank"><?php esc_html_e('Login', 'lsx'); ?> - <span class="price">Price from $39.00</span></a> |
|
50 | + <p><?php esc_html_e('The LSX Login extension allows users to log into a dashboard and then see configurable content based on which users can access which content.', 'lsx'); ?></p> |
|
51 | 51 | </div> |
52 | 52 | </div> |
53 | 53 | |
54 | 54 | <div class="col-md-4"> |
55 | 55 | <div class="box-clean"> |
56 | - <a href="https://www.lsdev.biz/product/lsx-mega-menus/" target="_blank"><?php esc_html_e( 'Mega Menus', 'lsx' ); ?> - <span class="price">Price from $39.00</span></a> |
|
57 | - <p><?php esc_html_e( 'Create custom, full-width dropdown menus that contain images, widgets and more that seamlessly tie into your LSX WordPress site.', 'lsx' ); ?></p> |
|
56 | + <a href="https://www.lsdev.biz/product/lsx-mega-menus/" target="_blank"><?php esc_html_e('Mega Menus', 'lsx'); ?> - <span class="price">Price from $39.00</span></a> |
|
57 | + <p><?php esc_html_e('Create custom, full-width dropdown menus that contain images, widgets and more that seamlessly tie into your LSX WordPress site.', 'lsx'); ?></p> |
|
58 | 58 | </div> |
59 | 59 | </div> |
60 | 60 | </div> |
@@ -62,22 +62,22 @@ discard block |
||
62 | 62 | <div class="row"> |
63 | 63 | <div class="col-md-4"> |
64 | 64 | <div class="box-clean"> |
65 | - <a href="https://www.lsdev.biz/product/lsx-team/" target="_blank"><?php esc_html_e( 'Team', 'lsx' ); ?> - <span class="price">Price from $29.00</span></a> |
|
66 | - <p><?php esc_html_e( 'The LSX Team Extension provides a custom post type that allows you to easily show off the people that make up your business.', 'lsx' ); ?></p> |
|
65 | + <a href="https://www.lsdev.biz/product/lsx-team/" target="_blank"><?php esc_html_e('Team', 'lsx'); ?> - <span class="price">Price from $29.00</span></a> |
|
66 | + <p><?php esc_html_e('The LSX Team Extension provides a custom post type that allows you to easily show off the people that make up your business.', 'lsx'); ?></p> |
|
67 | 67 | </div> |
68 | 68 | </div> |
69 | 69 | |
70 | 70 | <div class="col-md-4"> |
71 | 71 | <div class="box-clean"> |
72 | - <a href="https://www.lsdev.biz/product/lsx-testimonials/" target="_blank"><?php esc_html_e( 'Testimonials', 'lsx' ); ?> - <span class="price">Price from $29.00</span></a> |
|
73 | - <p><?php esc_html_e( 'The LSX Testimonials extension adds the "Testimonials" post type, which you can display front-and-centre on your site.', 'lsx' ); ?></p> |
|
72 | + <a href="https://www.lsdev.biz/product/lsx-testimonials/" target="_blank"><?php esc_html_e('Testimonials', 'lsx'); ?> - <span class="price">Price from $29.00</span></a> |
|
73 | + <p><?php esc_html_e('The LSX Testimonials extension adds the "Testimonials" post type, which you can display front-and-centre on your site.', 'lsx'); ?></p> |
|
74 | 74 | </div> |
75 | 75 | </div> |
76 | 76 | |
77 | 77 | <div class="col-md-4"> |
78 | 78 | <div class="box-clean"> |
79 | - <a href="https://www.lsdev.biz/product/lsx-geo-content/" target="_blank"><?php esc_html_e( 'Geo Content', 'lsx' ); ?> - <span class="price">Price from $59.00</span></a> |
|
80 | - <p><?php esc_html_e( 'LSX Geo Content allows you to serve different content to users based on their automatically-detected IP address.', 'lsx' ); ?></p> |
|
79 | + <a href="https://www.lsdev.biz/product/lsx-geo-content/" target="_blank"><?php esc_html_e('Geo Content', 'lsx'); ?> - <span class="price">Price from $59.00</span></a> |
|
80 | + <p><?php esc_html_e('LSX Geo Content allows you to serve different content to users based on their automatically-detected IP address.', 'lsx'); ?></p> |
|
81 | 81 | </div> |
82 | 82 | </div> |
83 | 83 | </div> |
@@ -85,41 +85,41 @@ discard block |
||
85 | 85 | <div class="row"> |
86 | 86 | <div class="col-md-4"> |
87 | 87 | <div class="box-clean"> |
88 | - <a href="https://www.lsdev.biz/product/lsx-services/" target="_blank"><?php esc_html_e( 'Services', 'lsx' ); ?> - <span class="price">Price from $29.00</span></a> |
|
89 | - <p><?php esc_html_e( 'Adds the "Service" post type to your LSX website which allows you to display and categorize the services your business provides.', 'lsx' ); ?></p> |
|
88 | + <a href="https://www.lsdev.biz/product/lsx-services/" target="_blank"><?php esc_html_e('Services', 'lsx'); ?> - <span class="price">Price from $29.00</span></a> |
|
89 | + <p><?php esc_html_e('Adds the "Service" post type to your LSX website which allows you to display and categorize the services your business provides.', 'lsx'); ?></p> |
|
90 | 90 | </div> |
91 | 91 | </div> |
92 | 92 | |
93 | 93 | <div class="col-md-4"> |
94 | 94 | <div class="box-clean"> |
95 | - <a href="https://www.lsdev.biz/product/lsx-projects/" target="_blank"><?php esc_html_e( 'Projects', 'lsx' ); ?> - <span class="price">Price from $29.00</span></a> |
|
96 | - <p><?php esc_html_e( 'Show off your finest work with the LSX Projects Extension! It adds a "Project" post type, allowing you to categorize and display your Projects on your LSX website.', 'lsx' ); ?></p> |
|
95 | + <a href="https://www.lsdev.biz/product/lsx-projects/" target="_blank"><?php esc_html_e('Projects', 'lsx'); ?> - <span class="price">Price from $29.00</span></a> |
|
96 | + <p><?php esc_html_e('Show off your finest work with the LSX Projects Extension! It adds a "Project" post type, allowing you to categorize and display your Projects on your LSX website.', 'lsx'); ?></p> |
|
97 | 97 | </div> |
98 | 98 | </div> |
99 | 99 | |
100 | 100 | <div class="col-md-4"> |
101 | 101 | <div class="box-clean"> |
102 | - <a href="https://www.lsdev.biz/product/lsx-sharing/" target="_blank"><?php esc_html_e( 'Sharing', 'lsx' ); ?> - <span class="price">Price from $29.00</span></a> |
|
103 | - <p><?php esc_html_e( 'LSX Sharing adds buttons to your posts that your readers can use to share your content on Facebook, Twitter and Pinterest.', 'lsx' ); ?></p> |
|
102 | + <a href="https://www.lsdev.biz/product/lsx-sharing/" target="_blank"><?php esc_html_e('Sharing', 'lsx'); ?> - <span class="price">Price from $29.00</span></a> |
|
103 | + <p><?php esc_html_e('LSX Sharing adds buttons to your posts that your readers can use to share your content on Facebook, Twitter and Pinterest.', 'lsx'); ?></p> |
|
104 | 104 | </div> |
105 | 105 | </div> |
106 | 106 | </div> |
107 | 107 | |
108 | - <h2><?php esc_html_e( 'LSX extensions bundles', 'lsx' ); ?></h2> |
|
109 | - <p><?php esc_html_e( 'We\'ve created two bundles to help you to get the most out of LSX Theme.', 'lsx' ); ?></p> |
|
108 | + <h2><?php esc_html_e('LSX extensions bundles', 'lsx'); ?></h2> |
|
109 | + <p><?php esc_html_e('We\'ve created two bundles to help you to get the most out of LSX Theme.', 'lsx'); ?></p> |
|
110 | 110 | |
111 | 111 | <div class="row"> |
112 | 112 | <div class="col-md-4"> |
113 | 113 | <div class="box-clean"> |
114 | - <a href="https://www.lsdev.biz/product/lsx-essentials-bundle/" target="_blank"><?php esc_html_e( 'LSX Essentials', 'lsx' ); ?> - <span class="price">Price from $99.00</span></a> |
|
115 | - <p><?php esc_html_e( 'A collection of essential LSX extensions giving you more functionality, additional content types and greater control over the styling of your theme.', 'lsx' ); ?></p> |
|
114 | + <a href="https://www.lsdev.biz/product/lsx-essentials-bundle/" target="_blank"><?php esc_html_e('LSX Essentials', 'lsx'); ?> - <span class="price">Price from $99.00</span></a> |
|
115 | + <p><?php esc_html_e('A collection of essential LSX extensions giving you more functionality, additional content types and greater control over the styling of your theme.', 'lsx'); ?></p> |
|
116 | 116 | </div> |
117 | 117 | </div> |
118 | 118 | |
119 | 119 | <div class="col-md-4"> |
120 | 120 | <div class="box-clean"> |
121 | - <a href="https://www.lsdev.biz/product/lsx-complete-bundle/" target="_blank"><?php esc_html_e( 'LSX Complete', 'lsx' ); ?> - <span class="price">Price from $199.00</span></a> |
|
122 | - <p><?php esc_html_e( 'A full set of LSX extensions giving you all the functionality, content types and customization tools you may need!', 'lsx' ); ?></p> |
|
121 | + <a href="https://www.lsdev.biz/product/lsx-complete-bundle/" target="_blank"><?php esc_html_e('LSX Complete', 'lsx'); ?> - <span class="price">Price from $199.00</span></a> |
|
122 | + <p><?php esc_html_e('A full set of LSX extensions giving you all the functionality, content types and customization tools you may need!', 'lsx'); ?></p> |
|
123 | 123 | </div> |
124 | 124 | </div> |
125 | 125 | </div> |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage welcome-page |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! function_exists( 'lsx_activation_admin_notice_dismiss' ) ) : |
|
13 | +if ( ! function_exists('lsx_activation_admin_notice_dismiss')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Dismiss the admin notice (successful activation). |
@@ -19,15 +19,15 @@ discard block |
||
19 | 19 | * @subpackage welcome-page |
20 | 20 | */ |
21 | 21 | function lsx_activation_admin_notice_dismiss() { |
22 | - update_option( 'lsx-notice-dismissed', '1' ); |
|
22 | + update_option('lsx-notice-dismissed', '1'); |
|
23 | 23 | wp_die(); |
24 | 24 | } |
25 | 25 | |
26 | 26 | endif; |
27 | 27 | |
28 | -add_action( 'wp_ajax_lsx_dismiss_theme_notice', 'lsx_activation_admin_notice_dismiss' ); |
|
28 | +add_action('wp_ajax_lsx_dismiss_theme_notice', 'lsx_activation_admin_notice_dismiss'); |
|
29 | 29 | |
30 | -if ( ! function_exists( 'lsx_activation_admin_notice' ) ) : |
|
30 | +if ( ! function_exists('lsx_activation_admin_notice')) : |
|
31 | 31 | |
32 | 32 | /** |
33 | 33 | * Adds an admin notice upon successful activation. |
@@ -36,16 +36,16 @@ discard block |
||
36 | 36 | * @subpackage welcome-page |
37 | 37 | */ |
38 | 38 | function lsx_activation_admin_notice() { |
39 | - if ( empty( get_option( 'lsx-notice-dismissed' ) ) ) { |
|
40 | - add_action( 'admin_notices', 'lsx_welcome_admin_notice', 99 ); |
|
39 | + if (empty(get_option('lsx-notice-dismissed'))) { |
|
40 | + add_action('admin_notices', 'lsx_welcome_admin_notice', 99); |
|
41 | 41 | } |
42 | 42 | } |
43 | 43 | |
44 | 44 | endif; |
45 | 45 | |
46 | -add_action( 'admin_notices', 'lsx_activation_admin_notice' ); |
|
46 | +add_action('admin_notices', 'lsx_activation_admin_notice'); |
|
47 | 47 | |
48 | -if ( ! function_exists( 'lsx_welcome_admin_notice' ) ) : |
|
48 | +if ( ! function_exists('lsx_welcome_admin_notice')) : |
|
49 | 49 | |
50 | 50 | /** |
51 | 51 | * Display an admin notice linking to the welcome screen. |
@@ -60,20 +60,20 @@ discard block |
||
60 | 60 | <?php |
61 | 61 | printf( |
62 | 62 | /* Translators: 1: HTML open tag link, 2: HTML close tag link */ |
63 | - esc_html__( 'Thanks for choosing LSX! You can read hints and tips on how get the most out of your new theme on the %1$swelcome screen%2$s.', 'lsx' ), |
|
64 | - '<a href="' . esc_url( admin_url( 'themes.php?page=lsx-welcome' ) ) . '">', |
|
63 | + esc_html__('Thanks for choosing LSX! You can read hints and tips on how get the most out of your new theme on the %1$swelcome screen%2$s.', 'lsx'), |
|
64 | + '<a href="' . esc_url(admin_url('themes.php?page=lsx-welcome')) . '">', |
|
65 | 65 | '</a>' |
66 | 66 | ); |
67 | 67 | ?> |
68 | 68 | </p> |
69 | - <p><a href="<?php echo esc_url( admin_url( 'themes.php?page=lsx-welcome' ) ); ?>" class="button" style="text-decoration: none;"><?php esc_attr_e( 'Get started with LSX', 'lsx' ); ?></a></p> |
|
69 | + <p><a href="<?php echo esc_url(admin_url('themes.php?page=lsx-welcome')); ?>" class="button" style="text-decoration: none;"><?php esc_attr_e('Get started with LSX', 'lsx'); ?></a></p> |
|
70 | 70 | </div> |
71 | 71 | <?php |
72 | 72 | } |
73 | 73 | |
74 | 74 | endif; |
75 | 75 | |
76 | -if ( ! function_exists( 'lsx_welcome_style' ) ) : |
|
76 | +if ( ! function_exists('lsx_welcome_style')) : |
|
77 | 77 | |
78 | 78 | /** |
79 | 79 | * Load welcome screen css. |
@@ -83,19 +83,19 @@ discard block |
||
83 | 83 | * |
84 | 84 | * @param string $hook_suffix the current page hook suffix. |
85 | 85 | */ |
86 | - function lsx_welcome_style( $hook_suffix ) { |
|
87 | - if ( 'appearance_page_lsx-welcome' === $hook_suffix ) { |
|
88 | - wp_enqueue_style( 'lsx-welcome-screen-mailchimp', '//cdn-images.mailchimp.com/embedcode/classic-10_7.css', array(), LSX_VERSION ); |
|
89 | - wp_enqueue_style( 'lsx-welcome-screen', get_template_directory_uri() . '/assets/css/admin/welcome.css', array( 'lsx-welcome-screen-mailchimp' ), LSX_VERSION ); |
|
90 | - wp_style_add_data( 'lsx-welcome-screen', 'rtl', 'replace' ); |
|
86 | + function lsx_welcome_style($hook_suffix) { |
|
87 | + if ('appearance_page_lsx-welcome' === $hook_suffix) { |
|
88 | + wp_enqueue_style('lsx-welcome-screen-mailchimp', '//cdn-images.mailchimp.com/embedcode/classic-10_7.css', array(), LSX_VERSION); |
|
89 | + wp_enqueue_style('lsx-welcome-screen', get_template_directory_uri() . '/assets/css/admin/welcome.css', array('lsx-welcome-screen-mailchimp'), LSX_VERSION); |
|
90 | + wp_style_add_data('lsx-welcome-screen', 'rtl', 'replace'); |
|
91 | 91 | } |
92 | 92 | } |
93 | 93 | |
94 | 94 | endif; |
95 | 95 | |
96 | -add_action( 'admin_enqueue_scripts', 'lsx_welcome_style' ); |
|
96 | +add_action('admin_enqueue_scripts', 'lsx_welcome_style'); |
|
97 | 97 | |
98 | -if ( ! function_exists( 'lsx_welcome_register_menu' ) ) : |
|
98 | +if ( ! function_exists('lsx_welcome_register_menu')) : |
|
99 | 99 | |
100 | 100 | /** |
101 | 101 | * Creates the dashboard page. |
@@ -104,14 +104,14 @@ discard block |
||
104 | 104 | * @subpackage welcome-page |
105 | 105 | */ |
106 | 106 | function lsx_welcome_register_menu() { |
107 | - add_theme_page( 'LSX', 'LSX', 'activate_plugins', 'lsx-welcome', 'lsx_welcome_screen' ); |
|
107 | + add_theme_page('LSX', 'LSX', 'activate_plugins', 'lsx-welcome', 'lsx_welcome_screen'); |
|
108 | 108 | } |
109 | 109 | |
110 | 110 | endif; |
111 | 111 | |
112 | -add_action( 'admin_menu', 'lsx_welcome_register_menu' ); |
|
112 | +add_action('admin_menu', 'lsx_welcome_register_menu'); |
|
113 | 113 | |
114 | -if ( ! function_exists( 'lsx_welcome_screen' ) ) : |
|
114 | +if ( ! function_exists('lsx_welcome_screen')) : |
|
115 | 115 | |
116 | 116 | /** |
117 | 117 | * The welcome screen. |
@@ -120,9 +120,9 @@ discard block |
||
120 | 120 | * @subpackage welcome-page |
121 | 121 | */ |
122 | 122 | function lsx_welcome_screen() { |
123 | - require_once( ABSPATH . 'wp-load.php' ); |
|
124 | - require_once( ABSPATH . 'wp-admin/admin.php' ); |
|
125 | - require_once( ABSPATH . 'wp-admin/admin-header.php' ); |
|
123 | + require_once(ABSPATH . 'wp-load.php'); |
|
124 | + require_once(ABSPATH . 'wp-admin/admin.php'); |
|
125 | + require_once(ABSPATH . 'wp-admin/admin-header.php'); |
|
126 | 126 | ?> |
127 | 127 | <div class="wrap about-wrap"> |
128 | 128 | <?php |
@@ -133,14 +133,14 @@ discard block |
||
133 | 133 | * @hooked lsx_welcome_enhance - 20 |
134 | 134 | * @hooked lsx_welcome_footer - 30 |
135 | 135 | */ |
136 | - do_action( 'lsx_welcome' ); ?> |
|
136 | + do_action('lsx_welcome'); ?> |
|
137 | 137 | </div> |
138 | 138 | <?php |
139 | 139 | } |
140 | 140 | |
141 | 141 | endif; |
142 | 142 | |
143 | -if ( ! function_exists( 'lsx_welcome_header' ) ) : |
|
143 | +if ( ! function_exists('lsx_welcome_header')) : |
|
144 | 144 | |
145 | 145 | /** |
146 | 146 | * Welcome screen intro. |
@@ -149,14 +149,14 @@ discard block |
||
149 | 149 | * @subpackage welcome-page |
150 | 150 | */ |
151 | 151 | function lsx_welcome_header() { |
152 | - require_once( get_template_directory() . '/includes/admin/welcome-screen/component-header.php' ); |
|
152 | + require_once(get_template_directory() . '/includes/admin/welcome-screen/component-header.php'); |
|
153 | 153 | } |
154 | 154 | |
155 | 155 | endif; |
156 | 156 | |
157 | -add_action( 'lsx_welcome', 'lsx_welcome_header', 10 ); |
|
157 | +add_action('lsx_welcome', 'lsx_welcome_header', 10); |
|
158 | 158 | |
159 | -if ( ! function_exists( 'lsx_welcome_enhance' ) ) : |
|
159 | +if ( ! function_exists('lsx_welcome_enhance')) : |
|
160 | 160 | |
161 | 161 | /** |
162 | 162 | * Welcome screen enhance section. |
@@ -165,14 +165,14 @@ discard block |
||
165 | 165 | * @subpackage welcome-page |
166 | 166 | */ |
167 | 167 | function lsx_welcome_enhance() { |
168 | - require_once( get_template_directory() . '/includes/admin/welcome-screen/component-enhance.php' ); |
|
168 | + require_once(get_template_directory() . '/includes/admin/welcome-screen/component-enhance.php'); |
|
169 | 169 | } |
170 | 170 | |
171 | 171 | endif; |
172 | 172 | |
173 | -add_action( 'lsx_welcome', 'lsx_welcome_enhance', 20 ); |
|
173 | +add_action('lsx_welcome', 'lsx_welcome_enhance', 20); |
|
174 | 174 | |
175 | -if ( ! function_exists( 'lsx_welcome_footer' ) ) : |
|
175 | +if ( ! function_exists('lsx_welcome_footer')) : |
|
176 | 176 | |
177 | 177 | /** |
178 | 178 | * Welcome screen contribute section. |
@@ -181,9 +181,9 @@ discard block |
||
181 | 181 | * @subpackage welcome-page |
182 | 182 | */ |
183 | 183 | function lsx_welcome_footer() { |
184 | - require_once( get_template_directory() . '/includes/admin/welcome-screen/component-footer.php' ); |
|
184 | + require_once(get_template_directory() . '/includes/admin/welcome-screen/component-footer.php'); |
|
185 | 185 | } |
186 | 186 | |
187 | 187 | endif; |
188 | 188 | |
189 | -add_action( 'lsx_welcome', 'lsx_welcome_footer', 30 ); |
|
189 | +add_action('lsx_welcome', 'lsx_welcome_footer', 30); |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage scripts |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! function_exists( 'lsx_scripts' ) ) : |
|
13 | +if ( ! function_exists('lsx_scripts')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Enqueue scripts, fonts and styles. |
@@ -26,9 +26,9 @@ discard block |
||
26 | 26 | |
27 | 27 | endif; |
28 | 28 | |
29 | -add_action( 'wp_enqueue_scripts', 'lsx_scripts' ); |
|
29 | +add_action('wp_enqueue_scripts', 'lsx_scripts'); |
|
30 | 30 | |
31 | -if ( ! function_exists( 'lsx_admin_scripts' ) ) : |
|
31 | +if ( ! function_exists('lsx_admin_scripts')) : |
|
32 | 32 | |
33 | 33 | /** |
34 | 34 | * Enqueue scripts (admin). |
@@ -37,14 +37,14 @@ discard block |
||
37 | 37 | * @subpackage scripts |
38 | 38 | */ |
39 | 39 | function lsx_admin_scripts() { |
40 | - wp_enqueue_script( 'lsx-admin', get_template_directory_uri() . '/assets/js/admin/lsx-admin.js', array( 'jquery' ), LSX_VERSION, true ); |
|
40 | + wp_enqueue_script('lsx-admin', get_template_directory_uri() . '/assets/js/admin/lsx-admin.js', array('jquery'), LSX_VERSION, true); |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | endif; |
44 | 44 | |
45 | -add_action( 'admin_enqueue_scripts', 'lsx_admin_scripts' ); |
|
45 | +add_action('admin_enqueue_scripts', 'lsx_admin_scripts'); |
|
46 | 46 | |
47 | -if ( ! function_exists( 'lsx_scripts_add_styles' ) ) : |
|
47 | +if ( ! function_exists('lsx_scripts_add_styles')) : |
|
48 | 48 | |
49 | 49 | /** |
50 | 50 | * Enqueue styles. |
@@ -53,23 +53,23 @@ discard block |
||
53 | 53 | * @subpackage scripts |
54 | 54 | */ |
55 | 55 | function lsx_scripts_add_styles() { |
56 | - wp_register_style( 'fontawesome', get_template_directory_uri() . '/assets/css/vendor/font-awesome.css', array(), LSX_VERSION ); |
|
57 | - wp_style_add_data( 'fontawesome', 'rtl', 'replace' ); |
|
56 | + wp_register_style('fontawesome', get_template_directory_uri() . '/assets/css/vendor/font-awesome.css', array(), LSX_VERSION); |
|
57 | + wp_style_add_data('fontawesome', 'rtl', 'replace'); |
|
58 | 58 | |
59 | - wp_register_style( 'bootstrap', get_template_directory_uri() . '/assets/css/vendor/bootstrap.css', array(), LSX_VERSION ); |
|
60 | - wp_style_add_data( 'bootstrap', 'rtl', 'replace' ); |
|
59 | + wp_register_style('bootstrap', get_template_directory_uri() . '/assets/css/vendor/bootstrap.css', array(), LSX_VERSION); |
|
60 | + wp_style_add_data('bootstrap', 'rtl', 'replace'); |
|
61 | 61 | |
62 | - wp_enqueue_style( 'slick', get_template_directory_uri() . '/assets/css/vendor/slick.css', array(), LSX_VERSION, null ); |
|
63 | - wp_enqueue_style( 'slick-lightbox', get_template_directory_uri() . '/assets/css/vendor/slick-lightbox.css', array( 'slick' ), LSX_VERSION, null ); |
|
62 | + wp_enqueue_style('slick', get_template_directory_uri() . '/assets/css/vendor/slick.css', array(), LSX_VERSION, null); |
|
63 | + wp_enqueue_style('slick-lightbox', get_template_directory_uri() . '/assets/css/vendor/slick-lightbox.css', array('slick'), LSX_VERSION, null); |
|
64 | 64 | |
65 | - wp_enqueue_style( 'lsx_main_style', get_template_directory_uri() . '/style.css', array(), LSX_VERSION ); |
|
66 | - wp_enqueue_style( 'lsx_main', get_template_directory_uri() . '/assets/css/lsx.css', array( 'lsx_main_style', 'fontawesome', 'bootstrap', 'slick', 'slick-lightbox' ), LSX_VERSION ); |
|
67 | - wp_style_add_data( 'lsx_main', 'rtl', 'replace' ); |
|
65 | + wp_enqueue_style('lsx_main_style', get_template_directory_uri() . '/style.css', array(), LSX_VERSION); |
|
66 | + wp_enqueue_style('lsx_main', get_template_directory_uri() . '/assets/css/lsx.css', array('lsx_main_style', 'fontawesome', 'bootstrap', 'slick', 'slick-lightbox'), LSX_VERSION); |
|
67 | + wp_style_add_data('lsx_main', 'rtl', 'replace'); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | endif; |
71 | 71 | |
72 | -if ( ! function_exists( 'lsx_scripts_add_fonts' ) ) : |
|
72 | +if ( ! function_exists('lsx_scripts_add_fonts')) : |
|
73 | 73 | |
74 | 74 | /** |
75 | 75 | * Enqueue fonts. |
@@ -80,36 +80,36 @@ discard block |
||
80 | 80 | function lsx_scripts_add_fonts() { |
81 | 81 | // Font data (full JSON) |
82 | 82 | |
83 | - $data_fonts = get_transient( 'lsx_font_data' ); |
|
83 | + $data_fonts = get_transient('lsx_font_data'); |
|
84 | 84 | |
85 | - if ( is_customize_preview() || false === $data_fonts ) { |
|
85 | + if (is_customize_preview() || false === $data_fonts) { |
|
86 | 86 | $data_fonts_file = get_template_directory() . '/assets/jsons/lsx-fonts.json'; |
87 | - $data_fonts = lsx_file_get_contents( $data_fonts_file ); |
|
88 | - $data_fonts = apply_filters( 'lsx_fonts_json', $data_fonts ); |
|
87 | + $data_fonts = lsx_file_get_contents($data_fonts_file); |
|
88 | + $data_fonts = apply_filters('lsx_fonts_json', $data_fonts); |
|
89 | 89 | } |
90 | 90 | |
91 | - if ( ! empty( $data_fonts ) ) { |
|
92 | - set_transient( 'lsx_font_data', $data_fonts, ( 5 * 60 ) ); |
|
91 | + if ( ! empty($data_fonts)) { |
|
92 | + set_transient('lsx_font_data', $data_fonts, (5 * 60)); |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | $data_fonts = '{' . $data_fonts . '}'; |
96 | - $data_fonts = json_decode( $data_fonts, true ); |
|
96 | + $data_fonts = json_decode($data_fonts, true); |
|
97 | 97 | |
98 | 98 | // Font data (saved) |
99 | 99 | |
100 | - $font_saved = get_theme_mod( 'lsx_font', 'lora_noto_sans' ); |
|
100 | + $font_saved = get_theme_mod('lsx_font', 'lora_noto_sans'); |
|
101 | 101 | |
102 | - if ( isset( $data_fonts[ $font_saved ] ) ) { |
|
103 | - $font = $data_fonts[ $font_saved ]; |
|
102 | + if (isset($data_fonts[$font_saved])) { |
|
103 | + $font = $data_fonts[$font_saved]; |
|
104 | 104 | } else { |
105 | 105 | $font = $data_fonts['lora_noto_sans']; |
106 | 106 | } |
107 | 107 | |
108 | 108 | // Font declarations |
109 | 109 | |
110 | - $font_declarations = get_transient( 'lsx_font_declarations' ); |
|
110 | + $font_declarations = get_transient('lsx_font_declarations'); |
|
111 | 111 | |
112 | - if ( is_customize_preview() || false === $font_declarations ) { |
|
112 | + if (is_customize_preview() || false === $font_declarations) { |
|
113 | 113 | $font_declarations = array( |
114 | 114 | 'header' => '', |
115 | 115 | 'body' => '', |
@@ -121,93 +121,93 @@ discard block |
||
121 | 121 | ); |
122 | 122 | |
123 | 123 | $font_declaration_placeholder_file = get_template_directory() . '/assets/css/lsx-fonts-placeholder.css'; |
124 | - $font_declaration_placeholder = lsx_file_get_contents( $font_declaration_placeholder_file ); |
|
124 | + $font_declaration_placeholder = lsx_file_get_contents($font_declaration_placeholder_file); |
|
125 | 125 | |
126 | - foreach ( $fonts_to_load as $font_to_load_key => $font_to_load ) { |
|
126 | + foreach ($fonts_to_load as $font_to_load_key => $font_to_load) { |
|
127 | 127 | $font_title = $font_to_load['title']; |
128 | - $font_title_sanitize = sanitize_title( $font_title ); |
|
128 | + $font_title_sanitize = sanitize_title($font_title); |
|
129 | 129 | |
130 | - $font_data = explode( ':', $font_to_load['location'] ); |
|
131 | - $font_weights = explode( ',', $font_data[1] ); |
|
130 | + $font_data = explode(':', $font_to_load['location']); |
|
131 | + $font_weights = explode(',', $font_data[1]); |
|
132 | 132 | |
133 | - foreach ( $font_weights as $font_weight_key => $font_weight ) { |
|
133 | + foreach ($font_weights as $font_weight_key => $font_weight) { |
|
134 | 134 | $font_style = 'normal'; |
135 | 135 | |
136 | - if ( preg_match( '/^[0-9]+i$/', $font_weight ) ) { |
|
136 | + if (preg_match('/^[0-9]+i$/', $font_weight)) { |
|
137 | 137 | $font_style = 'italic'; |
138 | - $font_weight = preg_replace( '/^([0-9]+)(i)$/', '$1', $font_weight ); |
|
138 | + $font_weight = preg_replace('/^([0-9]+)(i)$/', '$1', $font_weight); |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | $font_src = get_template_directory() . '/assets/fonts/' . $font_title_sanitize . '-' . $font_weight . '-' . $font_style; |
142 | - $font_src = apply_filters( 'lsx_fonts_src', $font_src, $font_title_sanitize, $font_weight, $font_style ); |
|
142 | + $font_src = apply_filters('lsx_fonts_src', $font_src, $font_title_sanitize, $font_weight, $font_style); |
|
143 | 143 | |
144 | 144 | $font_src_uri = get_template_directory_uri() . '/assets/fonts/' . $font_title_sanitize . '-' . $font_weight . '-' . $font_style; |
145 | - $font_src_uri = apply_filters( 'lsx_fonts_src_uri', $font_src_uri, $font_title_sanitize, $font_weight, $font_style ); |
|
145 | + $font_src_uri = apply_filters('lsx_fonts_src_uri', $font_src_uri, $font_title_sanitize, $font_weight, $font_style); |
|
146 | 146 | |
147 | - if ( file_exists( $font_src . '.ttf' ) && file_exists( $font_src . '.woff' ) ) { |
|
147 | + if (file_exists($font_src . '.ttf') && file_exists($font_src . '.woff')) { |
|
148 | 148 | $font_declaration = $font_declaration_placeholder; |
149 | - $font_declaration = str_replace( '[font-family]', '\'' . $font_title . '\'', $font_declaration ); |
|
150 | - $font_declaration = str_replace( '[font-style]', $font_style, $font_declaration ); |
|
151 | - $font_declaration = str_replace( '[font-weight]', $font_weight, $font_declaration ); |
|
152 | - $font_declaration = str_replace( '[font-src]', $font_src_uri, $font_declaration ); |
|
153 | - $font_declaration = preg_replace( '/(\/\*# ).+( \*\/)/', '', $font_declaration ); |
|
149 | + $font_declaration = str_replace('[font-family]', '\'' . $font_title . '\'', $font_declaration); |
|
150 | + $font_declaration = str_replace('[font-style]', $font_style, $font_declaration); |
|
151 | + $font_declaration = str_replace('[font-weight]', $font_weight, $font_declaration); |
|
152 | + $font_declaration = str_replace('[font-src]', $font_src_uri, $font_declaration); |
|
153 | + $font_declaration = preg_replace('/(\/\*# ).+( \*\/)/', '', $font_declaration); |
|
154 | 154 | |
155 | - $font_declarations[ $font_to_load_key ] .= $font_declaration; |
|
155 | + $font_declarations[$font_to_load_key] .= $font_declaration; |
|
156 | 156 | } |
157 | 157 | } |
158 | 158 | } |
159 | 159 | |
160 | - set_transient( 'lsx_font_declarations', $font_declarations, ( 24 * 60 * 60 ) ); |
|
160 | + set_transient('lsx_font_declarations', $font_declarations, (24 * 60 * 60)); |
|
161 | 161 | } |
162 | 162 | |
163 | 163 | $http_var = 'http'; |
164 | 164 | |
165 | - if ( is_ssl() ) { |
|
165 | + if (is_ssl()) { |
|
166 | 166 | $http_var .= 's'; |
167 | 167 | } |
168 | 168 | |
169 | - if ( ! empty( $font_declarations ) && is_array( $font_declarations ) ) { |
|
170 | - foreach ( $font_declarations as $font_declaration_key => $font_declaration ) { |
|
171 | - if ( ! empty( $font_declaration ) ) { |
|
172 | - wp_add_inline_style( 'lsx_main', $font_declaration ); |
|
169 | + if ( ! empty($font_declarations) && is_array($font_declarations)) { |
|
170 | + foreach ($font_declarations as $font_declaration_key => $font_declaration) { |
|
171 | + if ( ! empty($font_declaration)) { |
|
172 | + wp_add_inline_style('lsx_main', $font_declaration); |
|
173 | 173 | } else { |
174 | - wp_enqueue_style( 'lsx-' . $font_declaration_key . '-font', esc_url( $http_var . '://fonts.googleapis.com/css?family=' . $font[ $font_declaration_key ]['location'] ) ); |
|
174 | + wp_enqueue_style('lsx-' . $font_declaration_key . '-font', esc_url($http_var . '://fonts.googleapis.com/css?family=' . $font[$font_declaration_key]['location'])); |
|
175 | 175 | } |
176 | 176 | } |
177 | 177 | } else { |
178 | - wp_enqueue_style( 'lsx-header-font', esc_url( $http_var . '://fonts.googleapis.com/css?family=' . $font['header']['location'] ) ); |
|
179 | - wp_enqueue_style( 'lsx-body-font', esc_url( $http_var . '://fonts.googleapis.com/css?family=' . $font['body']['location'] ) ); |
|
178 | + wp_enqueue_style('lsx-header-font', esc_url($http_var . '://fonts.googleapis.com/css?family=' . $font['header']['location'])); |
|
179 | + wp_enqueue_style('lsx-body-font', esc_url($http_var . '://fonts.googleapis.com/css?family=' . $font['body']['location'])); |
|
180 | 180 | } |
181 | 181 | |
182 | 182 | // Font styles |
183 | 183 | |
184 | - $font_styles = get_transient( 'lsx_font_styles' ); |
|
184 | + $font_styles = get_transient('lsx_font_styles'); |
|
185 | 185 | |
186 | - if ( is_customize_preview() || false === $font_styles ) { |
|
186 | + if (is_customize_preview() || false === $font_styles) { |
|
187 | 187 | $font_styles = ''; |
188 | 188 | |
189 | 189 | $css_fonts_file = get_template_directory() . '/assets/css/lsx-fonts.css'; |
190 | - $css_fonts = lsx_file_get_contents( $css_fonts_file ); |
|
191 | - $css_fonts = apply_filters( 'lsx_fonts_css', $css_fonts ); |
|
190 | + $css_fonts = lsx_file_get_contents($css_fonts_file); |
|
191 | + $css_fonts = apply_filters('lsx_fonts_css', $css_fonts); |
|
192 | 192 | |
193 | - if ( ! empty( $css_fonts ) ) { |
|
193 | + if ( ! empty($css_fonts)) { |
|
194 | 194 | $font_styles = $css_fonts; |
195 | - $font_styles = str_replace( '[font-family-headings]', $font['header']['cssDeclaration'], $font_styles ); |
|
196 | - $font_styles = str_replace( '[font-family-body]', $font['body']['cssDeclaration'], $font_styles ); |
|
197 | - $font_styles = preg_replace( '/(\/\*# ).+( \*\/)/', '', $font_styles ); |
|
195 | + $font_styles = str_replace('[font-family-headings]', $font['header']['cssDeclaration'], $font_styles); |
|
196 | + $font_styles = str_replace('[font-family-body]', $font['body']['cssDeclaration'], $font_styles); |
|
197 | + $font_styles = preg_replace('/(\/\*# ).+( \*\/)/', '', $font_styles); |
|
198 | 198 | } |
199 | 199 | |
200 | - set_transient( 'lsx_font_styles', $font_styles, ( 24 * 60 * 60 ) ); |
|
200 | + set_transient('lsx_font_styles', $font_styles, (24 * 60 * 60)); |
|
201 | 201 | } |
202 | 202 | |
203 | - if ( ! empty( $font_styles ) ) { |
|
204 | - wp_add_inline_style( 'lsx_main', $font_styles ); |
|
203 | + if ( ! empty($font_styles)) { |
|
204 | + wp_add_inline_style('lsx_main', $font_styles); |
|
205 | 205 | } |
206 | 206 | } |
207 | 207 | |
208 | 208 | endif; |
209 | 209 | |
210 | -if ( ! function_exists( 'lsx_scripts_add_scripts' ) ) : |
|
210 | +if ( ! function_exists('lsx_scripts_add_scripts')) : |
|
211 | 211 | |
212 | 212 | /** |
213 | 213 | * Enqueue scripts. |
@@ -216,31 +216,31 @@ discard block |
||
216 | 216 | * @subpackage scripts |
217 | 217 | */ |
218 | 218 | function lsx_scripts_add_scripts() { |
219 | - if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { |
|
220 | - wp_enqueue_script( 'comment-reply' ); |
|
219 | + if (is_singular() && comments_open() && get_option('thread_comments')) { |
|
220 | + wp_enqueue_script('comment-reply'); |
|
221 | 221 | } |
222 | 222 | |
223 | - wp_enqueue_script( 'platform', get_template_directory_uri() . '/assets/js/vendor/platform.min.js', array(), LSX_VERSION, false ); |
|
224 | - wp_enqueue_script( 'bootstrap', get_template_directory_uri() . '/assets/js/vendor/bootstrap.min.js', array( 'jquery' ), LSX_VERSION, true ); |
|
223 | + wp_enqueue_script('platform', get_template_directory_uri() . '/assets/js/vendor/platform.min.js', array(), LSX_VERSION, false); |
|
224 | + wp_enqueue_script('bootstrap', get_template_directory_uri() . '/assets/js/vendor/bootstrap.min.js', array('jquery'), LSX_VERSION, true); |
|
225 | 225 | |
226 | - wp_enqueue_script( 'imagesLoaded', get_template_directory_uri() . '/assets/js/vendor/imagesloaded.pkgd.min.js', array( 'masonry' ), LSX_VERSION, true ); |
|
227 | - wp_enqueue_script( 'scrolltofixed', get_template_directory_uri() . '/assets/js/vendor/jquery-scrolltofixed-min.js', array( 'jquery' ), LSX_VERSION, true ); |
|
228 | - wp_enqueue_script( 'slick', get_template_directory_uri() . '/assets/js/vendor/slick.min.js', array( 'jquery' ), LSX_VERSION, true ); |
|
229 | - wp_enqueue_script( 'slick-lightbox', get_template_directory_uri() . '/assets/js/vendor/slick-lightbox.min.js', array( 'jquery', 'slick' ), LSX_VERSION, true ); |
|
230 | - wp_enqueue_script( 'picturefill', get_template_directory_uri() . '/assets/js/vendor/picturefill.min.js', array(), LSX_VERSION, true ); |
|
226 | + wp_enqueue_script('imagesLoaded', get_template_directory_uri() . '/assets/js/vendor/imagesloaded.pkgd.min.js', array('masonry'), LSX_VERSION, true); |
|
227 | + wp_enqueue_script('scrolltofixed', get_template_directory_uri() . '/assets/js/vendor/jquery-scrolltofixed-min.js', array('jquery'), LSX_VERSION, true); |
|
228 | + wp_enqueue_script('slick', get_template_directory_uri() . '/assets/js/vendor/slick.min.js', array('jquery'), LSX_VERSION, true); |
|
229 | + wp_enqueue_script('slick-lightbox', get_template_directory_uri() . '/assets/js/vendor/slick-lightbox.min.js', array('jquery', 'slick'), LSX_VERSION, true); |
|
230 | + wp_enqueue_script('picturefill', get_template_directory_uri() . '/assets/js/vendor/picturefill.min.js', array(), LSX_VERSION, true); |
|
231 | 231 | |
232 | - wp_enqueue_script( 'lsx_script', get_template_directory_uri() . '/assets/js/lsx.min.js', array( 'jquery', 'platform', 'bootstrap', 'masonry', 'imagesLoaded', 'scrolltofixed', 'slick', 'slick-lightbox', 'picturefill' ), LSX_VERSION, true ); |
|
232 | + wp_enqueue_script('lsx_script', get_template_directory_uri() . '/assets/js/lsx.min.js', array('jquery', 'platform', 'bootstrap', 'masonry', 'imagesLoaded', 'scrolltofixed', 'slick', 'slick-lightbox', 'picturefill'), LSX_VERSION, true); |
|
233 | 233 | |
234 | 234 | $param_array = array( |
235 | - 'columns' => apply_filters( 'lsx_archive_column_number', 3 ), |
|
235 | + 'columns' => apply_filters('lsx_archive_column_number', 3), |
|
236 | 236 | ); |
237 | 237 | |
238 | - wp_localize_script( 'lsx_script', 'lsx_params', $param_array ); |
|
238 | + wp_localize_script('lsx_script', 'lsx_params', $param_array); |
|
239 | 239 | } |
240 | 240 | |
241 | 241 | endif; |
242 | 242 | |
243 | -if ( ! function_exists( 'lsx_scripts_child_theme' ) ) : |
|
243 | +if ( ! function_exists('lsx_scripts_child_theme')) : |
|
244 | 244 | |
245 | 245 | /** |
246 | 246 | * Enqueue scripts and styles (for child theme). |
@@ -249,12 +249,12 @@ discard block |
||
249 | 249 | * @subpackage scripts |
250 | 250 | */ |
251 | 251 | function lsx_scripts_child_theme() { |
252 | - if ( is_child_theme() && file_exists( get_stylesheet_directory() . '/assets/css/custom.css' ) ) { |
|
253 | - wp_enqueue_style( 'child-css', get_stylesheet_directory_uri() . '/assets/css/custom.css', array( 'lsx_main' ), LSX_VERSION ); |
|
254 | - wp_style_add_data( 'child-css', 'rtl', 'replace' ); |
|
252 | + if (is_child_theme() && file_exists(get_stylesheet_directory() . '/assets/css/custom.css')) { |
|
253 | + wp_enqueue_style('child-css', get_stylesheet_directory_uri() . '/assets/css/custom.css', array('lsx_main'), LSX_VERSION); |
|
254 | + wp_style_add_data('child-css', 'rtl', 'replace'); |
|
255 | 255 | } |
256 | 256 | } |
257 | 257 | |
258 | 258 | endif; |
259 | 259 | |
260 | -add_action( 'wp_enqueue_scripts', 'lsx_scripts_child_theme', 1999 ); |
|
260 | +add_action('wp_enqueue_scripts', 'lsx_scripts_child_theme', 1999); |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage layout |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! function_exists( 'lsx_layout_selector' ) ) : |
|
13 | +if ( ! function_exists('lsx_layout_selector')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Layout selector. |
@@ -18,14 +18,14 @@ discard block |
||
18 | 18 | * @package lsx |
19 | 19 | * @subpackage layout |
20 | 20 | */ |
21 | - function lsx_layout_selector( $class, $area = 'site' ) { |
|
21 | + function lsx_layout_selector($class, $area = 'site') { |
|
22 | 22 | $return_class = ''; |
23 | - $layout = get_theme_mod( 'lsx_layout', '2cr' ); |
|
24 | - $layout = apply_filters( 'lsx_layout', $layout ); |
|
23 | + $layout = get_theme_mod('lsx_layout', '2cr'); |
|
24 | + $layout = apply_filters('lsx_layout', $layout); |
|
25 | 25 | $default_size = 'sm'; |
26 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
26 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
27 | 27 | |
28 | - switch ( $layout ) { |
|
28 | + switch ($layout) { |
|
29 | 29 | case '1c': |
30 | 30 | $main_class = 'col-' . $size . '-12'; |
31 | 31 | $sidebar_class = 'col-' . $size . '-12'; |
@@ -44,12 +44,12 @@ discard block |
||
44 | 44 | break; |
45 | 45 | } |
46 | 46 | |
47 | - if ( 'main' === $class ) { |
|
48 | - $return_class = apply_filters( 'lsx_layout_selector', $main_class, $class, $layout, $size ); |
|
47 | + if ('main' === $class) { |
|
48 | + $return_class = apply_filters('lsx_layout_selector', $main_class, $class, $layout, $size); |
|
49 | 49 | } |
50 | 50 | |
51 | - if ( 'sidebar' === $class ) { |
|
52 | - $return_class = apply_filters( 'lsx_layout_selector', $sidebar_class, $class, $layout, $size ); |
|
51 | + if ('sidebar' === $class) { |
|
52 | + $return_class = apply_filters('lsx_layout_selector', $sidebar_class, $class, $layout, $size); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | return $return_class; |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | |
58 | 58 | endif; |
59 | 59 | |
60 | -if ( ! function_exists( 'lsx_main_class' ) ) : |
|
60 | +if ( ! function_exists('lsx_main_class')) : |
|
61 | 61 | |
62 | 62 | /** |
63 | 63 | * .main classes. |
@@ -66,12 +66,12 @@ discard block |
||
66 | 66 | * @subpackage layout |
67 | 67 | */ |
68 | 68 | function lsx_main_class() { |
69 | - return lsx_layout_selector( 'main' ); |
|
69 | + return lsx_layout_selector('main'); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | endif; |
73 | 73 | |
74 | -if ( ! function_exists( 'lsx_sidebar_class' ) ) : |
|
74 | +if ( ! function_exists('lsx_sidebar_class')) : |
|
75 | 75 | |
76 | 76 | /** |
77 | 77 | * .sidebar classes. |
@@ -80,12 +80,12 @@ discard block |
||
80 | 80 | * @subpackage layout |
81 | 81 | */ |
82 | 82 | function lsx_sidebar_class() { |
83 | - return lsx_layout_selector( 'sidebar' ); |
|
83 | + return lsx_layout_selector('sidebar'); |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | endif; |
87 | 87 | |
88 | -if ( ! function_exists( 'lsx_header_classes' ) ) : |
|
88 | +if ( ! function_exists('lsx_header_classes')) : |
|
89 | 89 | |
90 | 90 | /** |
91 | 91 | * Output the classes for the header. |
@@ -93,19 +93,19 @@ discard block |
||
93 | 93 | * @package lsx |
94 | 94 | * @subpackage layout |
95 | 95 | */ |
96 | - function lsx_header_classes( $additional = false ) { |
|
96 | + function lsx_header_classes($additional = false) { |
|
97 | 97 | $classes = 'banner navbar navbar-default'; |
98 | 98 | |
99 | - if ( false !== $additional ) { |
|
99 | + if (false !== $additional) { |
|
100 | 100 | $classes .= ' ' . $additional; |
101 | 101 | } |
102 | 102 | |
103 | - echo esc_attr( $classes ); |
|
103 | + echo esc_attr($classes); |
|
104 | 104 | } |
105 | 105 | |
106 | 106 | endif; |
107 | 107 | |
108 | -if ( ! function_exists( 'lsx_top_menu_classes' ) ) : |
|
108 | +if ( ! function_exists('lsx_top_menu_classes')) : |
|
109 | 109 | |
110 | 110 | /** |
111 | 111 | * Output the classes for the top-menu. |
@@ -113,19 +113,19 @@ discard block |
||
113 | 113 | * @package lsx |
114 | 114 | * @subpackage layout |
115 | 115 | */ |
116 | - function lsx_top_menu_classes( $additional = false ) { |
|
116 | + function lsx_top_menu_classes($additional = false) { |
|
117 | 117 | $classes = 'top-menu-default'; |
118 | 118 | |
119 | - if ( false !== $additional ) { |
|
119 | + if (false !== $additional) { |
|
120 | 120 | $classes .= ' ' . $additional; |
121 | 121 | } |
122 | 122 | |
123 | - echo esc_attr( $classes ); |
|
123 | + echo esc_attr($classes); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | endif; |
127 | 127 | |
128 | -if ( ! function_exists( 'lsx_add_footer_sidebar_area' ) ) : |
|
128 | +if ( ! function_exists('lsx_add_footer_sidebar_area')) : |
|
129 | 129 | |
130 | 130 | /** |
131 | 131 | * Output the Footer CTA and/pr Footer Widgets. |
@@ -134,34 +134,34 @@ discard block |
||
134 | 134 | * @subpackage layout |
135 | 135 | */ |
136 | 136 | function lsx_add_footer_sidebar_area() { |
137 | - if ( is_active_sidebar( 'sidebar-footer-cta' ) ) : ?> |
|
137 | + if (is_active_sidebar('sidebar-footer-cta')) : ?> |
|
138 | 138 | <div id="footer-cta"> |
139 | 139 | <div class="container"> |
140 | 140 | <div class="lsx-full-width"> |
141 | 141 | <div class="lsx-hero-unit"> |
142 | - <?php dynamic_sidebar( 'sidebar-footer-cta' ); ?> |
|
142 | + <?php dynamic_sidebar('sidebar-footer-cta'); ?> |
|
143 | 143 | </div> |
144 | 144 | </div> |
145 | 145 | </div> |
146 | 146 | </div> |
147 | 147 | <?php endif; ?> |
148 | 148 | |
149 | - <?php if ( is_active_sidebar( 'sidebar-footer' ) ) : ?> |
|
149 | + <?php if (is_active_sidebar('sidebar-footer')) : ?> |
|
150 | 150 | <div id="footer-widgets"> |
151 | 151 | <div class="container"> |
152 | 152 | <div class="row"> |
153 | - <?php dynamic_sidebar( 'sidebar-footer' ); ?> |
|
153 | + <?php dynamic_sidebar('sidebar-footer'); ?> |
|
154 | 154 | </div> |
155 | 155 | </div> |
156 | 156 | </div> |
157 | 157 | <?php endif; |
158 | 158 | } |
159 | 159 | |
160 | - add_action( 'lsx_footer_before', 'lsx_add_footer_sidebar_area' ); |
|
160 | + add_action('lsx_footer_before', 'lsx_add_footer_sidebar_area'); |
|
161 | 161 | |
162 | 162 | endif; |
163 | 163 | |
164 | -if ( ! function_exists( 'lsx_global_header' ) ) : |
|
164 | +if ( ! function_exists('lsx_global_header')) : |
|
165 | 165 | |
166 | 166 | /** |
167 | 167 | * Displays the global header. |
@@ -174,21 +174,21 @@ discard block |
||
174 | 174 | // return; |
175 | 175 | // } |
176 | 176 | |
177 | - $show_on_front = get_option( 'show_on_front' ); |
|
177 | + $show_on_front = get_option('show_on_front'); |
|
178 | 178 | $queried_object = get_queried_object(); |
179 | 179 | $default_size = 'sm'; |
180 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
180 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
181 | 181 | |
182 | - if ( true === apply_filters( 'lsx_global_header_disable', false ) ) : |
|
182 | + if (true === apply_filters('lsx_global_header_disable', false)) : |
|
183 | 183 | // Display only the breadcrumbs |
184 | 184 | ?> |
185 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
185 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
186 | 186 | <?php lsx_global_header_inner_bottom(); ?> |
187 | 187 | </div> |
188 | 188 | <?php |
189 | - elseif ( is_page() && ( 'page' !== $show_on_front || ! is_front_page() ) ) : |
|
189 | + elseif (is_page() && ('page' !== $show_on_front || ! is_front_page())) : |
|
190 | 190 | ?> |
191 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
191 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
192 | 192 | <header class="archive-header"> |
193 | 193 | <h1 class="archive-title"><?php the_title(); ?></h1> |
194 | 194 | </header> |
@@ -196,9 +196,9 @@ discard block |
||
196 | 196 | <?php lsx_global_header_inner_bottom(); ?> |
197 | 197 | </div> |
198 | 198 | <?php |
199 | - elseif ( is_single() && ! is_singular( 'post' ) ) : |
|
199 | + elseif (is_single() && ! is_singular('post')) : |
|
200 | 200 | ?> |
201 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
201 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
202 | 202 | <header class="archive-header"> |
203 | 203 | <h1 class="archive-title"><?php the_title(); ?></h1> |
204 | 204 | </header> |
@@ -206,15 +206,15 @@ discard block |
||
206 | 206 | <?php lsx_global_header_inner_bottom(); ?> |
207 | 207 | </div> |
208 | 208 | <?php |
209 | - elseif ( is_search() ) : |
|
209 | + elseif (is_search()) : |
|
210 | 210 | ?> |
211 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
211 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
212 | 212 | <header class="archive-header"> |
213 | 213 | <h1 class="archive-title"> |
214 | 214 | <?php |
215 | 215 | printf( |
216 | 216 | /* Translators: %s: search term/query */ |
217 | - esc_html__( 'Search Results for: %s', 'lsx' ), |
|
217 | + esc_html__('Search Results for: %s', 'lsx'), |
|
218 | 218 | '<span>' . get_search_query() . '</span>' |
219 | 219 | ); |
220 | 220 | ?> |
@@ -224,12 +224,12 @@ discard block |
||
224 | 224 | <?php lsx_global_header_inner_bottom(); ?> |
225 | 225 | </div> |
226 | 226 | <?php |
227 | - elseif ( is_author() ) : |
|
227 | + elseif (is_author()) : |
|
228 | 228 | $author = get_the_author(); |
229 | - $author_avatar = get_avatar( get_the_author_meta( 'ID' ), 256 ); |
|
229 | + $author_avatar = get_avatar(get_the_author_meta('ID'), 256); |
|
230 | 230 | $author_bio = get_the_archive_description(); |
231 | 231 | ?> |
232 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
232 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
233 | 233 | <header class="archive-header"> |
234 | 234 | <h1 class="archive-title"><?php the_archive_title(); ?></h1> |
235 | 235 | </header> |
@@ -237,13 +237,13 @@ discard block |
||
237 | 237 | <?php lsx_global_header_inner_bottom(); ?> |
238 | 238 | </div> |
239 | 239 | <?php |
240 | - elseif ( is_archive() ) : |
|
240 | + elseif (is_archive()) : |
|
241 | 241 | ?> |
242 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
242 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
243 | 243 | <header class="archive-header"> |
244 | 244 | <h1 class="archive-title"> |
245 | - <?php if ( has_post_format() && ! is_category() && ! is_tag() && ! is_date() && ! is_tax( 'post_format' ) ) { ?> |
|
246 | - <?php the_archive_title( esc_html__( 'Type:', 'lsx' ) ); ?> |
|
245 | + <?php if (has_post_format() && ! is_category() && ! is_tag() && ! is_date() && ! is_tax('post_format')) { ?> |
|
246 | + <?php the_archive_title(esc_html__('Type:', 'lsx')); ?> |
|
247 | 247 | <?php } else { ?> |
248 | 248 | <?php the_archive_title(); ?> |
249 | 249 | <?php } ?> |
@@ -255,31 +255,31 @@ discard block |
||
255 | 255 | <?php lsx_global_header_inner_bottom(); ?> |
256 | 256 | </div> |
257 | 257 | <?php |
258 | - elseif ( 'page' === $show_on_front && (int) get_option( 'page_for_posts' ) === $queried_object->ID ) : |
|
258 | + elseif ('page' === $show_on_front && (int) get_option('page_for_posts') === $queried_object->ID) : |
|
259 | 259 | ?> |
260 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
260 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
261 | 261 | <header class="archive-header"> |
262 | - <h1 class="archive-title"><?php esc_html_e( 'Blog', 'lsx' ); ?></h1> |
|
262 | + <h1 class="archive-title"><?php esc_html_e('Blog', 'lsx'); ?></h1> |
|
263 | 263 | </header> |
264 | 264 | |
265 | 265 | <?php lsx_global_header_inner_bottom(); ?> |
266 | 266 | </div> |
267 | 267 | <?php |
268 | - elseif ( ! is_singular( 'post' ) ) : |
|
268 | + elseif ( ! is_singular('post')) : |
|
269 | 269 | // Display only the breadcrumbs |
270 | 270 | ?> |
271 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
271 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
272 | 272 | <?php lsx_global_header_inner_bottom(); ?> |
273 | 273 | </div> |
274 | 274 | <?php |
275 | 275 | endif; |
276 | 276 | } |
277 | 277 | |
278 | - add_action( 'lsx_content_wrap_before', 'lsx_global_header' ); |
|
278 | + add_action('lsx_content_wrap_before', 'lsx_global_header'); |
|
279 | 279 | |
280 | 280 | endif; |
281 | 281 | |
282 | -if ( ! function_exists( 'lsx_author_extra_info' ) ) : |
|
282 | +if ( ! function_exists('lsx_author_extra_info')) : |
|
283 | 283 | |
284 | 284 | /** |
285 | 285 | * Displays the author extra info. |
@@ -289,58 +289,58 @@ discard block |
||
289 | 289 | */ |
290 | 290 | function lsx_author_extra_info() { |
291 | 291 | $default_size = 'sm'; |
292 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
292 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
293 | 293 | |
294 | - if ( is_author() ) : |
|
295 | - $author_id = get_the_author_meta( 'ID' ); |
|
294 | + if (is_author()) : |
|
295 | + $author_id = get_the_author_meta('ID'); |
|
296 | 296 | $author = get_the_author(); |
297 | - $author_avatar = get_avatar( $author_id, 256 ); |
|
297 | + $author_avatar = get_avatar($author_id, 256); |
|
298 | 298 | $author_bio = get_the_archive_description(); |
299 | - $author_url = get_the_author_meta( 'url', $author_id ); |
|
300 | - $author_email = get_the_author_meta( 'email', $author_id ); |
|
301 | - $author_facebook = get_the_author_meta( 'facebook', $author_id ); |
|
302 | - $author_twitter = get_the_author_meta( 'twitter', $author_id ); |
|
303 | - $author_googleplus = get_the_author_meta( 'googleplus', $author_id ); |
|
299 | + $author_url = get_the_author_meta('url', $author_id); |
|
300 | + $author_email = get_the_author_meta('email', $author_id); |
|
301 | + $author_facebook = get_the_author_meta('facebook', $author_id); |
|
302 | + $author_twitter = get_the_author_meta('twitter', $author_id); |
|
303 | + $author_googleplus = get_the_author_meta('googleplus', $author_id); |
|
304 | 304 | ?> |
305 | - <div class="col-<?php echo esc_attr( $size ); ?>-12"> |
|
305 | + <div class="col-<?php echo esc_attr($size); ?>-12"> |
|
306 | 306 | <div class="archive-author-data"> |
307 | - <figure class="archive-author-avatar"><?php echo wp_kses_post( $author_avatar ); ?></figure> |
|
307 | + <figure class="archive-author-avatar"><?php echo wp_kses_post($author_avatar); ?></figure> |
|
308 | 308 | |
309 | - <?php if ( ! empty( $author_url ) || ! empty( $author_email ) || ! empty( $author_facebook ) || ! empty( $author_twitter ) || ! empty( $author_googleplus ) ) : ?> |
|
309 | + <?php if ( ! empty($author_url) || ! empty($author_email) || ! empty($author_facebook) || ! empty($author_twitter) || ! empty($author_googleplus)) : ?> |
|
310 | 310 | <div class="archive-author-social-links"> |
311 | - <?php if ( ! empty( $author_url ) ) : ?> |
|
312 | - <a href="<?php echo esc_url( $author_url ); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-url"><i class="fa fa-link" aria-hidden="true"></i></a> |
|
311 | + <?php if ( ! empty($author_url)) : ?> |
|
312 | + <a href="<?php echo esc_url($author_url); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-url"><i class="fa fa-link" aria-hidden="true"></i></a> |
|
313 | 313 | <?php endif; ?> |
314 | 314 | |
315 | - <?php if ( ! empty( $author_email ) ) : ?> |
|
316 | - <a href="mailto:<?php echo esc_attr( $author_email ); ?>" class="archive-author-social-link archive-author-social-link-email"><i class="fa fa-envelope" aria-hidden="true"></i></a> |
|
315 | + <?php if ( ! empty($author_email)) : ?> |
|
316 | + <a href="mailto:<?php echo esc_attr($author_email); ?>" class="archive-author-social-link archive-author-social-link-email"><i class="fa fa-envelope" aria-hidden="true"></i></a> |
|
317 | 317 | <?php endif; ?> |
318 | 318 | |
319 | - <?php if ( ! empty( $author_facebook ) ) : ?> |
|
320 | - <a href="<?php echo esc_url( $author_facebook ); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a> |
|
319 | + <?php if ( ! empty($author_facebook)) : ?> |
|
320 | + <a href="<?php echo esc_url($author_facebook); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a> |
|
321 | 321 | <?php endif; ?> |
322 | 322 | |
323 | - <?php if ( ! empty( $author_twitter ) ) : ?> |
|
324 | - <a href="https://twitter.com/<?php echo esc_attr( $author_twitter ); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a> |
|
323 | + <?php if ( ! empty($author_twitter)) : ?> |
|
324 | + <a href="https://twitter.com/<?php echo esc_attr($author_twitter); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a> |
|
325 | 325 | <?php endif; ?> |
326 | 326 | |
327 | - <?php if ( ! empty( $author_googleplus ) ) : ?> |
|
328 | - <a href="<?php echo esc_url( $author_googleplus ); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-googleplus"><i class="fa fa-google-plus" aria-hidden="true"></i></a> |
|
327 | + <?php if ( ! empty($author_googleplus)) : ?> |
|
328 | + <a href="<?php echo esc_url($author_googleplus); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-googleplus"><i class="fa fa-google-plus" aria-hidden="true"></i></a> |
|
329 | 329 | <?php endif; ?> |
330 | 330 | </div> |
331 | 331 | <?php endif; ?> |
332 | 332 | |
333 | - <?php if ( ! empty( $author_bio ) ) : ?> |
|
334 | - <h2 class="archive-author-title text-center"><?php esc_html_e( 'About the author', 'lsx' ); ?></h2> |
|
335 | - <p class="archive-author-bio"><?php echo wp_kses_post( $author_bio ); ?></p> |
|
333 | + <?php if ( ! empty($author_bio)) : ?> |
|
334 | + <h2 class="archive-author-title text-center"><?php esc_html_e('About the author', 'lsx'); ?></h2> |
|
335 | + <p class="archive-author-bio"><?php echo wp_kses_post($author_bio); ?></p> |
|
336 | 336 | <?php endif; ?> |
337 | 337 | |
338 | 338 | <h2 class="archive-author-posts text-center"> |
339 | 339 | <?php |
340 | 340 | printf( |
341 | 341 | /* Translators: %s: author name */ |
342 | - esc_html__( 'All posts by %s', 'lsx' ), |
|
343 | - esc_html( $author ) |
|
342 | + esc_html__('All posts by %s', 'lsx'), |
|
343 | + esc_html($author) |
|
344 | 344 | ); |
345 | 345 | ?> |
346 | 346 | </h2> |
@@ -350,11 +350,11 @@ discard block |
||
350 | 350 | endif; |
351 | 351 | } |
352 | 352 | |
353 | - add_action( 'lsx_content_wrap_before', 'lsx_author_extra_info', 11 ); |
|
353 | + add_action('lsx_content_wrap_before', 'lsx_author_extra_info', 11); |
|
354 | 354 | |
355 | 355 | endif; |
356 | 356 | |
357 | -if ( ! function_exists( 'lsx_post_header' ) ) : |
|
357 | +if ( ! function_exists('lsx_post_header')) : |
|
358 | 358 | |
359 | 359 | /** |
360 | 360 | * Displays the post header. |
@@ -364,21 +364,21 @@ discard block |
||
364 | 364 | */ |
365 | 365 | function lsx_post_header() { |
366 | 366 | $default_size = 'sm'; |
367 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
367 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
368 | 368 | |
369 | - if ( is_singular( 'post' ) ) : |
|
369 | + if (is_singular('post')) : |
|
370 | 370 | $format = get_post_format(); |
371 | 371 | |
372 | - if ( false === $format ) { |
|
372 | + if (false === $format) { |
|
373 | 373 | $format = 'standard'; |
374 | 374 | } |
375 | 375 | |
376 | - $format = lsx_translate_format_to_fontawesome( $format ); |
|
376 | + $format = lsx_translate_format_to_fontawesome($format); |
|
377 | 377 | ?> |
378 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
378 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
379 | 379 | <header class="archive-header"> |
380 | 380 | <h1 class="archive-title"> |
381 | - <i class="format-link fa fa-<?php echo esc_attr( $format ); ?>"></i> |
|
381 | + <i class="format-link fa fa-<?php echo esc_attr($format); ?>"></i> |
|
382 | 382 | <span><?php the_title(); ?></span> |
383 | 383 | </h1> |
384 | 384 | </header> |
@@ -387,11 +387,11 @@ discard block |
||
387 | 387 | endif; |
388 | 388 | } |
389 | 389 | |
390 | - add_action( 'lsx_entry_top', 'lsx_post_header' ); |
|
390 | + add_action('lsx_entry_top', 'lsx_post_header'); |
|
391 | 391 | |
392 | 392 | endif; |
393 | 393 | |
394 | -if ( ! function_exists( 'lsx_add_viewport_meta_tag' ) ) : |
|
394 | +if ( ! function_exists('lsx_add_viewport_meta_tag')) : |
|
395 | 395 | |
396 | 396 | /** |
397 | 397 | * Add Viewport Meta Tag to head. |
@@ -405,11 +405,11 @@ discard block |
||
405 | 405 | <?php |
406 | 406 | } |
407 | 407 | |
408 | - add_action( 'wp_head', 'lsx_add_viewport_meta_tag' ); |
|
408 | + add_action('wp_head', 'lsx_add_viewport_meta_tag'); |
|
409 | 409 | |
410 | 410 | endif; |
411 | 411 | |
412 | -if ( ! function_exists( 'lsx_header_search_form' ) ) : |
|
412 | +if ( ! function_exists('lsx_header_search_form')) : |
|
413 | 413 | |
414 | 414 | /** |
415 | 415 | * Add a search form to just above the nav menu. |
@@ -418,13 +418,13 @@ discard block |
||
418 | 418 | * @subpackage layout |
419 | 419 | */ |
420 | 420 | function lsx_header_search_form() { |
421 | - $search_form = get_theme_mod( 'lsx_header_search', false ); |
|
421 | + $search_form = get_theme_mod('lsx_header_search', false); |
|
422 | 422 | |
423 | - if ( false !== $search_form || is_customize_preview() ) { |
|
424 | - get_search_form( true ); |
|
423 | + if (false !== $search_form || is_customize_preview()) { |
|
424 | + get_search_form(true); |
|
425 | 425 | } |
426 | 426 | } |
427 | 427 | |
428 | - add_action( 'lsx_nav_before', 'lsx_header_search_form', 0 ); |
|
428 | + add_action('lsx_nav_before', 'lsx_header_search_form', 0); |
|
429 | 429 | |
430 | 430 | endif; |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if ( ! defined( 'ABSPATH' ) ) { |
|
3 | +if ( ! defined('ABSPATH')) { |
|
4 | 4 | exit; |
5 | 5 | } |
6 | 6 | |
@@ -20,14 +20,14 @@ discard block |
||
20 | 20 | */ |
21 | 21 | public function __construct() { |
22 | 22 | $this->widget_cssclass = 'woocommerce widget_recent_reviews'; |
23 | - $this->widget_description = __( 'Display a list of your most recent reviews on your site.', 'lsx' ); |
|
23 | + $this->widget_description = __('Display a list of your most recent reviews on your site.', 'lsx'); |
|
24 | 24 | $this->widget_id = 'woocommerce_recent_reviews'; |
25 | - $this->widget_name = __( 'WooCommerce recent reviews', 'lsx' ); |
|
25 | + $this->widget_name = __('WooCommerce recent reviews', 'lsx'); |
|
26 | 26 | $this->settings = array( |
27 | 27 | 'title' => array( |
28 | 28 | 'type' => 'text', |
29 | - 'std' => __( 'Recent reviews', 'lsx' ), |
|
30 | - 'label' => __( 'Title', 'lsx' ), |
|
29 | + 'std' => __('Recent reviews', 'lsx'), |
|
30 | + 'label' => __('Title', 'lsx'), |
|
31 | 31 | ), |
32 | 32 | 'number' => array( |
33 | 33 | 'type' => 'number', |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | 'min' => 1, |
36 | 36 | 'max' => '', |
37 | 37 | 'std' => 10, |
38 | - 'label' => __( 'Number of reviews to show', 'lsx' ), |
|
38 | + 'label' => __('Number of reviews to show', 'lsx'), |
|
39 | 39 | ), |
40 | 40 | ); |
41 | 41 | |
@@ -50,44 +50,44 @@ discard block |
||
50 | 50 | * @param array $args |
51 | 51 | * @param array $instance |
52 | 52 | */ |
53 | - public function widget( $args, $instance ) { |
|
53 | + public function widget($args, $instance) { |
|
54 | 54 | global $comments, $comment; |
55 | 55 | |
56 | - if ( $this->get_cached_widget( $args ) ) { |
|
56 | + if ($this->get_cached_widget($args)) { |
|
57 | 57 | return; |
58 | 58 | } |
59 | 59 | |
60 | 60 | ob_start(); |
61 | 61 | |
62 | - $number = ! empty( $instance['number'] ) ? absint( $instance['number'] ) : $this->settings['number']['std']; |
|
62 | + $number = ! empty($instance['number']) ? absint($instance['number']) : $this->settings['number']['std']; |
|
63 | 63 | |
64 | - $comments = get_comments( array( |
|
64 | + $comments = get_comments(array( |
|
65 | 65 | 'number' => $number, |
66 | 66 | 'status' => 'approve', |
67 | 67 | 'post_status' => 'publish', |
68 | 68 | 'post_type' => 'product', |
69 | 69 | 'parent' => 0, |
70 | - ) ); |
|
70 | + )); |
|
71 | 71 | |
72 | - if ( $comments ) { |
|
73 | - $this->widget_start( $args, $instance ); |
|
72 | + if ($comments) { |
|
73 | + $this->widget_start($args, $instance); |
|
74 | 74 | |
75 | 75 | // @codingStandardsIgnoreLine |
76 | - echo apply_filters( 'woocommerce_before_widget_product_list', '<ul class="product_list_widget">' ); |
|
76 | + echo apply_filters('woocommerce_before_widget_product_list', '<ul class="product_list_widget">'); |
|
77 | 77 | |
78 | 78 | global $comment, $_product, $rating; |
79 | 79 | |
80 | - foreach ( (array) $comments as $comment ) { |
|
81 | - $_product = wc_get_product( $comment->comment_post_ID ); |
|
82 | - $rating = intval( get_comment_meta( $comment->comment_ID, 'rating', true ) ); |
|
80 | + foreach ((array) $comments as $comment) { |
|
81 | + $_product = wc_get_product($comment->comment_post_ID); |
|
82 | + $rating = intval(get_comment_meta($comment->comment_ID, 'rating', true)); |
|
83 | 83 | |
84 | - wc_get_template( 'content-widget-review.php' ); |
|
84 | + wc_get_template('content-widget-review.php'); |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | // @codingStandardsIgnoreLine |
88 | - echo apply_filters( 'woocommerce_after_widget_product_list', '</ul>' ); |
|
88 | + echo apply_filters('woocommerce_after_widget_product_list', '</ul>'); |
|
89 | 89 | |
90 | - $this->widget_end( $args ); |
|
90 | + $this->widget_end($args); |
|
91 | 91 | } |
92 | 92 | |
93 | 93 | $content = ob_get_clean(); |
@@ -95,6 +95,6 @@ discard block |
||
95 | 95 | // @codingStandardsIgnoreLine |
96 | 96 | echo $content; |
97 | 97 | |
98 | - $this->cache_widget( $args, $content ); |
|
98 | + $this->cache_widget($args, $content); |
|
99 | 99 | } |
100 | 100 | } |
@@ -5,35 +5,35 @@ discard block |
||
5 | 5 | * @package lsx |
6 | 6 | */ |
7 | 7 | |
8 | -if ( post_password_required() ) { |
|
8 | +if (post_password_required()) { |
|
9 | 9 | return; |
10 | 10 | } |
11 | 11 | |
12 | 12 | $commenter = wp_get_current_commenter(); |
13 | -$req = get_option( 'require_name_email' ); |
|
14 | -$aria_req = ( $req ? " aria-required='true'" : '' ); |
|
15 | -$html_req = ( $req ? " required='required'" : '' ); |
|
13 | +$req = get_option('require_name_email'); |
|
14 | +$aria_req = ($req ? " aria-required='true'" : ''); |
|
15 | +$html_req = ($req ? " required='required'" : ''); |
|
16 | 16 | |
17 | 17 | $comment_form_args = array( |
18 | - 'comment_field' => '<p class="comment-form-comment"><textarea placeholder="' . esc_html__( 'Comment', 'lsx' ) . '" id="comment" class="form-control" name="comment" cols="45" rows="8"' . $aria_req . $html_req . '></textarea></p>', |
|
18 | + 'comment_field' => '<p class="comment-form-comment"><textarea placeholder="' . esc_html__('Comment', 'lsx') . '" id="comment" class="form-control" name="comment" cols="45" rows="8"' . $aria_req . $html_req . '></textarea></p>', |
|
19 | 19 | |
20 | 20 | 'fields' => array( |
21 | - 'author' => '<p class="comment-form-author"><label for="author">' . esc_html__( 'Name', 'lsx' ) . '</label> ' . |
|
22 | - ( $req ? '<span class="required">*</span>' : '' ) . |
|
23 | - '<input class="form-control" placeholder="' . esc_html__( 'Name', 'lsx' ) . '" id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . $html_req . '></p>', |
|
21 | + 'author' => '<p class="comment-form-author"><label for="author">' . esc_html__('Name', 'lsx') . '</label> ' . |
|
22 | + ($req ? '<span class="required">*</span>' : '') . |
|
23 | + '<input class="form-control" placeholder="' . esc_html__('Name', 'lsx') . '" id="author" name="author" type="text" value="' . esc_attr($commenter['comment_author']) . '" size="30"' . $aria_req . $html_req . '></p>', |
|
24 | 24 | |
25 | - 'email' => '<p class="comment-form-email"><label for="email">' . esc_html__( 'Email', 'lsx' ) . '</label> ' . |
|
26 | - ( $req ? '<span class="required">*</span>' : '' ) . |
|
27 | - '<input class="form-control" placeholder="' . esc_html__( 'Email', 'lsx' ) . '" id="email" name="email" type="text" value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . $html_req . '></p>', |
|
25 | + 'email' => '<p class="comment-form-email"><label for="email">' . esc_html__('Email', 'lsx') . '</label> ' . |
|
26 | + ($req ? '<span class="required">*</span>' : '') . |
|
27 | + '<input class="form-control" placeholder="' . esc_html__('Email', 'lsx') . '" id="email" name="email" type="text" value="' . esc_attr($commenter['comment_author_email']) . '" size="30"' . $aria_req . $html_req . '></p>', |
|
28 | 28 | |
29 | - 'url' => '<p class="comment-form-url"><label for="url">' . esc_html__( 'Website', 'lsx' ) . '</label>' . |
|
30 | - '<input class="form-control" placeholder="' . esc_html__( 'Website', 'lsx' ) . '" id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30"></p>', |
|
29 | + 'url' => '<p class="comment-form-url"><label for="url">' . esc_html__('Website', 'lsx') . '</label>' . |
|
30 | + '<input class="form-control" placeholder="' . esc_html__('Website', 'lsx') . '" id="url" name="url" type="text" value="' . esc_attr($commenter['comment_author_url']) . '" size="30"></p>', |
|
31 | 31 | ), |
32 | 32 | ); |
33 | 33 | |
34 | -comment_form( $comment_form_args ); |
|
34 | +comment_form($comment_form_args); |
|
35 | 35 | |
36 | -if ( have_comments() ) : ?> |
|
36 | +if (have_comments()) : ?> |
|
37 | 37 | |
38 | 38 | <?php lsx_comments_before(); ?> |
39 | 39 | |
@@ -42,23 +42,23 @@ discard block |
||
42 | 42 | <?php |
43 | 43 | $comments_number = get_comments_number(); |
44 | 44 | |
45 | - if ( '1' === $comments_number ) { |
|
45 | + if ('1' === $comments_number) { |
|
46 | 46 | printf( |
47 | 47 | /* Translators: %s: post title */ |
48 | - esc_html_x( 'One Response to “%s”', 'comments.php', 'lsx' ) , |
|
48 | + esc_html_x('One Response to “%s”', 'comments.php', 'lsx'), |
|
49 | 49 | get_the_title() |
50 | 50 | ); |
51 | 51 | } else { |
52 | 52 | printf( |
53 | 53 | /* Translators: 1: number of comments, 2: post title */ |
54 | - esc_html( _nx( |
|
54 | + esc_html(_nx( |
|
55 | 55 | '%1$s Response to “%2$s”', |
56 | 56 | '%1$s Responses to “%2$s”', |
57 | 57 | $comments_number, |
58 | 58 | 'comments.php', |
59 | 59 | 'lsx' |
60 | - ) ), |
|
61 | - esc_html( number_format_i18n( $comments_number ) ), |
|
60 | + )), |
|
61 | + esc_html(number_format_i18n($comments_number)), |
|
62 | 62 | get_the_title() |
63 | 63 | ); |
64 | 64 | } |
@@ -67,31 +67,31 @@ discard block |
||
67 | 67 | |
68 | 68 | <ol class="media-list"> |
69 | 69 | <?php |
70 | - wp_list_comments( array( |
|
70 | + wp_list_comments(array( |
|
71 | 71 | 'walker' => new LSX_Walker_Comment, |
72 | - ) ); |
|
72 | + )); |
|
73 | 73 | ?> |
74 | 74 | </ol> |
75 | 75 | |
76 | 76 | <?php |
77 | 77 | $comment_pages_count = get_comment_pages_count(); |
78 | - if ( $comment_pages_count > 1 && get_option( 'page_comments' ) ) : ?> |
|
78 | + if ($comment_pages_count > 1 && get_option('page_comments')) : ?> |
|
79 | 79 | <nav> |
80 | 80 | <ul class="pager"> |
81 | - <?php if ( get_previous_comments_link() ) : ?> |
|
82 | - <li class="previous"><?php previous_comments_link( esc_html__( '← Older comments', 'lsx' ) ); ?></li> |
|
81 | + <?php if (get_previous_comments_link()) : ?> |
|
82 | + <li class="previous"><?php previous_comments_link(esc_html__('← Older comments', 'lsx')); ?></li> |
|
83 | 83 | <?php endif; ?> |
84 | 84 | |
85 | - <?php if ( get_next_comments_link() ) : ?> |
|
86 | - <li class="next"><?php next_comments_link( esc_html__( 'Newer comments →', 'lsx' ) ); ?></li> |
|
85 | + <?php if (get_next_comments_link()) : ?> |
|
86 | + <li class="next"><?php next_comments_link(esc_html__('Newer comments →', 'lsx')); ?></li> |
|
87 | 87 | <?php endif; ?> |
88 | 88 | </ul> |
89 | 89 | </nav> |
90 | 90 | <?php endif; ?> |
91 | 91 | |
92 | - <?php if ( ! comments_open() && ! is_page() && post_type_supports( get_post_type(), 'comments' ) ) : ?> |
|
92 | + <?php if ( ! comments_open() && ! is_page() && post_type_supports(get_post_type(), 'comments')) : ?> |
|
93 | 93 | <div class="alert alert-warning"> |
94 | - <?php esc_html_e( 'Comments are closed.', 'lsx' ); ?> |
|
94 | + <?php esc_html_e('Comments are closed.', 'lsx'); ?> |
|
95 | 95 | </div> |
96 | 96 | <?php endif; ?> |
97 | 97 | </section><!-- /#comments --> |
@@ -100,11 +100,11 @@ discard block |
||
100 | 100 | |
101 | 101 | <?php endif; ?> |
102 | 102 | |
103 | -<?php if ( ! have_comments() && ! comments_open() && post_type_supports( get_post_type(), 'comments' ) ) : ?> |
|
103 | +<?php if ( ! have_comments() && ! comments_open() && post_type_supports(get_post_type(), 'comments')) : ?> |
|
104 | 104 | |
105 | 105 | <section id="comments"> |
106 | 106 | <div class="alert alert-warning"> |
107 | - <?php esc_html_e( 'Comments are closed.', 'lsx' ); ?> |
|
107 | + <?php esc_html_e('Comments are closed.', 'lsx'); ?> |
|
108 | 108 | </div> |
109 | 109 | </section><!-- /#comments --> |
110 | 110 |