@@ -5,54 +5,54 @@ |
||
5 | 5 | * @package lsx |
6 | 6 | */ |
7 | 7 | |
8 | -$sidebar_enabled = apply_filters( 'lsx_sidebar_enable', true ); |
|
8 | +$sidebar_enabled = apply_filters('lsx_sidebar_enable', true); |
|
9 | 9 | |
10 | -if ( true !== $sidebar_enabled ) { |
|
10 | +if (true !== $sidebar_enabled) { |
|
11 | 11 | return true; |
12 | 12 | } |
13 | 13 | |
14 | -$show_on_front = get_option( 'show_on_front' ); |
|
14 | +$show_on_front = get_option('show_on_front'); |
|
15 | 15 | |
16 | -if ( 'page' === $show_on_front && is_front_page() ) { |
|
16 | +if ('page' === $show_on_front && is_front_page()) { |
|
17 | 17 | $layout = '1c'; |
18 | 18 | $sidebar = 'home'; |
19 | 19 | } else { |
20 | - $layout = get_theme_mod( 'lsx_layout', '2cr' ); |
|
21 | - $layout = apply_filters( 'lsx_layout', $layout ); |
|
20 | + $layout = get_theme_mod('lsx_layout', '2cr'); |
|
21 | + $layout = apply_filters('lsx_layout', $layout); |
|
22 | 22 | |
23 | - if ( 'posts' === $show_on_front && is_home() ) { |
|
23 | + if ('posts' === $show_on_front && is_home()) { |
|
24 | 24 | $sidebar = 'home'; |
25 | 25 | } else { |
26 | 26 | $sidebar = 'sidebar-1'; |
27 | 27 | } |
28 | 28 | } |
29 | 29 | |
30 | -if ( '1c' !== $layout ) : ?> |
|
30 | +if ('1c' !== $layout) : ?> |
|
31 | 31 | <?php lsx_sidebars_before(); ?> |
32 | - <div id="secondary" class="widget-area <?php echo esc_attr( lsx_sidebar_class() ); ?>" role="complementary"> |
|
32 | + <div id="secondary" class="widget-area <?php echo esc_attr(lsx_sidebar_class()); ?>" role="complementary"> |
|
33 | 33 | |
34 | 34 | <?php lsx_sidebar_top(); ?> |
35 | 35 | |
36 | - <?php if ( ! dynamic_sidebar( $sidebar ) ) : ?> |
|
36 | + <?php if ( ! dynamic_sidebar($sidebar)) : ?> |
|
37 | 37 | |
38 | 38 | <aside id="search" class="widget widget_search"> |
39 | 39 | <?php get_search_form(); ?> |
40 | 40 | </aside> |
41 | 41 | |
42 | 42 | <aside id="archives" class="widget"> |
43 | - <h1 class="widget-title"><?php esc_html_e( 'Archives', 'lsx' ); ?></h1> |
|
43 | + <h1 class="widget-title"><?php esc_html_e('Archives', 'lsx'); ?></h1> |
|
44 | 44 | |
45 | 45 | <ul> |
46 | 46 | <?php |
47 | - wp_get_archives( array( |
|
47 | + wp_get_archives(array( |
|
48 | 48 | 'type' => 'monthly', |
49 | - ) ); |
|
49 | + )); |
|
50 | 50 | ?> |
51 | 51 | </ul> |
52 | 52 | </aside> |
53 | 53 | |
54 | 54 | <aside id="meta" class="widget"> |
55 | - <h1 class="widget-title"><?php esc_html_e( 'Meta', 'lsx' ); ?></h1> |
|
55 | + <h1 class="widget-title"><?php esc_html_e('Meta', 'lsx'); ?></h1> |
|
56 | 56 | |
57 | 57 | <ul> |
58 | 58 | <?php wp_register(); ?> |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | * @subpackage hooks |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | * This is the 1st action in the theme that fires after <head>. |
15 | 15 | */ |
16 | 16 | function lsx_head_top() { |
17 | - do_action( 'lsx_head_top' ); |
|
17 | + do_action('lsx_head_top'); |
|
18 | 18 | } |
19 | 19 | |
20 | 20 | /** |
@@ -23,14 +23,14 @@ discard block |
||
23 | 23 | * @return void |
24 | 24 | */ |
25 | 25 | function lsx_head_bottom() { |
26 | - do_action( 'lsx_head_bottom' ); |
|
26 | + do_action('lsx_head_bottom'); |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | /** |
30 | 30 | * The 3rd action thta fires after <body> |
31 | 31 | */ |
32 | 32 | function lsx_body_top() { |
33 | - do_action( 'lsx_body_top' ); |
|
33 | + do_action('lsx_body_top'); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | /** |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | * $lsx_supports[] = 'header'; |
40 | 40 | */ |
41 | 41 | function lsx_header_before() { |
42 | - do_action( 'lsx_header_before' ); |
|
42 | + do_action('lsx_header_before'); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | /** |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | * @return void |
49 | 49 | */ |
50 | 50 | function lsx_header_top() { |
51 | - do_action( 'lsx_header_top' ); |
|
51 | + do_action('lsx_header_top'); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | /** |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | * @return void |
58 | 58 | */ |
59 | 59 | function lsx_nav_before() { |
60 | - do_action( 'lsx_nav_before' ); |
|
60 | + do_action('lsx_nav_before'); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | /** |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | * @return void |
67 | 67 | */ |
68 | 68 | function lsx_nav_after() { |
69 | - do_action( 'lsx_nav_after' ); |
|
69 | + do_action('lsx_nav_after'); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | /** |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | * @return void |
76 | 76 | */ |
77 | 77 | function lsx_header_bottom() { |
78 | - do_action( 'lsx_header_bottom' ); |
|
78 | + do_action('lsx_header_bottom'); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | /** |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | * @return void |
85 | 85 | */ |
86 | 86 | function lsx_header_after() { |
87 | - do_action( 'lsx_header_after' ); |
|
87 | + do_action('lsx_header_after'); |
|
88 | 88 | } |
89 | 89 | |
90 | 90 | /** |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | * @return void |
94 | 94 | */ |
95 | 95 | function lsx_header_wrap_after() { |
96 | - do_action( 'lsx_header_wrap_after' ); |
|
96 | + do_action('lsx_header_wrap_after'); |
|
97 | 97 | } |
98 | 98 | |
99 | 99 | /** |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | * @return void |
103 | 103 | */ |
104 | 104 | function lsx_header_wrap_container_top() { |
105 | - do_action( 'lsx_header_wrap_container_top' ); |
|
105 | + do_action('lsx_header_wrap_container_top'); |
|
106 | 106 | } |
107 | 107 | |
108 | 108 | /** |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | * @return void |
112 | 112 | */ |
113 | 113 | function lsx_body_bottom() { |
114 | - do_action( 'lsx_body_bottom' ); |
|
114 | + do_action('lsx_body_bottom'); |
|
115 | 115 | } |
116 | 116 | |
117 | 117 | /** |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | * $lsx_supports[] = 'banner'; |
121 | 121 | */ |
122 | 122 | function lsx_banner_content() { |
123 | - do_action( 'lsx_banner_content' ); |
|
123 | + do_action('lsx_banner_content'); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | /** |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | * @return void |
130 | 130 | */ |
131 | 131 | function lsx_banner_inner_top() { |
132 | - do_action( 'lsx_banner_inner_top' ); |
|
132 | + do_action('lsx_banner_inner_top'); |
|
133 | 133 | } |
134 | 134 | |
135 | 135 | /** |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | * @return void |
139 | 139 | */ |
140 | 140 | function lsx_banner_inner_bottom() { |
141 | - do_action( 'lsx_banner_inner_bottom' ); |
|
141 | + do_action('lsx_banner_inner_bottom'); |
|
142 | 142 | } |
143 | 143 | |
144 | 144 | /** |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | * $lsx_supports[] = 'global_header'; |
148 | 148 | */ |
149 | 149 | function lsx_global_header_inner_bottom() { |
150 | - do_action( 'lsx_global_header_inner_bottom' ); |
|
150 | + do_action('lsx_global_header_inner_bottom'); |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | /** |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | * $lsx_supports[] = 'content'; |
157 | 157 | */ |
158 | 158 | function lsx_content_wrap_before() { |
159 | - do_action( 'lsx_content_wrap_before' ); |
|
159 | + do_action('lsx_content_wrap_before'); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | /** |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | * @return void |
166 | 166 | */ |
167 | 167 | function lsx_content_wrap_after() { |
168 | - do_action( 'lsx_content_wrap_after' ); |
|
168 | + do_action('lsx_content_wrap_after'); |
|
169 | 169 | } |
170 | 170 | |
171 | 171 | /** |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | * @return void |
175 | 175 | */ |
176 | 176 | function lsx_content_before() { |
177 | - do_action( 'lsx_content_before' ); |
|
177 | + do_action('lsx_content_before'); |
|
178 | 178 | } |
179 | 179 | |
180 | 180 | /** |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | * @return void |
184 | 184 | */ |
185 | 185 | function lsx_content_after() { |
186 | - do_action( 'lsx_content_after' ); |
|
186 | + do_action('lsx_content_after'); |
|
187 | 187 | } |
188 | 188 | |
189 | 189 | /** |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | * @return void |
193 | 193 | */ |
194 | 194 | function lsx_content_top() { |
195 | - do_action( 'lsx_content_top' ); |
|
195 | + do_action('lsx_content_top'); |
|
196 | 196 | } |
197 | 197 | |
198 | 198 | /** |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | * @return void |
202 | 202 | */ |
203 | 203 | function lsx_content_bottom() { |
204 | - do_action( 'lsx_content_bottom' ); |
|
204 | + do_action('lsx_content_bottom'); |
|
205 | 205 | } |
206 | 206 | |
207 | 207 | /** |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | * @return void |
211 | 211 | */ |
212 | 212 | function lsx_content_post_tags() { |
213 | - do_action( 'lsx_content_post_tags' ); |
|
213 | + do_action('lsx_content_post_tags'); |
|
214 | 214 | } |
215 | 215 | |
216 | 216 | /** |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | * @return void |
220 | 220 | */ |
221 | 221 | function lsx_content_sharing() { |
222 | - do_action( 'lsx_content_sharing' ); |
|
222 | + do_action('lsx_content_sharing'); |
|
223 | 223 | } |
224 | 224 | |
225 | 225 | /** |
@@ -228,7 +228,7 @@ discard block |
||
228 | 228 | * $lsx_supports[] = 'entry'; |
229 | 229 | */ |
230 | 230 | function lsx_entry_before() { |
231 | - do_action( 'lsx_entry_before' ); |
|
231 | + do_action('lsx_entry_before'); |
|
232 | 232 | } |
233 | 233 | |
234 | 234 | /** |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | * @return void |
238 | 238 | */ |
239 | 239 | function lsx_entry_after() { |
240 | - do_action( 'lsx_entry_after' ); |
|
240 | + do_action('lsx_entry_after'); |
|
241 | 241 | } |
242 | 242 | |
243 | 243 | /** |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | * @return void |
247 | 247 | */ |
248 | 248 | function lsx_entry_top() { |
249 | - do_action( 'lsx_entry_top' ); |
|
249 | + do_action('lsx_entry_top'); |
|
250 | 250 | } |
251 | 251 | |
252 | 252 | /** |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | * @return void |
256 | 256 | */ |
257 | 257 | function lsx_entry_inside_top() { |
258 | - do_action( 'lsx_entry_inside_top' ); |
|
258 | + do_action('lsx_entry_inside_top'); |
|
259 | 259 | } |
260 | 260 | |
261 | 261 | /** |
@@ -264,14 +264,14 @@ discard block |
||
264 | 264 | * @return void |
265 | 265 | */ |
266 | 266 | function lsx_entry_bottom() { |
267 | - do_action( 'lsx_entry_bottom' ); |
|
267 | + do_action('lsx_entry_bottom'); |
|
268 | 268 | } |
269 | 269 | |
270 | 270 | /** |
271 | 271 | * Semantic <entry> hooks |
272 | 272 | */ |
273 | 273 | function lsx_post_meta_top() { |
274 | - do_action( 'lsx_post_meta_top' ); |
|
274 | + do_action('lsx_post_meta_top'); |
|
275 | 275 | } |
276 | 276 | |
277 | 277 | /** |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | * $lsx_supports[] = 'entry'; |
281 | 281 | */ |
282 | 282 | function lsx_widget_entry_before() { |
283 | - do_action( 'lsx_widget_entry_before' ); |
|
283 | + do_action('lsx_widget_entry_before'); |
|
284 | 284 | } |
285 | 285 | |
286 | 286 | /** |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | * @return void |
290 | 290 | */ |
291 | 291 | function lsx_widget_entry_after() { |
292 | - do_action( 'lsx_widget_entry_after' ); |
|
292 | + do_action('lsx_widget_entry_after'); |
|
293 | 293 | } |
294 | 294 | |
295 | 295 | /** |
@@ -298,7 +298,7 @@ discard block |
||
298 | 298 | * @return void |
299 | 299 | */ |
300 | 300 | function lsx_widget_entry_top() { |
301 | - do_action( 'lsx_widget_entry_top' ); |
|
301 | + do_action('lsx_widget_entry_top'); |
|
302 | 302 | } |
303 | 303 | |
304 | 304 | /** |
@@ -307,7 +307,7 @@ discard block |
||
307 | 307 | * @return void |
308 | 308 | */ |
309 | 309 | function lsx_widget_entry_bottom() { |
310 | - do_action( 'lsx_widget_entry_bottom' ); |
|
310 | + do_action('lsx_widget_entry_bottom'); |
|
311 | 311 | } |
312 | 312 | |
313 | 313 | /** |
@@ -316,7 +316,7 @@ discard block |
||
316 | 316 | * @return void |
317 | 317 | */ |
318 | 318 | function lsx_widget_entry_content_top() { |
319 | - do_action( 'lsx_widget_entry_content_top' ); |
|
319 | + do_action('lsx_widget_entry_content_top'); |
|
320 | 320 | } |
321 | 321 | |
322 | 322 | /** |
@@ -325,7 +325,7 @@ discard block |
||
325 | 325 | * @return void |
326 | 326 | */ |
327 | 327 | function lsx_widget_entry_content_bottom() { |
328 | - do_action( 'lsx_widget_entry_content_bottom' ); |
|
328 | + do_action('lsx_widget_entry_content_bottom'); |
|
329 | 329 | } |
330 | 330 | |
331 | 331 | /** |
@@ -334,7 +334,7 @@ discard block |
||
334 | 334 | * $lsx_supports[] = 'comments'; |
335 | 335 | */ |
336 | 336 | function lsx_comments_before() { |
337 | - do_action( 'lsx_comments_before' ); |
|
337 | + do_action('lsx_comments_before'); |
|
338 | 338 | } |
339 | 339 | |
340 | 340 | /** |
@@ -343,7 +343,7 @@ discard block |
||
343 | 343 | * @return void |
344 | 344 | */ |
345 | 345 | function lsx_comments_after() { |
346 | - do_action( 'lsx_comments_after' ); |
|
346 | + do_action('lsx_comments_after'); |
|
347 | 347 | } |
348 | 348 | |
349 | 349 | /** |
@@ -352,7 +352,7 @@ discard block |
||
352 | 352 | * $lsx_supports[] = 'sidebar'; |
353 | 353 | */ |
354 | 354 | function lsx_sidebars_before() { |
355 | - do_action( 'lsx_sidebars_before' ); |
|
355 | + do_action('lsx_sidebars_before'); |
|
356 | 356 | } |
357 | 357 | |
358 | 358 | /** |
@@ -361,7 +361,7 @@ discard block |
||
361 | 361 | * @return void |
362 | 362 | */ |
363 | 363 | function lsx_sidebars_after() { |
364 | - do_action( 'lsx_sidebars_after' ); |
|
364 | + do_action('lsx_sidebars_after'); |
|
365 | 365 | } |
366 | 366 | |
367 | 367 | /** |
@@ -370,7 +370,7 @@ discard block |
||
370 | 370 | * @return void |
371 | 371 | */ |
372 | 372 | function lsx_sidebar_top() { |
373 | - do_action( 'lsx_sidebar_top' ); |
|
373 | + do_action('lsx_sidebar_top'); |
|
374 | 374 | } |
375 | 375 | |
376 | 376 | /** |
@@ -379,7 +379,7 @@ discard block |
||
379 | 379 | * @return void |
380 | 380 | */ |
381 | 381 | function lsx_sidebar_bottom() { |
382 | - do_action( 'lsx_sidebar_bottom' ); |
|
382 | + do_action('lsx_sidebar_bottom'); |
|
383 | 383 | } |
384 | 384 | |
385 | 385 | /** |
@@ -388,7 +388,7 @@ discard block |
||
388 | 388 | * $lsx_supports[] = 'footer'; |
389 | 389 | */ |
390 | 390 | function lsx_footer_before() { |
391 | - do_action( 'lsx_footer_before' ); |
|
391 | + do_action('lsx_footer_before'); |
|
392 | 392 | } |
393 | 393 | |
394 | 394 | /** |
@@ -397,7 +397,7 @@ discard block |
||
397 | 397 | * @return void |
398 | 398 | */ |
399 | 399 | function lsx_footer_after() { |
400 | - do_action( 'lsx_footer_after' ); |
|
400 | + do_action('lsx_footer_after'); |
|
401 | 401 | } |
402 | 402 | |
403 | 403 | /** |
@@ -406,7 +406,7 @@ discard block |
||
406 | 406 | * @return void |
407 | 407 | */ |
408 | 408 | function lsx_footer_top() { |
409 | - do_action( 'lsx_footer_top' ); |
|
409 | + do_action('lsx_footer_top'); |
|
410 | 410 | } |
411 | 411 | |
412 | 412 | /** |
@@ -415,5 +415,5 @@ discard block |
||
415 | 415 | * @return void |
416 | 416 | */ |
417 | 417 | function lsx_footer_bottom() { |
418 | - do_action( 'lsx_footer_bottom' ); |
|
418 | + do_action('lsx_footer_bottom'); |
|
419 | 419 | } |
@@ -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 | |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | * Constructor. |
34 | 34 | */ |
35 | 35 | public function __construct() { |
36 | - add_filter( 'tribe_events_views_v2_rest_params', array( $this, 'check_event_request' ), 10, 2 ); |
|
36 | + add_filter('tribe_events_views_v2_rest_params', array($this, 'check_event_request'), 10, 2); |
|
37 | 37 | } |
38 | 38 | /** |
39 | 39 | * Return an instance of this class. |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | */ |
44 | 44 | public static function get_instance() { |
45 | 45 | // If the single instance hasn't been set, set it now. |
46 | - if ( null === self::$instance ) { |
|
46 | + if (null === self::$instance) { |
|
47 | 47 | self::$instance = new self; |
48 | 48 | } |
49 | 49 | return self::$instance; |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | * @param array $request |
57 | 57 | * @return void |
58 | 58 | */ |
59 | - public function check_event_request( $params, $request ) { |
|
59 | + public function check_event_request($params, $request) { |
|
60 | 60 | $this->is_rest_request = true; |
61 | 61 | return $params; |
62 | 62 | } |
@@ -67,15 +67,15 @@ discard block |
||
67 | 67 | * @return bool True if it's a REST API request, false otherwise. |
68 | 68 | */ |
69 | 69 | public function is_rest_api_request() { |
70 | - if ( true === $this->is_rest_request ) { |
|
70 | + if (true === $this->is_rest_request) { |
|
71 | 71 | return $this->is_rest_request; |
72 | 72 | } |
73 | 73 | |
74 | - if ( empty( $_SERVER['REQUEST_URI'] ) ) { |
|
74 | + if (empty($_SERVER['REQUEST_URI'])) { |
|
75 | 75 | return false; |
76 | 76 | } |
77 | - $rest_prefix = trailingslashit( rest_get_url_prefix() ); |
|
78 | - $this->is_rest_request = ( false !== strpos( $_SERVER['REQUEST_URI'], $rest_prefix ) ); |
|
77 | + $rest_prefix = trailingslashit(rest_get_url_prefix()); |
|
78 | + $this->is_rest_request = (false !== strpos($_SERVER['REQUEST_URI'], $rest_prefix)); |
|
79 | 79 | return $this->is_rest_request; |
80 | 80 | } |
81 | 81 | } |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage popup-maker |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! class_exists( 'LSX_Popup_Maker' ) ) : |
|
13 | +if ( ! class_exists('LSX_Popup_Maker')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * The LSX Popup_Maker integration class |
@@ -31,8 +31,8 @@ discard block |
||
31 | 31 | * @since 1.0 |
32 | 32 | */ |
33 | 33 | public function __construct() { |
34 | - add_action( 'init', array( $this, 'remove_pop_up_controls_panel' ) ); |
|
35 | - add_action( 'wp_enqueue_scripts', array( $this, 'lsx_popup_maker_scripts_add_styles' ) ); |
|
34 | + add_action('init', array($this, 'remove_pop_up_controls_panel')); |
|
35 | + add_action('wp_enqueue_scripts', array($this, 'lsx_popup_maker_scripts_add_styles')); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | /** |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | */ |
44 | 44 | public static function get_instance() { |
45 | 45 | // If the single instance hasn't been set, set it now. |
46 | - if ( null === self::$instance ) { |
|
46 | + if (null === self::$instance) { |
|
47 | 47 | self::$instance = new self(); |
48 | 48 | } |
49 | 49 | return self::$instance; |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | * @subpackage popup-maker |
57 | 57 | */ |
58 | 58 | public function lsx_popup_maker_scripts_add_styles() { |
59 | - wp_enqueue_style( 'popup-maker-lsx', get_template_directory_uri() . '/assets/css/popup-maker/popup-maker.css', array( 'lsx_main' ), LSX_VERSION ); |
|
59 | + wp_enqueue_style('popup-maker-lsx', get_template_directory_uri() . '/assets/css/popup-maker/popup-maker.css', array('lsx_main'), LSX_VERSION); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | /** |
@@ -65,9 +65,9 @@ discard block |
||
65 | 65 | * @return void |
66 | 66 | */ |
67 | 67 | public function remove_pop_up_controls_panel() { |
68 | - if ( is_admin() ) { |
|
69 | - remove_action( 'enqueue_block_editor_assets', array( 'PUM_Site_Assets', 'register_styles' ) ); |
|
70 | - remove_action( 'enqueue_block_editor_assets', array( 'PUM_Admin_BlockEditor', 'register_editor_assets' ) ); |
|
68 | + if (is_admin()) { |
|
69 | + remove_action('enqueue_block_editor_assets', array('PUM_Site_Assets', 'register_styles')); |
|
70 | + remove_action('enqueue_block_editor_assets', array('PUM_Admin_BlockEditor', 'register_editor_assets')); |
|
71 | 71 | } |
72 | 72 | } |
73 | 73 | } |
@@ -18,11 +18,11 @@ discard block |
||
18 | 18 | * |
19 | 19 | * @return bool True if it has schema, false if not. |
20 | 20 | */ |
21 | - public static function is_type( $post_type = null, $comparison_type = null ) { |
|
22 | - if ( is_null( $comparison_type ) ) { |
|
21 | + public static function is_type($post_type = null, $comparison_type = null) { |
|
22 | + if (is_null($comparison_type)) { |
|
23 | 23 | return false; |
24 | 24 | } |
25 | - if ( is_null( $post_type ) ) { |
|
25 | + if (is_null($post_type)) { |
|
26 | 26 | $post_type = get_post_type(); |
27 | 27 | } |
28 | 28 | /** |
@@ -30,8 +30,8 @@ discard block |
||
30 | 30 | * |
31 | 31 | * @api string[] $post_types The post types for which we output Review. |
32 | 32 | */ |
33 | - $post_types = apply_filters( 'wpseo_schema_' . $comparison_type . '_post_types', array( $comparison_type ) ); |
|
34 | - return in_array( $post_type, $post_types ); |
|
33 | + $post_types = apply_filters('wpseo_schema_' . $comparison_type . '_post_types', array($comparison_type)); |
|
34 | + return in_array($post_type, $post_types); |
|
35 | 35 | } |
36 | 36 | /** |
37 | 37 | * Retrieve a users Schema ID. |
@@ -42,9 +42,9 @@ discard block |
||
42 | 42 | * |
43 | 43 | * @return string The user's schema ID. |
44 | 44 | */ |
45 | - public static function get_places_schema_id( $place_id, $type, $context ) { |
|
46 | - $url = $context->site_url . '#/schema/' . strtolower( $type ) . '/' . wp_hash( $place_id . get_the_title( $place_id ) ); |
|
47 | - return trailingslashit( $url ); |
|
45 | + public static function get_places_schema_id($place_id, $type, $context) { |
|
46 | + $url = $context->site_url . '#/schema/' . strtolower($type) . '/' . wp_hash($place_id . get_the_title($place_id)); |
|
47 | + return trailingslashit($url); |
|
48 | 48 | } |
49 | 49 | /** |
50 | 50 | * Retrieve a users Schema ID. |
@@ -54,9 +54,9 @@ discard block |
||
54 | 54 | * |
55 | 55 | * @return string The user's schema ID. |
56 | 56 | */ |
57 | - public static function get_subtrip_schema_id( $name, $context ) { |
|
58 | - $url = $context->site_url . '#/subtrip/' . wp_hash( $name . $context->id ); |
|
59 | - return trailingslashit( $url ); |
|
57 | + public static function get_subtrip_schema_id($name, $context) { |
|
58 | + $url = $context->site_url . '#/subtrip/' . wp_hash($name . $context->id); |
|
59 | + return trailingslashit($url); |
|
60 | 60 | } |
61 | 61 | /** |
62 | 62 | * Retrieve an offer Schema ID. |
@@ -67,15 +67,15 @@ discard block |
||
67 | 67 | * |
68 | 68 | * @return string The user's schema ID. |
69 | 69 | */ |
70 | - public static function get_offer_schema_id( $id, $context, $local = false ) { |
|
71 | - if ( false === $local ) { |
|
70 | + public static function get_offer_schema_id($id, $context, $local = false) { |
|
71 | + if (false === $local) { |
|
72 | 72 | $url = $context->site_url; |
73 | 73 | } else { |
74 | - $url = get_permalink( $context->id ); |
|
74 | + $url = get_permalink($context->id); |
|
75 | 75 | } |
76 | 76 | $url .= '#/schema/offer/'; |
77 | - $url .= wp_hash( $id . get_the_title( $id ) ); |
|
78 | - return trailingslashit( $url ); |
|
77 | + $url .= wp_hash($id . get_the_title($id)); |
|
78 | + return trailingslashit($url); |
|
79 | 79 | } |
80 | 80 | /** |
81 | 81 | * Retrieve an review Schema ID. |
@@ -86,15 +86,15 @@ discard block |
||
86 | 86 | * |
87 | 87 | * @return string The user's schema ID. |
88 | 88 | */ |
89 | - public static function get_review_schema_id( $id, $context, $local = false ) { |
|
90 | - if ( false === $local ) { |
|
89 | + public static function get_review_schema_id($id, $context, $local = false) { |
|
90 | + if (false === $local) { |
|
91 | 91 | $url = $context->site_url; |
92 | 92 | } else { |
93 | - $url = get_permalink( $context->id ); |
|
93 | + $url = get_permalink($context->id); |
|
94 | 94 | } |
95 | 95 | $url .= '#/schema/review/'; |
96 | - $url .= wp_hash( $id . get_the_title( $id ) ); |
|
97 | - return trailingslashit( $url ); |
|
96 | + $url .= wp_hash($id . get_the_title($id)); |
|
97 | + return trailingslashit($url); |
|
98 | 98 | } |
99 | 99 | /** |
100 | 100 | * Retrieve an Article Schema ID. |
@@ -105,13 +105,13 @@ discard block |
||
105 | 105 | * |
106 | 106 | * @return string The user's schema ID. |
107 | 107 | */ |
108 | - public static function get_article_schema_id( $id, $context, $local = false ) { |
|
109 | - if ( false === $local ) { |
|
110 | - $url = get_permalink( $id ) . \Schema_IDs::ARTICLE_HASH; |
|
108 | + public static function get_article_schema_id($id, $context, $local = false) { |
|
109 | + if (false === $local) { |
|
110 | + $url = get_permalink($id) . \Schema_IDs::ARTICLE_HASH; |
|
111 | 111 | } else { |
112 | - $url = get_permalink( $context->id ) . '#/schema/article/' . wp_hash( $id . get_the_title( $id ) ); |
|
112 | + $url = get_permalink($context->id) . '#/schema/article/' . wp_hash($id . get_the_title($id)); |
|
113 | 113 | } |
114 | - return trailingslashit( $url ); |
|
114 | + return trailingslashit($url); |
|
115 | 115 | } |
116 | 116 | /** |
117 | 117 | * Retrieve a users Schema ID. |
@@ -121,8 +121,8 @@ discard block |
||
121 | 121 | * |
122 | 122 | * @return string The user's schema ID. |
123 | 123 | */ |
124 | - public static function get_author_schema_id( $name, $email, $context ) { |
|
125 | - return $context->site_url . \Schema_IDs::PERSON_HASH . wp_hash( $name . $email ); |
|
124 | + public static function get_author_schema_id($name, $email, $context) { |
|
125 | + return $context->site_url . \Schema_IDs::PERSON_HASH . wp_hash($name . $email); |
|
126 | 126 | } |
127 | 127 | /** |
128 | 128 | * Generates the place graph piece for the subtrip / Itinerary arrays. |
@@ -135,16 +135,16 @@ discard block |
||
135 | 135 | * |
136 | 136 | * @return mixed array $data Place data. |
137 | 137 | */ |
138 | - public static function add_place( $data, $type, $post_id, $context, $contained_in = false ) { |
|
139 | - $at_id = self::get_places_schema_id( $post_id, $type, $context ); |
|
138 | + public static function add_place($data, $type, $post_id, $context, $contained_in = false) { |
|
139 | + $at_id = self::get_places_schema_id($post_id, $type, $context); |
|
140 | 140 | $place = array( |
141 | 141 | '@type' => $type, |
142 | 142 | '@id' => $at_id, |
143 | - 'name' => get_the_title( $post_id ), |
|
144 | - 'description' => get_the_excerpt( $post_id ), |
|
145 | - 'url' => get_permalink( $post_id ), |
|
143 | + 'name' => get_the_title($post_id), |
|
144 | + 'description' => get_the_excerpt($post_id), |
|
145 | + 'url' => get_permalink($post_id), |
|
146 | 146 | ); |
147 | - if ( false !== $contained_in ) { |
|
147 | + if (false !== $contained_in) { |
|
148 | 148 | $place['containedInPlace'] = array( |
149 | 149 | '@type' => 'Country', |
150 | 150 | '@id' => $contained_in, |
@@ -161,8 +161,8 @@ discard block |
||
161 | 161 | * |
162 | 162 | * @return array $data The Review data. |
163 | 163 | */ |
164 | - public static function add_image( $data, $context ) { |
|
165 | - if ( $context->has_image ) { |
|
164 | + public static function add_image($data, $context) { |
|
165 | + if ($context->has_image) { |
|
166 | 166 | $data['image'] = array( |
167 | 167 | '@id' => $context->canonical . \Schema_IDs::PRIMARY_IMAGE_HASH, |
168 | 168 | ); |
@@ -176,18 +176,18 @@ discard block |
||
176 | 176 | * @param string $type The schema type. |
177 | 177 | * @return array $schema An array of the schema markup. |
178 | 178 | */ |
179 | - public static function get_item_reviewed( $items = array(), $type = '' ) { |
|
179 | + public static function get_item_reviewed($items = array(), $type = '') { |
|
180 | 180 | $schema = array(); |
181 | - if ( false !== $items && ! empty( $items ) && '' !== $type ) { |
|
182 | - array_unique( $items ); |
|
183 | - foreach ( $items as $item ) { |
|
184 | - $title = get_the_title( $item ); |
|
185 | - if ( '' !== $title ) { |
|
181 | + if (false !== $items && ! empty($items) && '' !== $type) { |
|
182 | + array_unique($items); |
|
183 | + foreach ($items as $item) { |
|
184 | + $title = get_the_title($item); |
|
185 | + if ('' !== $title) { |
|
186 | 186 | $item_schema = array( |
187 | 187 | '@type' => $type, |
188 | 188 | 'name' => $title, |
189 | 189 | ); |
190 | - $schema[] = $item_schema; |
|
190 | + $schema[] = $item_schema; |
|
191 | 191 | } |
192 | 192 | } |
193 | 193 | } |
@@ -203,18 +203,18 @@ discard block |
||
203 | 203 | * |
204 | 204 | * @return mixed array $data Review data. |
205 | 205 | */ |
206 | - public static function add_terms( $data, $post_id, $key, $taxonomy ) { |
|
207 | - $terms = get_the_terms( $post_id, $taxonomy ); |
|
208 | - if ( is_array( $terms ) ) { |
|
206 | + public static function add_terms($data, $post_id, $key, $taxonomy) { |
|
207 | + $terms = get_the_terms($post_id, $taxonomy); |
|
208 | + if (is_array($terms)) { |
|
209 | 209 | $keywords = array(); |
210 | - foreach ( $terms as $term ) { |
|
210 | + foreach ($terms as $term) { |
|
211 | 211 | // We are checking against the WordPress internal translation. |
212 | 212 | // @codingStandardsIgnoreLine |
213 | - if ( __( 'Uncategorized', 'lsx' ) !== $term->name ) { |
|
213 | + if (__('Uncategorized', 'lsx') !== $term->name) { |
|
214 | 214 | $keywords[] = $term->name; |
215 | 215 | } |
216 | 216 | } |
217 | - $data[ $key ] = implode( ',', $keywords ); |
|
217 | + $data[$key] = implode(',', $keywords); |
|
218 | 218 | } |
219 | 219 | return $data; |
220 | 220 | } |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | */ |
12 | 12 | use \Yoast\WP\SEO\Generators\Schema\Abstract_Schema_Piece; |
13 | 13 | |
14 | -if ( class_exists( 'Abstract_Schema_Piece' ) ) { |
|
14 | +if (class_exists('Abstract_Schema_Piece')) { |
|
15 | 15 | class LSX_Schema_Graph_Piece extends Abstract_Schema_Piece { |
16 | 16 | /** |
17 | 17 | * A value object with context variables. |
@@ -54,13 +54,13 @@ discard block |
||
54 | 54 | * |
55 | 55 | * @param \WPSEO_Schema_Context $context A value object with context variables. |
56 | 56 | */ |
57 | - public function __construct( WPSEO_Schema_Context $context ) { |
|
57 | + public function __construct(WPSEO_Schema_Context $context) { |
|
58 | 58 | $this->context = $context; |
59 | 59 | $this->place_ids = array(); |
60 | - $this->post = get_post( $this->context->id ); |
|
61 | - $this->post_url = get_permalink( $this->context->id ); |
|
60 | + $this->post = get_post($this->context->id); |
|
61 | + $this->post_url = get_permalink($this->context->id); |
|
62 | 62 | $this->is_top_level = false; |
63 | - if ( is_object( $this->post ) && isset( $this->post->post_parent ) && ( false === $this->post->post_parent || 0 === $this->post->post_parent || '' === $this->post->post_parent ) ) { |
|
63 | + if (is_object($this->post) && isset($this->post->post_parent) && (false === $this->post->post_parent || 0 === $this->post->post_parent || '' === $this->post->post_parent)) { |
|
64 | 64 | $this->is_top_level = true; |
65 | 65 | } |
66 | 66 | } |
@@ -70,13 +70,13 @@ discard block |
||
70 | 70 | * @return bool |
71 | 71 | */ |
72 | 72 | public function is_needed() { |
73 | - if ( ! is_singular() ) { |
|
73 | + if ( ! is_singular()) { |
|
74 | 74 | return false; |
75 | 75 | } |
76 | - if ( false === $this->context->site_represents ) { |
|
76 | + if (false === $this->context->site_represents) { |
|
77 | 77 | return false; |
78 | 78 | } |
79 | - return LSX_Schema_Utils::is_type( get_post_type(), $this->post_type ); |
|
79 | + return LSX_Schema_Utils::is_type(get_post_type(), $this->post_type); |
|
80 | 80 | } |
81 | 81 | /** |
82 | 82 | * Returns Review data. |
@@ -95,32 +95,32 @@ discard block |
||
95 | 95 | * @param boolean $include_aggregate |
96 | 96 | * @return array $data |
97 | 97 | */ |
98 | - public function add_reviews( $data, $data_key = 'reviews', $include_aggregate = true ) { |
|
99 | - $reviews = get_post_meta( $this->context->id, 'review_to_' . $this->post_type, false ); |
|
98 | + public function add_reviews($data, $data_key = 'reviews', $include_aggregate = true) { |
|
99 | + $reviews = get_post_meta($this->context->id, 'review_to_' . $this->post_type, false); |
|
100 | 100 | $reviews_array = array(); |
101 | - if ( ! empty( $reviews ) ) { |
|
101 | + if ( ! empty($reviews)) { |
|
102 | 102 | $aggregate_value = 1; |
103 | 103 | $review_count = 0; |
104 | - foreach ( $reviews as $review_id ) { |
|
105 | - $rating = get_post_meta( $review_id, 'rating', true ); |
|
106 | - $author = get_post_meta( $review_id, 'reviewer_name', true ); |
|
107 | - $description = wp_strip_all_tags( get_the_excerpt( $review_id ) ); |
|
104 | + foreach ($reviews as $review_id) { |
|
105 | + $rating = get_post_meta($review_id, 'rating', true); |
|
106 | + $author = get_post_meta($review_id, 'reviewer_name', true); |
|
107 | + $description = wp_strip_all_tags(get_the_excerpt($review_id)); |
|
108 | 108 | $review_args = array( |
109 | 109 | 'author' => $author, |
110 | 110 | 'reviewBody' => $description, |
111 | 111 | ); |
112 | 112 | // Add in the review rating. |
113 | - if ( false !== $rating && '' !== $rating && '0' !== $rating && 0 !== $rating ) { |
|
113 | + if (false !== $rating && '' !== $rating && '0' !== $rating && 0 !== $rating) { |
|
114 | 114 | $review_args['reviewRating'] = array( |
115 | 115 | '@type' => 'Rating', |
116 | 116 | 'ratingValue' => $rating, |
117 | 117 | ); |
118 | 118 | } |
119 | - $reviews_array = LSX_Schema_Utils::add_review( $reviews_array, $review_id, $this->context, $review_args ); |
|
119 | + $reviews_array = LSX_Schema_Utils::add_review($reviews_array, $review_id, $this->context, $review_args); |
|
120 | 120 | $review_count++; |
121 | 121 | } |
122 | - if ( ! empty( $reviews_array ) ) { |
|
123 | - if ( true === $include_aggregate ) { |
|
122 | + if ( ! empty($reviews_array)) { |
|
123 | + if (true === $include_aggregate) { |
|
124 | 124 | $data['aggregateRating'] = array( |
125 | 125 | '@type' => 'AggregateRating', |
126 | 126 | 'ratingValue' => (string) $aggregate_value, |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | 'worstRating' => '1', |
130 | 130 | ); |
131 | 131 | } |
132 | - $data[ $data_key ] = $reviews_array; |
|
132 | + $data[$data_key] = $reviews_array; |
|
133 | 133 | } |
134 | 134 | } |
135 | 135 | return $data; |
@@ -141,30 +141,30 @@ discard block |
||
141 | 141 | * @param string $data_key |
142 | 142 | * @return array $data |
143 | 143 | */ |
144 | - public function add_articles( $data, $data_key = 'subjectOf' ) { |
|
145 | - $posts = get_post_meta( $this->context->id, 'post_to_' . $this->post_type, false ); |
|
144 | + public function add_articles($data, $data_key = 'subjectOf') { |
|
145 | + $posts = get_post_meta($this->context->id, 'post_to_' . $this->post_type, false); |
|
146 | 146 | $posts_array = array(); |
147 | - if ( ! empty( $posts ) ) { |
|
148 | - foreach ( $posts as $post_id ) { |
|
147 | + if ( ! empty($posts)) { |
|
148 | + foreach ($posts as $post_id) { |
|
149 | 149 | $post_args = array( |
150 | - 'articleBody' => wp_strip_all_tags( get_the_excerpt( $post_id ) ), |
|
151 | - 'headline' => get_the_title( $post_id ), |
|
150 | + 'articleBody' => wp_strip_all_tags(get_the_excerpt($post_id)), |
|
151 | + 'headline' => get_the_title($post_id), |
|
152 | 152 | ); |
153 | - $section = get_the_term_list( $post_id, 'category' ); |
|
154 | - if ( ! is_wp_error( $section ) && '' !== $section && false !== $section ) { |
|
155 | - $post_args['articleSection'] = wp_strip_all_tags( $section ); |
|
153 | + $section = get_the_term_list($post_id, 'category'); |
|
154 | + if ( ! is_wp_error($section) && '' !== $section && false !== $section) { |
|
155 | + $post_args['articleSection'] = wp_strip_all_tags($section); |
|
156 | 156 | } |
157 | - if ( $this->context->site_represents_reference ) { |
|
157 | + if ($this->context->site_represents_reference) { |
|
158 | 158 | $post_args['publisher'] = $this->context->site_represents_reference; |
159 | 159 | } |
160 | - $image_url = get_the_post_thumbnail_url( $post_id, 'lsx-thumbnail-wide' ); |
|
161 | - if ( false !== $image_url ) { |
|
160 | + $image_url = get_the_post_thumbnail_url($post_id, 'lsx-thumbnail-wide'); |
|
161 | + if (false !== $image_url) { |
|
162 | 162 | $post_args['image'] = $image_url; |
163 | 163 | } |
164 | - $posts_array = LSX_Schema_Utils::add_article( $posts_array, $post_id, $this->context, $post_args ); |
|
164 | + $posts_array = LSX_Schema_Utils::add_article($posts_array, $post_id, $this->context, $post_args); |
|
165 | 165 | } |
166 | - if ( ! empty( $posts_array ) ) { |
|
167 | - $data[ $data_key ] = $posts_array; |
|
166 | + if ( ! empty($posts_array)) { |
|
167 | + $data[$data_key] = $posts_array; |
|
168 | 168 | } |
169 | 169 | } |
170 | 170 | return $data; |
@@ -176,19 +176,19 @@ discard block |
||
176 | 176 | * |
177 | 177 | * @return array $data |
178 | 178 | */ |
179 | - public function add_connections( $data ) { |
|
179 | + public function add_connections($data) { |
|
180 | 180 | $connections_array = array(); |
181 | - if ( $this->is_top_level ) { |
|
182 | - $connections_array = $this->add_regions( $connections_array ); |
|
183 | - $connections_array = $this->add_accommodation( $connections_array ); |
|
184 | - if ( ! empty( $connections_array ) ) { |
|
181 | + if ($this->is_top_level) { |
|
182 | + $connections_array = $this->add_regions($connections_array); |
|
183 | + $connections_array = $this->add_accommodation($connections_array); |
|
184 | + if ( ! empty($connections_array)) { |
|
185 | 185 | $data['containsPlace'] = $connections_array; |
186 | 186 | } |
187 | 187 | } else { |
188 | - $connections_array = $this->add_countries( $connections_array ); |
|
188 | + $connections_array = $this->add_countries($connections_array); |
|
189 | 189 | $data['containedInPlace'] = $connections_array; |
190 | 190 | $connections_array = array(); |
191 | - $connections_array = $this->add_accommodation( $connections_array ); |
|
191 | + $connections_array = $this->add_accommodation($connections_array); |
|
192 | 192 | $data['containsPlace'] = $connections_array; |
193 | 193 | } |
194 | 194 | return $data; |
@@ -202,14 +202,14 @@ discard block |
||
202 | 202 | * |
203 | 203 | * @return array $data Review data. |
204 | 204 | */ |
205 | - public function add_taxonomy_terms( $data, $data_key, $taxonomy ) { |
|
205 | + public function add_taxonomy_terms($data, $data_key, $taxonomy) { |
|
206 | 206 | /** |
207 | 207 | * Filter: 'lsx_schema_' . $this->post_type . '_' . $data_key . '_taxonomy' - Allow changing the taxonomy used to assign keywords to a post type Review data. |
208 | 208 | * |
209 | 209 | * @api string $taxonomy The chosen taxonomy. |
210 | 210 | */ |
211 | - $taxonomy = apply_filters( 'lsx_schema_' . $this->post_type . '_' . $data_key . '_taxonomy', $taxonomy ); |
|
212 | - return LSX_Schema_Utils::add_terms( $data, $this->context->id, $data_key, $taxonomy ); |
|
211 | + $taxonomy = apply_filters('lsx_schema_' . $this->post_type . '_' . $data_key . '_taxonomy', $taxonomy); |
|
212 | + return LSX_Schema_Utils::add_terms($data, $this->context->id, $data_key, $taxonomy); |
|
213 | 213 | } |
214 | 214 | /** |
215 | 215 | * Adds the custom field value for the supplied key |
@@ -221,10 +221,10 @@ discard block |
||
221 | 221 | * |
222 | 222 | * @return array $data Review data. |
223 | 223 | */ |
224 | - public function add_custom_field( $data, $data_key, $meta_key, $single = true ) { |
|
225 | - $value = get_post_meta( $this->context->id, $meta_key, $single ); |
|
226 | - if ( '' !== $value && false !== $value ) { |
|
227 | - $data[ $data_key ] = $value; |
|
224 | + public function add_custom_field($data, $data_key, $meta_key, $single = true) { |
|
225 | + $value = get_post_meta($this->context->id, $meta_key, $single); |
|
226 | + if ('' !== $value && false !== $value) { |
|
227 | + $data[$data_key] = $value; |
|
228 | 228 | } |
229 | 229 | return $data; |
230 | 230 | } |
@@ -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. |
@@ -25,9 +25,9 @@ discard block |
||
25 | 25 | |
26 | 26 | endif; |
27 | 27 | |
28 | -add_action( 'wp_enqueue_scripts', 'lsx_scripts', 5 ); |
|
28 | +add_action('wp_enqueue_scripts', 'lsx_scripts', 5); |
|
29 | 29 | |
30 | -if ( ! function_exists( 'lsx_admin_scripts' ) ) : |
|
30 | +if ( ! function_exists('lsx_admin_scripts')) : |
|
31 | 31 | |
32 | 32 | /** |
33 | 33 | * Enqueue scripts (admin). |
@@ -36,14 +36,14 @@ discard block |
||
36 | 36 | * @subpackage scripts |
37 | 37 | */ |
38 | 38 | function lsx_admin_scripts() { |
39 | - wp_enqueue_script( 'lsx-admin', get_template_directory_uri() . '/assets/js/admin/lsx-admin.js', array( 'jquery' ), LSX_VERSION, true ); |
|
39 | + wp_enqueue_script('lsx-admin', get_template_directory_uri() . '/assets/js/admin/lsx-admin.js', array('jquery'), LSX_VERSION, true); |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | endif; |
43 | 43 | |
44 | -add_action( 'admin_enqueue_scripts', 'lsx_admin_scripts' ); |
|
44 | +add_action('admin_enqueue_scripts', 'lsx_admin_scripts'); |
|
45 | 45 | |
46 | -if ( ! function_exists( 'lsx_scripts_add_styles' ) ) : |
|
46 | +if ( ! function_exists('lsx_scripts_add_styles')) : |
|
47 | 47 | |
48 | 48 | /** |
49 | 49 | * Enqueue styles. |
@@ -52,23 +52,23 @@ discard block |
||
52 | 52 | * @subpackage scripts |
53 | 53 | */ |
54 | 54 | function lsx_scripts_add_styles() { |
55 | - wp_enqueue_style( 'lsx_fonts', get_template_directory_uri() . '/assets/css/lsx-fonts.css', array(), LSX_VERSION ); |
|
55 | + wp_enqueue_style('lsx_fonts', get_template_directory_uri() . '/assets/css/lsx-fonts.css', array(), LSX_VERSION); |
|
56 | 56 | |
57 | - wp_register_style( 'fontawesome', get_template_directory_uri() . '/assets/css/vendor/font-awesome.css', array(), LSX_VERSION ); |
|
58 | - wp_style_add_data( 'fontawesome', 'rtl', 'replace' ); |
|
57 | + wp_register_style('fontawesome', get_template_directory_uri() . '/assets/css/vendor/font-awesome.css', array(), LSX_VERSION); |
|
58 | + wp_style_add_data('fontawesome', 'rtl', 'replace'); |
|
59 | 59 | |
60 | - wp_register_style( 'bootstrap', get_template_directory_uri() . '/assets/css/vendor/bootstrap.css', array(), LSX_VERSION ); |
|
61 | - wp_style_add_data( 'bootstrap', 'rtl', 'replace' ); |
|
60 | + wp_register_style('bootstrap', get_template_directory_uri() . '/assets/css/vendor/bootstrap.css', array(), LSX_VERSION); |
|
61 | + wp_style_add_data('bootstrap', 'rtl', 'replace'); |
|
62 | 62 | |
63 | - wp_enqueue_style( 'lsx_main', get_template_directory_uri() . '/assets/css/lsx.css', array( 'lsx_fonts', 'fontawesome', 'bootstrap'/*, 'slick'*/ ), LSX_VERSION ); |
|
64 | - wp_enqueue_style( 'lsx_gutenberg', get_template_directory_uri() . '/assets/css/gutenberg.css', array( 'lsx_main' ), LSX_VERSION ); |
|
63 | + wp_enqueue_style('lsx_main', get_template_directory_uri() . '/assets/css/lsx.css', array('lsx_fonts', 'fontawesome', 'bootstrap'/*, 'slick'*/), LSX_VERSION); |
|
64 | + wp_enqueue_style('lsx_gutenberg', get_template_directory_uri() . '/assets/css/gutenberg.css', array('lsx_main'), LSX_VERSION); |
|
65 | 65 | |
66 | - wp_style_add_data( 'lsx_main', 'rtl', 'replace' ); |
|
66 | + wp_style_add_data('lsx_main', 'rtl', 'replace'); |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | endif; |
70 | 70 | |
71 | -if ( ! function_exists( 'lsx_scripts_add_scripts' ) ) : |
|
71 | +if ( ! function_exists('lsx_scripts_add_scripts')) : |
|
72 | 72 | |
73 | 73 | /** |
74 | 74 | * Enqueue scripts. |
@@ -77,39 +77,39 @@ discard block |
||
77 | 77 | * @subpackage scripts |
78 | 78 | */ |
79 | 79 | function lsx_scripts_add_scripts() { |
80 | - if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { |
|
81 | - wp_enqueue_script( 'comment-reply' ); |
|
80 | + if (is_singular() && comments_open() && get_option('thread_comments')) { |
|
81 | + wp_enqueue_script('comment-reply'); |
|
82 | 82 | } |
83 | 83 | |
84 | - wp_enqueue_script( 'platform', get_template_directory_uri() . '/assets/js/vendor/platform.min.js', array(), LSX_VERSION, true ); |
|
85 | - wp_enqueue_script( 'bootstrap', get_template_directory_uri() . '/assets/js/vendor/bootstrap.min.js', array( 'jquery' ), LSX_VERSION, true ); |
|
84 | + wp_enqueue_script('platform', get_template_directory_uri() . '/assets/js/vendor/platform.min.js', array(), LSX_VERSION, true); |
|
85 | + wp_enqueue_script('bootstrap', get_template_directory_uri() . '/assets/js/vendor/bootstrap.min.js', array('jquery'), LSX_VERSION, true); |
|
86 | 86 | |
87 | - wp_enqueue_script( 'imagesLoaded', get_template_directory_uri() . '/assets/js/vendor/imagesloaded.pkgd.min.js', array( 'masonry' ), LSX_VERSION, true ); |
|
88 | - wp_enqueue_script( 'scrolltofixed', get_template_directory_uri() . '/assets/js/vendor/jquery-scrolltofixed-min.js', array( 'jquery' ), LSX_VERSION, true ); |
|
89 | - wp_enqueue_script( 'slick', get_template_directory_uri() . '/assets/js/vendor/slick.min.js', array( 'jquery' ), LSX_VERSION, true ); |
|
90 | - wp_enqueue_script( 'slick-lightbox', get_template_directory_uri() . '/assets/js/vendor/slick-lightbox.min.js', array( 'jquery', 'slick' ), LSX_VERSION, true ); |
|
91 | - wp_enqueue_script( 'picturefill', get_template_directory_uri() . '/assets/js/vendor/picturefill.min.js', array(), LSX_VERSION, true ); |
|
87 | + wp_enqueue_script('imagesLoaded', get_template_directory_uri() . '/assets/js/vendor/imagesloaded.pkgd.min.js', array('masonry'), LSX_VERSION, true); |
|
88 | + wp_enqueue_script('scrolltofixed', get_template_directory_uri() . '/assets/js/vendor/jquery-scrolltofixed-min.js', array('jquery'), LSX_VERSION, true); |
|
89 | + wp_enqueue_script('slick', get_template_directory_uri() . '/assets/js/vendor/slick.min.js', array('jquery'), LSX_VERSION, true); |
|
90 | + wp_enqueue_script('slick-lightbox', get_template_directory_uri() . '/assets/js/vendor/slick-lightbox.min.js', array('jquery', 'slick'), LSX_VERSION, true); |
|
91 | + wp_enqueue_script('picturefill', get_template_directory_uri() . '/assets/js/vendor/picturefill.min.js', array(), LSX_VERSION, true); |
|
92 | 92 | |
93 | - if ( defined( 'SCRIPT_DEBUG' ) ) { |
|
93 | + if (defined('SCRIPT_DEBUG')) { |
|
94 | 94 | $prefix = 'src/'; |
95 | 95 | $suffix = ''; |
96 | 96 | } else { |
97 | 97 | $prefix = ''; |
98 | 98 | $suffix = '.min'; |
99 | 99 | } |
100 | - wp_enqueue_script( 'lsx_script', get_template_directory_uri() . '/assets/js/' . $prefix . 'lsx' . $suffix . '.js', array( 'jquery', 'platform', 'bootstrap', 'masonry', 'imagesLoaded', 'scrolltofixed', 'slick', 'slick-lightbox', 'picturefill' ), LSX_VERSION, true ); |
|
100 | + wp_enqueue_script('lsx_script', get_template_directory_uri() . '/assets/js/' . $prefix . 'lsx' . $suffix . '.js', array('jquery', 'platform', 'bootstrap', 'masonry', 'imagesLoaded', 'scrolltofixed', 'slick', 'slick-lightbox', 'picturefill'), LSX_VERSION, true); |
|
101 | 101 | |
102 | 102 | $param_array = array( |
103 | - 'columns' => apply_filters( 'lsx_archive_column_number', 3 ), |
|
104 | - 'stickyMenuSelector' => apply_filters( 'lsx_sticky_menu_selector', 'header.navbar' ), |
|
103 | + 'columns' => apply_filters('lsx_archive_column_number', 3), |
|
104 | + 'stickyMenuSelector' => apply_filters('lsx_sticky_menu_selector', 'header.navbar'), |
|
105 | 105 | ); |
106 | 106 | |
107 | - wp_localize_script( 'lsx_script', 'lsx_params', $param_array ); |
|
107 | + wp_localize_script('lsx_script', 'lsx_params', $param_array); |
|
108 | 108 | } |
109 | 109 | |
110 | 110 | endif; |
111 | 111 | |
112 | -if ( ! function_exists( 'lsx_scripts_child_theme' ) ) : |
|
112 | +if ( ! function_exists('lsx_scripts_child_theme')) : |
|
113 | 113 | |
114 | 114 | /** |
115 | 115 | * Enqueue scripts and styles (for child theme). |
@@ -118,12 +118,12 @@ discard block |
||
118 | 118 | * @subpackage scripts |
119 | 119 | */ |
120 | 120 | function lsx_scripts_child_theme() { |
121 | - if ( is_child_theme() && file_exists( get_stylesheet_directory() . '/assets/css/custom.css' ) ) { |
|
122 | - wp_enqueue_style( 'child-css', get_stylesheet_directory_uri() . '/assets/css/custom.css', array( 'lsx_main' ), LSX_VERSION ); |
|
123 | - wp_style_add_data( 'child-css', 'rtl', 'replace' ); |
|
121 | + if (is_child_theme() && file_exists(get_stylesheet_directory() . '/assets/css/custom.css')) { |
|
122 | + wp_enqueue_style('child-css', get_stylesheet_directory_uri() . '/assets/css/custom.css', array('lsx_main'), LSX_VERSION); |
|
123 | + wp_style_add_data('child-css', 'rtl', 'replace'); |
|
124 | 124 | } |
125 | 125 | } |
126 | 126 | |
127 | 127 | endif; |
128 | 128 | |
129 | -add_action( 'wp_enqueue_scripts', 'lsx_scripts_child_theme', 1999 ); |
|
129 | +add_action('wp_enqueue_scripts', 'lsx_scripts_child_theme', 1999); |
@@ -21,14 +21,14 @@ discard block |
||
21 | 21 | |
22 | 22 | <?php lsx_content_top(); ?> |
23 | 23 | |
24 | - <?php if ( have_posts() ) : ?> |
|
24 | + <?php if (have_posts()) : ?> |
|
25 | 25 | |
26 | 26 | <?php |
27 | - while ( have_posts() ) : |
|
27 | + while (have_posts()) : |
|
28 | 28 | the_post(); |
29 | 29 | ?> |
30 | 30 | |
31 | - <?php get_template_part( 'partials/content', 'page-cover' ); ?> |
|
31 | + <?php get_template_part('partials/content', 'page-cover'); ?> |
|
32 | 32 | |
33 | 33 | <?php endwhile; ?> |
34 | 34 | |
@@ -41,12 +41,12 @@ discard block |
||
41 | 41 | <?php lsx_content_after(); ?> |
42 | 42 | |
43 | 43 | <?php |
44 | - if ( is_singular( 'post' ) ) { |
|
44 | + if (is_singular('post')) { |
|
45 | 45 | lsx_post_nav(); |
46 | 46 | } |
47 | 47 | ?> |
48 | 48 | <?php |
49 | - if ( comments_open() ) { |
|
49 | + if (comments_open()) { |
|
50 | 50 | comments_template(); |
51 | 51 | } |
52 | 52 | ?> |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | ); |
17 | 17 | |
18 | 18 | } |
19 | -add_action( 'admin_init', 'editor_styles' ); |
|
19 | +add_action('admin_init', 'editor_styles'); |
|
20 | 20 | |
21 | 21 | /** |
22 | 22 | * Add theme support functions. |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | * @package lsx |
25 | 25 | */ |
26 | 26 | |
27 | -if ( ! function_exists( 'theme_support' ) ) : |
|
27 | +if ( ! function_exists('theme_support')) : |
|
28 | 28 | /** |
29 | 29 | * Add theme support functions. |
30 | 30 | * |
@@ -32,50 +32,50 @@ discard block |
||
32 | 32 | */ |
33 | 33 | function theme_support() { |
34 | 34 | // Add support for editor styles. |
35 | - add_theme_support( 'editor-styles' ); |
|
35 | + add_theme_support('editor-styles'); |
|
36 | 36 | // Add support for full and wide align images. |
37 | - add_theme_support( 'align-wide' ); |
|
37 | + add_theme_support('align-wide'); |
|
38 | 38 | // Add support for styling blocks. |
39 | - add_theme_support( 'wp-block-styles' ); |
|
39 | + add_theme_support('wp-block-styles'); |
|
40 | 40 | // Add support for responsive embedded content. |
41 | - add_theme_support( 'responsive-embeds' ); |
|
41 | + add_theme_support('responsive-embeds'); |
|
42 | 42 | // Add support for Custom Line Heights. |
43 | - add_theme_support( 'custom-line-height' ); |
|
43 | + add_theme_support('custom-line-height'); |
|
44 | 44 | // Add support for Custom Units. |
45 | - add_theme_support( 'custom-units' ); |
|
45 | + add_theme_support('custom-units'); |
|
46 | 46 | // Add support for experimental link colors. |
47 | - add_theme_support( 'experimental-link-color' ); |
|
47 | + add_theme_support('experimental-link-color'); |
|
48 | 48 | // Add custom editor font sizes. |
49 | 49 | add_theme_support( |
50 | 50 | 'editor-font-sizes', |
51 | 51 | array( |
52 | 52 | array( |
53 | - 'name' => esc_html_x( 'Small', 'font size option label', 'lsx' ), |
|
54 | - 'shortName' => esc_html_x( 'S', 'abbreviation of the font size option label', 'lsx' ), |
|
53 | + 'name' => esc_html_x('Small', 'font size option label', 'lsx'), |
|
54 | + 'shortName' => esc_html_x('S', 'abbreviation of the font size option label', 'lsx'), |
|
55 | 55 | 'size' => 13, |
56 | 56 | 'slug' => 'small', |
57 | 57 | ), |
58 | 58 | array( |
59 | - 'name' => esc_html_x( 'Normal', 'font size option label', 'lsx' ), |
|
60 | - 'shortName' => esc_html_x( 'N', 'abbreviation of the font size option label', 'lsx' ), |
|
59 | + 'name' => esc_html_x('Normal', 'font size option label', 'lsx'), |
|
60 | + 'shortName' => esc_html_x('N', 'abbreviation of the font size option label', 'lsx'), |
|
61 | 61 | 'size' => 15, |
62 | 62 | 'slug' => 'normal', |
63 | 63 | ), |
64 | 64 | array( |
65 | - 'name' => esc_html_x( 'Medium', 'font size option label', 'lsx' ), |
|
66 | - 'shortName' => esc_html_x( 'M', 'abbreviation of the font size option label', 'lsx' ), |
|
65 | + 'name' => esc_html_x('Medium', 'font size option label', 'lsx'), |
|
66 | + 'shortName' => esc_html_x('M', 'abbreviation of the font size option label', 'lsx'), |
|
67 | 67 | 'size' => 22, |
68 | 68 | 'slug' => 'medium', |
69 | 69 | ), |
70 | 70 | array( |
71 | - 'name' => esc_html_x( 'Large', 'font size option label', 'lsx' ), |
|
72 | - 'shortName' => esc_html_x( 'L', 'abbreviation of the font size option label', 'lsx' ), |
|
71 | + 'name' => esc_html_x('Large', 'font size option label', 'lsx'), |
|
72 | + 'shortName' => esc_html_x('L', 'abbreviation of the font size option label', 'lsx'), |
|
73 | 73 | 'size' => 30, |
74 | 74 | 'slug' => 'large', |
75 | 75 | ), |
76 | 76 | array( |
77 | - 'name' => esc_html_x( 'Huge', 'font size option label', 'lsx' ), |
|
78 | - 'shortName' => esc_html_x( 'XL', 'abbreviation of the font size option label', 'lsx' ), |
|
77 | + 'name' => esc_html_x('Huge', 'font size option label', 'lsx'), |
|
78 | + 'shortName' => esc_html_x('XL', 'abbreviation of the font size option label', 'lsx'), |
|
79 | 79 | 'size' => 40, |
80 | 80 | 'slug' => 'huge', |
81 | 81 | ), |
@@ -83,48 +83,48 @@ discard block |
||
83 | 83 | ); |
84 | 84 | |
85 | 85 | // Add support for custom color scheme. |
86 | - add_theme_support( 'editor-color-palette', array( |
|
86 | + add_theme_support('editor-color-palette', array( |
|
87 | 87 | array( |
88 | - 'name' => __( 'Strong Blue', 'lsx' ), |
|
88 | + 'name' => __('Strong Blue', 'lsx'), |
|
89 | 89 | 'slug' => 'strong-blue', |
90 | 90 | 'color' => '#27639e', |
91 | 91 | ), |
92 | 92 | array( |
93 | - 'name' => __( 'Lighter Blue', 'lsx' ), |
|
93 | + 'name' => __('Lighter Blue', 'lsx'), |
|
94 | 94 | 'slug' => 'lighter-blue', |
95 | 95 | 'color' => '#428bca', |
96 | 96 | ), |
97 | 97 | array( |
98 | - 'name' => __( 'Yellow', 'lsx' ), |
|
98 | + 'name' => __('Yellow', 'lsx'), |
|
99 | 99 | 'slug' => 'light-yellow', |
100 | 100 | 'color' => '#f7ae00', |
101 | 101 | ), |
102 | 102 | array( |
103 | - 'name' => __( 'Dark Yellow', 'lsx' ), |
|
103 | + 'name' => __('Dark Yellow', 'lsx'), |
|
104 | 104 | 'slug' => 'dark-yellow', |
105 | 105 | 'color' => '#ab7800', |
106 | 106 | ), |
107 | 107 | array( |
108 | - 'name' => __( 'Green', 'lsx' ), |
|
108 | + 'name' => __('Green', 'lsx'), |
|
109 | 109 | 'slug' => 'light-green', |
110 | 110 | 'color' => '#6BA913', |
111 | 111 | ), |
112 | 112 | array( |
113 | - 'name' => __( 'Dark Green', 'lsx' ), |
|
113 | + 'name' => __('Dark Green', 'lsx'), |
|
114 | 114 | 'slug' => 'dark-green', |
115 | 115 | 'color' => '#3F640B', |
116 | 116 | ), |
117 | 117 | array( |
118 | - 'name' => __( 'White', 'lsx' ), |
|
118 | + 'name' => __('White', 'lsx'), |
|
119 | 119 | 'slug' => 'white', |
120 | 120 | 'color' => '#ffffff', |
121 | 121 | ), |
122 | 122 | array( |
123 | - 'name' => __( 'Black', 'lsx' ), |
|
123 | + 'name' => __('Black', 'lsx'), |
|
124 | 124 | 'slug' => 'black', |
125 | 125 | 'color' => '#000000', |
126 | 126 | ), |
127 | - ) ); |
|
127 | + )); |
|
128 | 128 | |
129 | 129 | $primary_color = 'rgba(39,99,158,1)'; |
130 | 130 | $secondary_color = 'rgba(247,174,0,1)'; |
@@ -135,30 +135,30 @@ discard block |
||
135 | 135 | 'editor-gradient-presets', |
136 | 136 | array( |
137 | 137 | array( |
138 | - 'name' => __( 'Primary to Secondary', 'lsx' ), |
|
139 | - 'gradient' => 'linear-gradient(135deg, ' . esc_attr( $primary_color ) . ' 0%, ' . esc_attr( $secondary_color ) . ' 100%)', |
|
138 | + 'name' => __('Primary to Secondary', 'lsx'), |
|
139 | + 'gradient' => 'linear-gradient(135deg, ' . esc_attr($primary_color) . ' 0%, ' . esc_attr($secondary_color) . ' 100%)', |
|
140 | 140 | 'slug' => 'primary-to-secondary', |
141 | 141 | ), |
142 | 142 | array( |
143 | - 'name' => __( 'Primary to Tertiary', 'lsx' ), |
|
144 | - 'gradient' => 'linear-gradient(135deg, ' . esc_attr( $primary_color ) . ' 0%, ' . esc_attr( $tertiary_color ) . ' 100%)', |
|
143 | + 'name' => __('Primary to Tertiary', 'lsx'), |
|
144 | + 'gradient' => 'linear-gradient(135deg, ' . esc_attr($primary_color) . ' 0%, ' . esc_attr($tertiary_color) . ' 100%)', |
|
145 | 145 | 'slug' => 'primary-to-tertiary', |
146 | 146 | ), |
147 | 147 | array( |
148 | - 'name' => __( 'Primary to Background', 'lsx' ), |
|
149 | - 'gradient' => 'linear-gradient(135deg, ' . esc_attr( $primary_color ) . ' 0%, ' . esc_attr( $background_color ) . ' 100%)', |
|
148 | + 'name' => __('Primary to Background', 'lsx'), |
|
149 | + 'gradient' => 'linear-gradient(135deg, ' . esc_attr($primary_color) . ' 0%, ' . esc_attr($background_color) . ' 100%)', |
|
150 | 150 | 'slug' => 'primary-to-background', |
151 | 151 | ), |
152 | 152 | array( |
153 | - 'name' => __( 'Secondary to Tertiary', 'lsx' ), |
|
154 | - 'gradient' => 'linear-gradient(135deg, ' . esc_attr( $secondary_color ) . ' 0%, ' . esc_attr( $tertiary_color ) . ' 100%)', |
|
153 | + 'name' => __('Secondary to Tertiary', 'lsx'), |
|
154 | + 'gradient' => 'linear-gradient(135deg, ' . esc_attr($secondary_color) . ' 0%, ' . esc_attr($tertiary_color) . ' 100%)', |
|
155 | 155 | 'slug' => 'secondary-to-tertiary', |
156 | 156 | ), |
157 | 157 | ) |
158 | 158 | ); |
159 | 159 | } |
160 | 160 | endif; |
161 | -add_action( 'after_setup_theme', 'theme_support' ); |
|
161 | +add_action('after_setup_theme', 'theme_support'); |
|
162 | 162 | |
163 | 163 | /** |
164 | 164 | * WPForms submit button, match Gutenberg button block |
@@ -166,8 +166,8 @@ discard block |
||
166 | 166 | * @param [type] $form_data |
167 | 167 | * @return void |
168 | 168 | */ |
169 | -function lsx_wpforms_match_button_block( $form_data ) { |
|
169 | +function lsx_wpforms_match_button_block($form_data) { |
|
170 | 170 | $form_data['settings']['submit_class'] .= ' btn'; |
171 | 171 | return $form_data; |
172 | 172 | } |
173 | -add_filter( 'wpforms_frontend_form_data', 'lsx_wpforms_match_button_block' ); |
|
173 | +add_filter('wpforms_frontend_form_data', 'lsx_wpforms_match_button_block'); |