@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage the-events-calendar |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! function_exists( 'lsx_tec_scripts_add_styles' ) ) : |
|
13 | +if ( ! function_exists('lsx_tec_scripts_add_styles')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * The Events Calendar enqueue styles. |
@@ -19,15 +19,15 @@ discard block |
||
19 | 19 | * @subpackage the-events-calendar |
20 | 20 | */ |
21 | 21 | function lsx_tec_scripts_add_styles() { |
22 | - wp_enqueue_style( 'the-events-calendar-lsx', get_template_directory_uri() . '/assets/css/the-events-calendar/the-events-calendar.css', array( 'lsx_main' ), LSX_VERSION ); |
|
23 | - wp_style_add_data( 'the-events-calendar-lsx', 'rtl', 'replace' ); |
|
22 | + wp_enqueue_style('the-events-calendar-lsx', get_template_directory_uri() . '/assets/css/the-events-calendar/the-events-calendar.css', array('lsx_main'), LSX_VERSION); |
|
23 | + wp_style_add_data('the-events-calendar-lsx', 'rtl', 'replace'); |
|
24 | 24 | } |
25 | 25 | |
26 | - add_action( 'wp_enqueue_scripts', 'lsx_tec_scripts_add_styles' ); |
|
26 | + add_action('wp_enqueue_scripts', 'lsx_tec_scripts_add_styles'); |
|
27 | 27 | |
28 | 28 | endif; |
29 | 29 | |
30 | -if ( ! function_exists( 'lsx_tec_theme_wrapper_start' ) ) : |
|
30 | +if ( ! function_exists('lsx_tec_theme_wrapper_start')) : |
|
31 | 31 | |
32 | 32 | /** |
33 | 33 | * The Events Calendar wrapper start. |
@@ -37,17 +37,17 @@ discard block |
||
37 | 37 | */ |
38 | 38 | function lsx_tec_theme_wrapper_start() { |
39 | 39 | lsx_content_wrap_before(); |
40 | - echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">'; |
|
40 | + echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">'; |
|
41 | 41 | lsx_content_before(); |
42 | 42 | echo '<main id="main" class="site-main" role="main">'; |
43 | 43 | lsx_content_top(); |
44 | 44 | } |
45 | 45 | |
46 | - add_action( 'tribe_events_before_html', 'lsx_tec_theme_wrapper_start', 9 ); |
|
46 | + add_action('tribe_events_before_html', 'lsx_tec_theme_wrapper_start', 9); |
|
47 | 47 | |
48 | 48 | endif; |
49 | 49 | |
50 | -if ( ! function_exists( 'lsx_tec_theme_wrapper_end' ) ) : |
|
50 | +if ( ! function_exists('lsx_tec_theme_wrapper_end')) : |
|
51 | 51 | |
52 | 52 | /** |
53 | 53 | * The Events Calendar wrapper end. |
@@ -63,11 +63,11 @@ discard block |
||
63 | 63 | lsx_content_wrap_after(); |
64 | 64 | } |
65 | 65 | |
66 | - add_action( 'tribe_events_after_html', 'lsx_tec_theme_wrapper_end', 11 ); |
|
66 | + add_action('tribe_events_after_html', 'lsx_tec_theme_wrapper_end', 11); |
|
67 | 67 | |
68 | 68 | endif; |
69 | 69 | |
70 | -if ( ! function_exists( 'lsx_tec_global_header_title' ) ) : |
|
70 | +if ( ! function_exists('lsx_tec_global_header_title')) : |
|
71 | 71 | |
72 | 72 | /** |
73 | 73 | * Move the events title into the global header |
@@ -75,98 +75,98 @@ discard block |
||
75 | 75 | * @package lsx |
76 | 76 | * @subpackage the-events-calendar |
77 | 77 | */ |
78 | - function lsx_tec_global_header_title( $title ) { |
|
78 | + function lsx_tec_global_header_title($title) { |
|
79 | 79 | |
80 | - if ( tribe_is_community_edit_event_page() ) { |
|
80 | + if (tribe_is_community_edit_event_page()) { |
|
81 | 81 | |
82 | - $is_route = get_query_var( 'WP_Route' ); |
|
83 | - switch ( $is_route ) { |
|
82 | + $is_route = get_query_var('WP_Route'); |
|
83 | + switch ($is_route) { |
|
84 | 84 | case 'ce-edit-route': |
85 | - $title = apply_filters( 'tribe_ce_edit_event_page_title', __( 'Edit an Event', 'lsx' ) ); |
|
85 | + $title = apply_filters('tribe_ce_edit_event_page_title', __('Edit an Event', 'lsx')); |
|
86 | 86 | break; |
87 | 87 | |
88 | 88 | case 'ce-edit-organizer-route': |
89 | - $title = __( 'Edit an Organizer', 'lsx' ); |
|
89 | + $title = __('Edit an Organizer', 'lsx'); |
|
90 | 90 | break; |
91 | 91 | |
92 | 92 | case 'ce-edit-venue-route': |
93 | - $title = __( 'Edit a Venue', 'lsx' ); |
|
93 | + $title = __('Edit a Venue', 'lsx'); |
|
94 | 94 | break; |
95 | 95 | |
96 | 96 | default: |
97 | - $title = apply_filters( 'tribe_ce_submit_event_page_title', __( 'Submit an Event', 'lsx' ) ); |
|
97 | + $title = apply_filters('tribe_ce_submit_event_page_title', __('Submit an Event', 'lsx')); |
|
98 | 98 | break; |
99 | 99 | } |
100 | - } else if ( tribe_is_community_my_events_page() ) { |
|
101 | - $title = apply_filters( 'tribe_ce_submit_event_page_title', __( 'My Events', 'lsx' ) ); |
|
102 | - } else if ( tribe_is_event() ) { |
|
100 | + } else if (tribe_is_community_my_events_page()) { |
|
101 | + $title = apply_filters('tribe_ce_submit_event_page_title', __('My Events', 'lsx')); |
|
102 | + } else if (tribe_is_event()) { |
|
103 | 103 | $title = tribe_get_events_title(); |
104 | 104 | } |
105 | 105 | |
106 | 106 | //Only disable the title after we have retrieved it |
107 | - add_filter( 'tribe_get_events_title', 'lsx_text_disable_body_title', 200, 1 ); |
|
107 | + add_filter('tribe_get_events_title', 'lsx_text_disable_body_title', 200, 1); |
|
108 | 108 | |
109 | - if ( is_singular( 'tribe_events' ) ) { |
|
110 | - add_filter( 'the_title', 'lsx_text_disable_body_title', 200, 1 ); |
|
109 | + if (is_singular('tribe_events')) { |
|
110 | + add_filter('the_title', 'lsx_text_disable_body_title', 200, 1); |
|
111 | 111 | } |
112 | 112 | return $title; |
113 | 113 | } |
114 | - add_filter( 'lsx_global_header_title', 'lsx_tec_global_header_title', 200, 1 ); |
|
114 | + add_filter('lsx_global_header_title', 'lsx_tec_global_header_title', 200, 1); |
|
115 | 115 | |
116 | 116 | endif; |
117 | 117 | |
118 | -if ( ! function_exists( 'lsx_text_disable_body_title' ) ) : |
|
118 | +if ( ! function_exists('lsx_text_disable_body_title')) : |
|
119 | 119 | /** |
120 | 120 | * Disable the events title for the post archive if the dynamic setting is active. |
121 | 121 | * @param $title |
122 | 122 | * |
123 | 123 | * @return string |
124 | 124 | */ |
125 | - function lsx_text_disable_body_title( $title ) { |
|
125 | + function lsx_text_disable_body_title($title) { |
|
126 | 126 | $title = ''; |
127 | - remove_filter( 'the_title', 'lsx_text_disable_body_title', 200, 1 ); |
|
127 | + remove_filter('the_title', 'lsx_text_disable_body_title', 200, 1); |
|
128 | 128 | return $title; |
129 | 129 | } |
130 | 130 | |
131 | 131 | endif; |
132 | 132 | |
133 | -if ( ! function_exists( 'lsx_tec_breadcrumb_filter' ) ) : |
|
133 | +if ( ! function_exists('lsx_tec_breadcrumb_filter')) : |
|
134 | 134 | /** |
135 | 135 | * Fixes the community events breadcrumb |
136 | 136 | * |
137 | 137 | * @package lsx |
138 | 138 | * @subpackage the-events-calendar |
139 | 139 | */ |
140 | - function lsx_tec_breadcrumb_filter( $crumbs ) { |
|
140 | + function lsx_tec_breadcrumb_filter($crumbs) { |
|
141 | 141 | |
142 | - if ( tribe_is_venue() || tribe_is_organizer() || tribe_is_community_edit_event_page() || tribe_is_community_my_events_page() ) { |
|
142 | + if (tribe_is_venue() || tribe_is_organizer() || tribe_is_community_edit_event_page() || tribe_is_community_my_events_page()) { |
|
143 | 143 | $new_crumbs = array(); |
144 | 144 | $new_crumbs[0] = $crumbs[0]; |
145 | 145 | |
146 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
146 | + if (function_exists('woocommerce_breadcrumb')) { |
|
147 | 147 | $new_crumbs[1] = array( |
148 | - 0 => __( 'Events', 'lsx' ), |
|
149 | - 1 => get_post_type_archive_link( 'tribe_events' ), |
|
148 | + 0 => __('Events', 'lsx'), |
|
149 | + 1 => get_post_type_archive_link('tribe_events'), |
|
150 | 150 | ); |
151 | 151 | } else { |
152 | 152 | $new_crumbs[1] = array( |
153 | - 'text' => __( 'Events', 'lsx' ), |
|
154 | - 'url' => get_post_type_archive_link( 'tribe_events' ), |
|
153 | + 'text' => __('Events', 'lsx'), |
|
154 | + 'url' => get_post_type_archive_link('tribe_events'), |
|
155 | 155 | ); |
156 | 156 | } |
157 | 157 | |
158 | - if ( tribe_is_community_my_events_page() ) { |
|
158 | + if (tribe_is_community_my_events_page()) { |
|
159 | 159 | $new_crumbs[2] = $crumbs[2]; |
160 | - } else if ( tribe_is_community_edit_event_page() ) { |
|
160 | + } else if (tribe_is_community_edit_event_page()) { |
|
161 | 161 | |
162 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
162 | + if (function_exists('woocommerce_breadcrumb')) { |
|
163 | 163 | $new_crumbs[2] = array( |
164 | - 0 => apply_filters( 'tribe_ce_submit_event_page_title', __( 'My Events', 'lsx' ) ), |
|
164 | + 0 => apply_filters('tribe_ce_submit_event_page_title', __('My Events', 'lsx')), |
|
165 | 165 | 1 => tribe_community_events_list_events_link( ), |
166 | 166 | ); |
167 | 167 | } else { |
168 | 168 | $new_crumbs[2] = array( |
169 | - 'text' => apply_filters( 'tribe_ce_submit_event_page_title', __( 'My Events', 'lsx' ) ), |
|
169 | + 'text' => apply_filters('tribe_ce_submit_event_page_title', __('My Events', 'lsx')), |
|
170 | 170 | 'url' => tribe_community_events_list_events_link( ), |
171 | 171 | ); |
172 | 172 | } |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | } |
180 | 180 | return $crumbs; |
181 | 181 | } |
182 | - add_filter( 'wpseo_breadcrumb_links', 'lsx_tec_breadcrumb_filter', 30, 1 ); |
|
183 | - add_filter( 'woocommerce_get_breadcrumb', 'lsx_tec_breadcrumb_filter', 30, 1 ); |
|
182 | + add_filter('wpseo_breadcrumb_links', 'lsx_tec_breadcrumb_filter', 30, 1); |
|
183 | + add_filter('woocommerce_get_breadcrumb', 'lsx_tec_breadcrumb_filter', 30, 1); |
|
184 | 184 | |
185 | 185 | endif; |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage template-tags |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! function_exists( 'lsx_breadcrumbs' ) ) : |
|
13 | +if ( ! function_exists('lsx_breadcrumbs')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Breadcrumbs. |
@@ -19,44 +19,44 @@ discard block |
||
19 | 19 | * @subpackage template-tags |
20 | 20 | */ |
21 | 21 | function lsx_breadcrumbs() { |
22 | - if ( ! function_exists( 'yoast_breadcrumb' ) && ! function_exists( 'woocommerce_breadcrumb' ) ) { |
|
22 | + if ( ! function_exists('yoast_breadcrumb') && ! function_exists('woocommerce_breadcrumb')) { |
|
23 | 23 | return null; |
24 | 24 | } |
25 | 25 | |
26 | - $show_on_front = get_option( 'show_on_front' ); |
|
26 | + $show_on_front = get_option('show_on_front'); |
|
27 | 27 | |
28 | - if ( ( 'posts' === $show_on_front && is_home() ) || ( 'page' === $show_on_front && is_front_page() ) ) { |
|
28 | + if (('posts' === $show_on_front && is_home()) || ('page' === $show_on_front && is_front_page())) { |
|
29 | 29 | return; |
30 | 30 | } |
31 | 31 | |
32 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
32 | + if (function_exists('woocommerce_breadcrumb')) { |
|
33 | 33 | ob_start(); |
34 | 34 | |
35 | - woocommerce_breadcrumb( array( |
|
35 | + woocommerce_breadcrumb(array( |
|
36 | 36 | 'wrap_before' => '<div class="breadcrumbs-container breadcrumbs-woocommerce"><div class="container"><div class="row"><div class="col-xs-12">', |
37 | 37 | 'wrap_after' => '</div></div></div></div>', |
38 | 38 | 'before' => '<span>', |
39 | 39 | 'after' => '</span>', |
40 | - ) ); |
|
40 | + )); |
|
41 | 41 | |
42 | 42 | $output = ob_get_clean(); |
43 | - } elseif ( function_exists( 'yoast_breadcrumb' ) ) { |
|
44 | - $output = yoast_breadcrumb( null, null, false ); |
|
43 | + } elseif (function_exists('yoast_breadcrumb')) { |
|
44 | + $output = yoast_breadcrumb(null, null, false); |
|
45 | 45 | $output = '<div class="breadcrumbs-container breadcrumbs-yoast"><div class="container"><div class="row"><div class="col-xs-12">' . $output . '</div></div></div></div>'; |
46 | 46 | } |
47 | 47 | |
48 | - $output = apply_filters( 'lsx_breadcrumbs', $output ); |
|
48 | + $output = apply_filters('lsx_breadcrumbs', $output); |
|
49 | 49 | |
50 | - echo wp_kses_post( $output ); |
|
50 | + echo wp_kses_post($output); |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | endif; |
54 | 54 | |
55 | -add_action( 'lsx_header_after', 'lsx_breadcrumbs', 1 ); |
|
55 | +add_action('lsx_header_after', 'lsx_breadcrumbs', 1); |
|
56 | 56 | //add_action( 'lsx_banner_inner_bottom', 'lsx_breadcrumbs', 100 ); |
57 | 57 | //add_action( 'lsx_global_header_inner_bottom', 'lsx_breadcrumbs', 100 ); |
58 | 58 | |
59 | -if ( ! function_exists( 'lsx_breadcrumbs_wpseo_seperator_filter' ) ) : |
|
59 | +if ( ! function_exists('lsx_breadcrumbs_wpseo_seperator_filter')) : |
|
60 | 60 | |
61 | 61 | /** |
62 | 62 | * Replaces the seperator. |
@@ -64,16 +64,16 @@ discard block |
||
64 | 64 | * @package lsx |
65 | 65 | * @subpackage template-tags |
66 | 66 | */ |
67 | - function lsx_breadcrumbs_wpseo_seperator_filter( $seperator ) { |
|
67 | + function lsx_breadcrumbs_wpseo_seperator_filter($seperator) { |
|
68 | 68 | $seperator = '<i class="fa fa-angle-right" aria-hidden="true"></i>'; |
69 | 69 | return $seperator; |
70 | 70 | } |
71 | 71 | |
72 | 72 | endif; |
73 | 73 | |
74 | -add_filter( 'wpseo_breadcrumb_separator', 'lsx_breadcrumbs_wpseo_seperator_filter' ); |
|
74 | +add_filter('wpseo_breadcrumb_separator', 'lsx_breadcrumbs_wpseo_seperator_filter'); |
|
75 | 75 | |
76 | -if ( ! function_exists( 'lsx_breadcrumbs_woocommerce_seperator_filter' ) ) : |
|
76 | +if ( ! function_exists('lsx_breadcrumbs_woocommerce_seperator_filter')) : |
|
77 | 77 | |
78 | 78 | /** |
79 | 79 | * Replaces the seperator. |
@@ -81,16 +81,16 @@ discard block |
||
81 | 81 | * @package lsx |
82 | 82 | * @subpackage template-tags |
83 | 83 | */ |
84 | - function lsx_breadcrumbs_woocommerce_seperator_filter( $defaults ) { |
|
84 | + function lsx_breadcrumbs_woocommerce_seperator_filter($defaults) { |
|
85 | 85 | $defaults['delimiter'] = '<i class="fa fa-angle-right" aria-hidden="true"></i>'; |
86 | 86 | return $defaults; |
87 | 87 | } |
88 | 88 | |
89 | 89 | endif; |
90 | 90 | |
91 | -add_filter( 'woocommerce_breadcrumb_defaults', 'lsx_breadcrumbs_woocommerce_seperator_filter' ); |
|
91 | +add_filter('woocommerce_breadcrumb_defaults', 'lsx_breadcrumbs_woocommerce_seperator_filter'); |
|
92 | 92 | |
93 | -if ( ! function_exists( 'lsx_site_title' ) ) : |
|
93 | +if ( ! function_exists('lsx_site_title')) : |
|
94 | 94 | |
95 | 95 | /** |
96 | 96 | * Displays logo when applicable. |
@@ -101,15 +101,15 @@ discard block |
||
101 | 101 | function lsx_site_title() { |
102 | 102 | ?> |
103 | 103 | <div class="site-branding"> |
104 | - <h1 class="site-title"><a title="<?php bloginfo( 'name' ); ?>" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> |
|
105 | - <p class="site-description"><?php bloginfo( 'description' ); ?></p> |
|
104 | + <h1 class="site-title"><a title="<?php bloginfo('name'); ?>" href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a></h1> |
|
105 | + <p class="site-description"><?php bloginfo('description'); ?></p> |
|
106 | 106 | </div> |
107 | 107 | <?php |
108 | 108 | } |
109 | 109 | |
110 | 110 | endif; |
111 | 111 | |
112 | -if ( ! function_exists( 'lsx_post_meta_list_top' ) ) : |
|
112 | +if ( ! function_exists('lsx_post_meta_list_top')) : |
|
113 | 113 | |
114 | 114 | /** |
115 | 115 | * Add customisable post meta (post list - above title). |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | |
131 | 131 | endif; |
132 | 132 | |
133 | -if ( ! function_exists( 'lsx_post_meta_single_top' ) ) : |
|
133 | +if ( ! function_exists('lsx_post_meta_single_top')) : |
|
134 | 134 | |
135 | 135 | /** |
136 | 136 | * Add customisable post meta (single post - above title). |
@@ -150,11 +150,11 @@ discard block |
||
150 | 150 | endif; |
151 | 151 | |
152 | 152 | //add_action( 'lsx_post_meta_top', 'lsx_post_meta_avatar' ); |
153 | -add_action( 'lsx_post_meta_top', 'lsx_post_meta_author' ); |
|
154 | -add_action( 'lsx_post_meta_top', 'lsx_post_meta_date' ); |
|
155 | -add_action( 'lsx_post_meta_top', 'lsx_post_meta_category' ); |
|
153 | +add_action('lsx_post_meta_top', 'lsx_post_meta_author'); |
|
154 | +add_action('lsx_post_meta_top', 'lsx_post_meta_date'); |
|
155 | +add_action('lsx_post_meta_top', 'lsx_post_meta_category'); |
|
156 | 156 | |
157 | -if ( ! function_exists( 'lsx_post_meta_single_bottom' ) ) : |
|
157 | +if ( ! function_exists('lsx_post_meta_single_bottom')) : |
|
158 | 158 | |
159 | 159 | /** |
160 | 160 | * Add customisable post meta (single post - below title). |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | |
174 | 174 | endif; |
175 | 175 | |
176 | -if ( ! function_exists( 'lsx_post_meta_avatar' ) ) : |
|
176 | +if ( ! function_exists('lsx_post_meta_avatar')) : |
|
177 | 177 | |
178 | 178 | /** |
179 | 179 | * Add customisable post meta: author's avatar. |
@@ -183,20 +183,20 @@ discard block |
||
183 | 183 | */ |
184 | 184 | function lsx_post_meta_avatar() { |
185 | 185 | $author = get_the_author(); |
186 | - $author_id = get_the_author_meta( 'ID' ); |
|
187 | - $author_avatar = get_avatar( $author_id, 80 ); |
|
188 | - $author_url = get_author_posts_url( $author_id ); |
|
186 | + $author_id = get_the_author_meta('ID'); |
|
187 | + $author_avatar = get_avatar($author_id, 80); |
|
188 | + $author_url = get_author_posts_url($author_id); |
|
189 | 189 | |
190 | 190 | printf( |
191 | 191 | '<a href="%1$s" class="post-meta-avatar">%2$s</a>', |
192 | - esc_url( $author_url ), |
|
193 | - wp_kses_post( $author_avatar ) |
|
192 | + esc_url($author_url), |
|
193 | + wp_kses_post($author_avatar) |
|
194 | 194 | ); |
195 | 195 | } |
196 | 196 | |
197 | 197 | endif; |
198 | 198 | |
199 | -if ( ! function_exists( 'lsx_post_meta_date' ) ) : |
|
199 | +if ( ! function_exists('lsx_post_meta_date')) : |
|
200 | 200 | |
201 | 201 | /** |
202 | 202 | * Add customisable post meta: post date. |
@@ -207,23 +207,23 @@ discard block |
||
207 | 207 | function lsx_post_meta_date() { |
208 | 208 | $time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>'; |
209 | 209 | |
210 | - $time_string = sprintf( $time_string, |
|
211 | - esc_attr( get_the_date( 'c' ) ), |
|
210 | + $time_string = sprintf($time_string, |
|
211 | + esc_attr(get_the_date('c')), |
|
212 | 212 | get_the_date(), |
213 | - esc_attr( get_the_modified_date( 'c' ) ), |
|
213 | + esc_attr(get_the_modified_date('c')), |
|
214 | 214 | get_the_modified_date() |
215 | 215 | ); |
216 | 216 | |
217 | 217 | printf( |
218 | 218 | '<span class="post-meta-time updated"><a href="%1$s" rel="bookmark">%2$s</a></span>', |
219 | - esc_url( get_permalink() ), |
|
220 | - wp_kses_post( $time_string ) |
|
219 | + esc_url(get_permalink()), |
|
220 | + wp_kses_post($time_string) |
|
221 | 221 | ); |
222 | 222 | } |
223 | 223 | |
224 | 224 | endif; |
225 | 225 | |
226 | -if ( ! function_exists( 'lsx_post_meta_author' ) ) : |
|
226 | +if ( ! function_exists('lsx_post_meta_author')) : |
|
227 | 227 | |
228 | 228 | /** |
229 | 229 | * Add customisable post meta: post author. |
@@ -233,27 +233,27 @@ discard block |
||
233 | 233 | */ |
234 | 234 | function lsx_post_meta_author() { |
235 | 235 | $author = get_the_author(); |
236 | - $author_url = get_author_posts_url( get_the_author_meta( 'ID' ) ); |
|
236 | + $author_url = get_author_posts_url(get_the_author_meta('ID')); |
|
237 | 237 | |
238 | - if ( empty( $author ) ) { |
|
238 | + if (empty($author)) { |
|
239 | 239 | global $post; |
240 | 240 | |
241 | - $author = get_user_by( 'ID', $post->post_author ); |
|
241 | + $author = get_user_by('ID', $post->post_author); |
|
242 | 242 | $author = $author->display_name; |
243 | - $author_url = get_author_posts_url( $post->post_author ); |
|
243 | + $author_url = get_author_posts_url($post->post_author); |
|
244 | 244 | } |
245 | 245 | |
246 | 246 | printf( |
247 | 247 | '<span class="vcard post-meta-author"><span>%1$s</span> <span class="fn"><a href="%2$s">%3$s</a>, </span></span>', |
248 | - esc_html__( 'By ', 'lsx' ), |
|
249 | - esc_url( $author_url ), |
|
250 | - esc_html( $author ) |
|
248 | + esc_html__('By ', 'lsx'), |
|
249 | + esc_url($author_url), |
|
250 | + esc_html($author) |
|
251 | 251 | ); |
252 | 252 | } |
253 | 253 | |
254 | 254 | endif; |
255 | 255 | |
256 | -if ( ! function_exists( 'lsx_post_meta_category' ) ) : |
|
256 | +if ( ! function_exists('lsx_post_meta_category')) : |
|
257 | 257 | |
258 | 258 | /** |
259 | 259 | * Add customisable post meta: post category(ies). |
@@ -262,25 +262,25 @@ discard block |
||
262 | 262 | * @subpackage template-tags |
263 | 263 | */ |
264 | 264 | function lsx_post_meta_category() { |
265 | - $post_categories = wp_get_post_categories( get_the_ID() ); |
|
265 | + $post_categories = wp_get_post_categories(get_the_ID()); |
|
266 | 266 | $cats = array(); |
267 | 267 | |
268 | - foreach ( $post_categories as $c ) { |
|
269 | - $cat = get_category( $c ); |
|
268 | + foreach ($post_categories as $c) { |
|
269 | + $cat = get_category($c); |
|
270 | 270 | /* Translators: %s: category name */ |
271 | - $cats[] = '<a href="' . esc_url( get_category_link( $cat->term_id ) ) . '" title="' . sprintf( esc_html__( 'View all posts in %s' , 'lsx' ), $cat->name ) . '">' . $cat->name . '</a>'; |
|
271 | + $cats[] = '<a href="' . esc_url(get_category_link($cat->term_id)) . '" title="' . sprintf(esc_html__('View all posts in %s', 'lsx'), $cat->name) . '">' . $cat->name . '</a>'; |
|
272 | 272 | } |
273 | 273 | |
274 | - if ( ! empty( $cats ) ) { |
|
274 | + if ( ! empty($cats)) { |
|
275 | 275 | ?> |
276 | - <span class="post-meta-categories"><span><?php esc_html_e( 'Posted in: ', 'lsx' ); ?></span> <?php echo wp_kses_post( implode( ', ', $cats ) ); ?></span> |
|
276 | + <span class="post-meta-categories"><span><?php esc_html_e('Posted in: ', 'lsx'); ?></span> <?php echo wp_kses_post(implode(', ', $cats)); ?></span> |
|
277 | 277 | <?php |
278 | 278 | } |
279 | 279 | } |
280 | 280 | |
281 | 281 | endif; |
282 | 282 | |
283 | -if ( ! function_exists( 'lsx_post_tags' ) ) : |
|
283 | +if ( ! function_exists('lsx_post_tags')) : |
|
284 | 284 | |
285 | 285 | /** |
286 | 286 | * Add customisable post meta: post tag(s). |
@@ -289,10 +289,10 @@ discard block |
||
289 | 289 | * @subpackage template-tags |
290 | 290 | */ |
291 | 291 | function lsx_post_tags() { |
292 | - if ( has_tag() ) : |
|
292 | + if (has_tag()) : |
|
293 | 293 | ?> |
294 | 294 | <div class="post-tags"> |
295 | - <span><?php echo esc_html__( 'Tags: ', 'lsx' ); ?></span><?php echo wp_kses_post( get_the_tag_list( '' ) ); ?> |
|
295 | + <span><?php echo esc_html__('Tags: ', 'lsx'); ?></span><?php echo wp_kses_post(get_the_tag_list('')); ?> |
|
296 | 296 | </div> |
297 | 297 | <?php |
298 | 298 | endif; |
@@ -300,9 +300,9 @@ discard block |
||
300 | 300 | |
301 | 301 | endif; |
302 | 302 | |
303 | -add_action( 'lsx_content_post_tags', 'lsx_post_tags', 10 ); |
|
303 | +add_action('lsx_content_post_tags', 'lsx_post_tags', 10); |
|
304 | 304 | |
305 | -if ( ! function_exists( 'lsx_sharing_output' ) ) : |
|
305 | +if ( ! function_exists('lsx_sharing_output')) : |
|
306 | 306 | |
307 | 307 | /** |
308 | 308 | * Display sharing buttons. |
@@ -312,14 +312,14 @@ discard block |
||
312 | 312 | */ |
313 | 313 | function lsx_sharing_output() { |
314 | 314 | global $lsx_sharing; |
315 | - echo wp_kses_post( $lsx_sharing->sharing_buttons() ); |
|
315 | + echo wp_kses_post($lsx_sharing->sharing_buttons()); |
|
316 | 316 | } |
317 | 317 | |
318 | 318 | endif; |
319 | 319 | |
320 | -add_action( 'lsx_content_sharing', 'lsx_sharing_output', 20 ); |
|
320 | +add_action('lsx_content_sharing', 'lsx_sharing_output', 20); |
|
321 | 321 | |
322 | -if ( ! function_exists( 'lsx_translate_format_to_fontawesome' ) ) : |
|
322 | +if ( ! function_exists('lsx_translate_format_to_fontawesome')) : |
|
323 | 323 | |
324 | 324 | /** |
325 | 325 | * Translate post format to Font Awesome class. |
@@ -327,8 +327,8 @@ discard block |
||
327 | 327 | * @package lsx |
328 | 328 | * @subpackage template-tags |
329 | 329 | */ |
330 | - function lsx_translate_format_to_fontawesome( $format ) { |
|
331 | - switch ( $format ) { |
|
330 | + function lsx_translate_format_to_fontawesome($format) { |
|
331 | + switch ($format) { |
|
332 | 332 | case 'image': |
333 | 333 | $format = 'camera'; |
334 | 334 | break; |
@@ -360,7 +360,7 @@ discard block |
||
360 | 360 | |
361 | 361 | endif; |
362 | 362 | |
363 | -if ( ! function_exists( 'lsx_paging_nav' ) ) : |
|
363 | +if ( ! function_exists('lsx_paging_nav')) : |
|
364 | 364 | |
365 | 365 | /** |
366 | 366 | * Display navigation to next/previous set of posts when applicable. |
@@ -371,37 +371,37 @@ discard block |
||
371 | 371 | function lsx_paging_nav() { |
372 | 372 | global $wp_query; |
373 | 373 | |
374 | - if ( $wp_query->max_num_pages < 2 ) { |
|
374 | + if ($wp_query->max_num_pages < 2) { |
|
375 | 375 | return; |
376 | 376 | } |
377 | 377 | |
378 | - if ( true === apply_filters( 'lsx_paging_nav_disable', false ) ) { |
|
378 | + if (true === apply_filters('lsx_paging_nav_disable', false)) { |
|
379 | 379 | return true; |
380 | - } elseif ( current_theme_supports( 'infinite-scroll' ) && class_exists( 'The_Neverending_Home_Page' ) ) { |
|
380 | + } elseif (current_theme_supports('infinite-scroll') && class_exists('The_Neverending_Home_Page')) { |
|
381 | 381 | return true; |
382 | 382 | } else { |
383 | 383 | $html = ''; |
384 | 384 | $html .= '<div class="lsx-pagination-wrapper">' . PHP_EOL; |
385 | 385 | $html .= '<div class="lsx-breaker"></div>' . PHP_EOL; |
386 | 386 | $html .= '<div class="lsx-pagination">' . PHP_EOL; |
387 | - $html .= paginate_links( array( |
|
388 | - 'base' => str_replace( 999999999, '%#%', esc_url( get_pagenum_link( 999999999 ) ) ), |
|
387 | + $html .= paginate_links(array( |
|
388 | + 'base' => str_replace(999999999, '%#%', esc_url(get_pagenum_link(999999999))), |
|
389 | 389 | 'format' => '?paged=%#%', |
390 | 390 | 'total' => $wp_query->max_num_pages, |
391 | - 'current' => max( 1, intval( get_query_var( 'paged' ) ) ), |
|
392 | - 'prev_text' => '<span class="meta-nav">←</span> ' . esc_html__( 'Previous', 'lsx' ), |
|
393 | - 'next_text' => esc_html__( 'Next', 'lsx' ) . ' <span class="meta-nav">→</span>', |
|
394 | - ) ); |
|
391 | + 'current' => max(1, intval(get_query_var('paged'))), |
|
392 | + 'prev_text' => '<span class="meta-nav">←</span> ' . esc_html__('Previous', 'lsx'), |
|
393 | + 'next_text' => esc_html__('Next', 'lsx') . ' <span class="meta-nav">→</span>', |
|
394 | + )); |
|
395 | 395 | $html .= '</div>' . PHP_EOL; |
396 | 396 | $html .= '</div>' . PHP_EOL; |
397 | 397 | |
398 | - echo wp_kses_post( $html ); |
|
398 | + echo wp_kses_post($html); |
|
399 | 399 | } |
400 | 400 | } |
401 | 401 | |
402 | 402 | endif; |
403 | 403 | |
404 | -if ( ! function_exists( 'lsx_post_nav' ) ) : |
|
404 | +if ( ! function_exists('lsx_post_nav')) : |
|
405 | 405 | |
406 | 406 | /** |
407 | 407 | * Display navigation to next/previous post when applicable. |
@@ -410,24 +410,24 @@ discard block |
||
410 | 410 | * @subpackage template-tags |
411 | 411 | */ |
412 | 412 | function lsx_post_nav() { |
413 | - $previous = ( is_attachment() ) ? get_post( get_post()->post_parent ) : get_adjacent_post( false, '', true ); |
|
414 | - $next = get_adjacent_post( false, '', false ); |
|
413 | + $previous = (is_attachment()) ? get_post(get_post()->post_parent) : get_adjacent_post(false, '', true); |
|
414 | + $next = get_adjacent_post(false, '', false); |
|
415 | 415 | |
416 | - if ( ! $next && ! $previous ) { |
|
416 | + if ( ! $next && ! $previous) { |
|
417 | 417 | return; |
418 | 418 | } |
419 | 419 | |
420 | 420 | $default_size = 'sm'; |
421 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
421 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
422 | 422 | ?> |
423 | 423 | <nav class="navigation post-navigation" role="navigation"> |
424 | 424 | <div class="lsx-breaker"></div> |
425 | 425 | <div class="nav-links pager row"> |
426 | - <div class="previous <?php echo 'col-' . esc_attr( $size ) . '-6'; ?>"> |
|
427 | - <?php previous_post_link( '%link', '<p class="nav-links-description">' . esc_html_x( 'Previous Post', 'Previous post link', 'lsx' ) . '</p><h3>%title</h3>' ); ?> |
|
426 | + <div class="previous <?php echo 'col-' . esc_attr($size) . '-6'; ?>"> |
|
427 | + <?php previous_post_link('%link', '<p class="nav-links-description">' . esc_html_x('Previous Post', 'Previous post link', 'lsx') . '</p><h3>%title</h3>'); ?> |
|
428 | 428 | </div> |
429 | - <div class="next <?php echo 'col-' . esc_attr( $size ) . '-6'; ?>"> |
|
430 | - <?php next_post_link( '%link', '<p class="nav-links-description">' . esc_html_x( 'Next Post', 'Next post link', 'lsx' ) . '</p><h3>%title</h3>' ); ?> |
|
429 | + <div class="next <?php echo 'col-' . esc_attr($size) . '-6'; ?>"> |
|
430 | + <?php next_post_link('%link', '<p class="nav-links-description">' . esc_html_x('Next Post', 'Next post link', 'lsx') . '</p><h3>%title</h3>'); ?> |
|
431 | 431 | </div> |
432 | 432 | </div><!-- .nav-links --> |
433 | 433 | </nav><!-- .navigation --> |
@@ -436,7 +436,7 @@ discard block |
||
436 | 436 | |
437 | 437 | endif; |
438 | 438 | |
439 | -if ( ! function_exists( 'lsx_site_identity' ) ) : |
|
439 | +if ( ! function_exists('lsx_site_identity')) : |
|
440 | 440 | |
441 | 441 | /** |
442 | 442 | * Outputs either the Site Title or the Site Logo. |
@@ -445,10 +445,10 @@ discard block |
||
445 | 445 | * @subpackage template-tags |
446 | 446 | */ |
447 | 447 | function lsx_site_identity() { |
448 | - if ( function_exists( 'has_custom_logo' ) && has_custom_logo() ) { |
|
448 | + if (function_exists('has_custom_logo') && has_custom_logo()) { |
|
449 | 449 | the_custom_logo(); |
450 | 450 | } else { |
451 | - if ( get_theme_mod( 'site_logo_header_text', 1 ) ) { |
|
451 | + if (get_theme_mod('site_logo_header_text', 1)) { |
|
452 | 452 | lsx_site_title(); |
453 | 453 | } |
454 | 454 | } |
@@ -456,7 +456,7 @@ discard block |
||
456 | 456 | |
457 | 457 | endif; |
458 | 458 | |
459 | -if ( ! function_exists( 'lsx_navbar_header' ) ) : |
|
459 | +if ( ! function_exists('lsx_navbar_header')) : |
|
460 | 460 | /** |
461 | 461 | * Outputs the Nav Menu. |
462 | 462 | * |
@@ -467,17 +467,17 @@ discard block |
||
467 | 467 | ?> |
468 | 468 | <div class="navbar-header" itemscope itemtype="http://schema.org/WebPage"> |
469 | 469 | <?php |
470 | - if ( has_nav_menu( 'primary' ) ) : |
|
470 | + if (has_nav_menu('primary')) : |
|
471 | 471 | ?> |
472 | 472 | <div class="wrapper-toggle" data-toggle="collapse" data-target=".primary-navbar"> |
473 | 473 | <button type="button" class="navbar-toggle"> |
474 | - <span class="sr-only"><?php esc_html_e( 'Toggle navigation', 'lsx' ); ?></span> |
|
474 | + <span class="sr-only"><?php esc_html_e('Toggle navigation', 'lsx'); ?></span> |
|
475 | 475 | <span class="icon-bar"></span> |
476 | 476 | <span class="icon-bar"></span> |
477 | 477 | <span class="icon-bar"></span> |
478 | 478 | <span class="icon-bar"></span> |
479 | 479 | </button> |
480 | - <span class="mobile-menu-title"><?php esc_html_e( 'Menu', 'lsx' ); ?></span> |
|
480 | + <span class="mobile-menu-title"><?php esc_html_e('Menu', 'lsx'); ?></span> |
|
481 | 481 | </div> |
482 | 482 | <?php |
483 | 483 | endif; |
@@ -490,9 +490,9 @@ discard block |
||
490 | 490 | |
491 | 491 | endif; |
492 | 492 | |
493 | -add_action( 'lsx_nav_before', 'lsx_navbar_header' ); |
|
493 | +add_action('lsx_nav_before', 'lsx_navbar_header'); |
|
494 | 494 | |
495 | -if ( ! function_exists( 'lsx_nav_menu' ) ) : |
|
495 | +if ( ! function_exists('lsx_nav_menu')) : |
|
496 | 496 | /** |
497 | 497 | * Outputs the Nav Menu. |
498 | 498 | * |
@@ -500,17 +500,17 @@ discard block |
||
500 | 500 | * @subpackage template-tags |
501 | 501 | */ |
502 | 502 | function lsx_nav_menu() { |
503 | - if ( has_nav_menu( 'primary' ) ) : |
|
503 | + if (has_nav_menu('primary')) : |
|
504 | 504 | ?> |
505 | 505 | <nav class="primary-navbar collapse navbar-collapse"> |
506 | 506 | <?php |
507 | - wp_nav_menu( array( |
|
507 | + wp_nav_menu(array( |
|
508 | 508 | 'theme_location' => 'primary', |
509 | 509 | 'depth' => 3, |
510 | 510 | 'container' => false, |
511 | 511 | 'menu_class' => 'nav navbar-nav', |
512 | 512 | 'walker' => new LSX_Bootstrap_Navwalker(), |
513 | - ) ); |
|
513 | + )); |
|
514 | 514 | ?> |
515 | 515 | </nav> |
516 | 516 | <?php |
@@ -518,7 +518,7 @@ discard block |
||
518 | 518 | } |
519 | 519 | endif; |
520 | 520 | |
521 | -if ( ! function_exists( 'lsx_sitemap_loops' ) ) { |
|
521 | +if ( ! function_exists('lsx_sitemap_loops')) { |
|
522 | 522 | /** |
523 | 523 | * Outputs the loops on the sitemap |
524 | 524 | * |
@@ -526,19 +526,19 @@ discard block |
||
526 | 526 | * @subpackage template-tags |
527 | 527 | */ |
528 | 528 | function lsx_sitemap_loops() { |
529 | - $sitemap_loops = array( |
|
529 | + $sitemap_loops = array( |
|
530 | 530 | 'page' => array( |
531 | 531 | 'type' => 'post_type', |
532 | - 'label' => __( 'Pages', 'lsx' ), |
|
532 | + 'label' => __('Pages', 'lsx'), |
|
533 | 533 | 'heirarchy' => true, |
534 | 534 | ), |
535 | 535 | 'post' => array( |
536 | 536 | 'type' => 'post_type', |
537 | - 'label' => __( 'Posts', 'lsx' ), |
|
537 | + 'label' => __('Posts', 'lsx'), |
|
538 | 538 | ), |
539 | 539 | 'category' => array( |
540 | 540 | 'type' => 'taxonomy', |
541 | - 'label' => __( 'Categories', 'lsx' ), |
|
541 | + 'label' => __('Categories', 'lsx'), |
|
542 | 542 | 'heirarchy' => true, |
543 | 543 | ), |
544 | 544 | ); |
@@ -547,49 +547,49 @@ discard block |
||
547 | 547 | '_builtin' => false, |
548 | 548 | 'show_ui' => true, |
549 | 549 | ); |
550 | - $post_types = get_post_types( $post_type_args, 'objects' ); |
|
551 | - if ( ! empty( $post_types ) ) { |
|
552 | - foreach ( $post_types as $post_type_key => $post_type_obj ) { |
|
553 | - $sitemap_loops[ $post_type_key ] = array( |
|
550 | + $post_types = get_post_types($post_type_args, 'objects'); |
|
551 | + if ( ! empty($post_types)) { |
|
552 | + foreach ($post_types as $post_type_key => $post_type_obj) { |
|
553 | + $sitemap_loops[$post_type_key] = array( |
|
554 | 554 | 'type' => 'post_type', |
555 | 555 | 'label' => $post_type_obj->label, |
556 | 556 | ); |
557 | 557 | } |
558 | 558 | } |
559 | - $taxonomy_args = array( |
|
559 | + $taxonomy_args = array( |
|
560 | 560 | 'public' => true, |
561 | 561 | '_builtin' => false, |
562 | 562 | 'show_ui' => true, |
563 | 563 | ); |
564 | - $taxonomies = get_taxonomies( $taxonomy_args, 'objects' ); |
|
565 | - if ( ! empty( $taxonomies ) ) { |
|
566 | - foreach ( $taxonomies as $tax_key => $tax_obj ) { |
|
567 | - $sitemap_loops[ $tax_key ] = array( |
|
564 | + $taxonomies = get_taxonomies($taxonomy_args, 'objects'); |
|
565 | + if ( ! empty($taxonomies)) { |
|
566 | + foreach ($taxonomies as $tax_key => $tax_obj) { |
|
567 | + $sitemap_loops[$tax_key] = array( |
|
568 | 568 | 'type' => 'taxonomy', |
569 | 569 | 'label' => $tax_obj->label, |
570 | 570 | ); |
571 | 571 | } |
572 | 572 | } |
573 | - $sitemap_loops = apply_filters( 'lsx_sitemap_loops_list', $sitemap_loops ); |
|
574 | - foreach ( $sitemap_loops as $sitemap_key => $sitemap_values ) { |
|
575 | - if ( 'post_type' === $sitemap_values['type'] ) { |
|
576 | - if ( isset( $sitemap_values['heirarchy'] ) && true === $sitemap_values['heirarchy'] ) { |
|
577 | - lsx_sitemap_pages( $sitemap_key, $sitemap_values['label'] ); |
|
573 | + $sitemap_loops = apply_filters('lsx_sitemap_loops_list', $sitemap_loops); |
|
574 | + foreach ($sitemap_loops as $sitemap_key => $sitemap_values) { |
|
575 | + if ('post_type' === $sitemap_values['type']) { |
|
576 | + if (isset($sitemap_values['heirarchy']) && true === $sitemap_values['heirarchy']) { |
|
577 | + lsx_sitemap_pages($sitemap_key, $sitemap_values['label']); |
|
578 | 578 | } else { |
579 | - lsx_sitemap_custom_post_type( $sitemap_key, $sitemap_values['label'] ); |
|
579 | + lsx_sitemap_custom_post_type($sitemap_key, $sitemap_values['label']); |
|
580 | 580 | } |
581 | 581 | } else { |
582 | - if ( isset( $sitemap_values['heirarchy'] ) && true === $sitemap_values['heirarchy'] ) { |
|
583 | - lsx_sitemap_taxonomy( $sitemap_key, $sitemap_values['label'], true ); |
|
582 | + if (isset($sitemap_values['heirarchy']) && true === $sitemap_values['heirarchy']) { |
|
583 | + lsx_sitemap_taxonomy($sitemap_key, $sitemap_values['label'], true); |
|
584 | 584 | } else { |
585 | - lsx_sitemap_taxonomy( $sitemap_key, $sitemap_values['label'], false ); |
|
585 | + lsx_sitemap_taxonomy($sitemap_key, $sitemap_values['label'], false); |
|
586 | 586 | } |
587 | 587 | } |
588 | 588 | } |
589 | 589 | } |
590 | 590 | } |
591 | 591 | |
592 | -if ( ! function_exists( 'lsx_sitemap_pages' ) ) : |
|
592 | +if ( ! function_exists('lsx_sitemap_pages')) : |
|
593 | 593 | |
594 | 594 | /** |
595 | 595 | * Outputs Pages for the Sitemap Template. |
@@ -597,7 +597,7 @@ discard block |
||
597 | 597 | * @package lsx |
598 | 598 | * @subpackage template-tags |
599 | 599 | */ |
600 | - function lsx_sitemap_pages( $forced_type = '', $label = '' ) { |
|
600 | + function lsx_sitemap_pages($forced_type = '', $label = '') { |
|
601 | 601 | $page_args = array( |
602 | 602 | 'depth' => 3, |
603 | 603 | 'title_li' => '', |
@@ -606,15 +606,15 @@ discard block |
||
606 | 606 | 'post_type' => $forced_type, |
607 | 607 | 'item_spacing' => 'preserve', |
608 | 608 | ); |
609 | - echo '<h2>' . esc_html( $label ) . '</h2>'; |
|
609 | + echo '<h2>' . esc_html($label) . '</h2>'; |
|
610 | 610 | echo '<ul>'; |
611 | - wp_list_pages( $page_args ); |
|
611 | + wp_list_pages($page_args); |
|
612 | 612 | echo '</ul>'; |
613 | 613 | } |
614 | 614 | |
615 | 615 | endif; |
616 | 616 | |
617 | -if ( ! function_exists( 'lsx_sitemap_custom_post_type' ) ) : |
|
617 | +if ( ! function_exists('lsx_sitemap_custom_post_type')) : |
|
618 | 618 | |
619 | 619 | /** |
620 | 620 | * Outputs a custom post type section. |
@@ -622,18 +622,18 @@ discard block |
||
622 | 622 | * @package lsx |
623 | 623 | * @subpackage template-tags |
624 | 624 | */ |
625 | - function lsx_sitemap_custom_post_type( $forced_type = '', $label = '' ) { |
|
626 | - if ( '' !== $forced_type ) { |
|
627 | - $post_types = array( $forced_type ); |
|
625 | + function lsx_sitemap_custom_post_type($forced_type = '', $label = '') { |
|
626 | + if ('' !== $forced_type) { |
|
627 | + $post_types = array($forced_type); |
|
628 | 628 | } else { |
629 | 629 | $args = array( |
630 | 630 | 'public' => true, |
631 | 631 | '_builtin' => false, |
632 | 632 | ); |
633 | - $post_types = get_post_types( $args, 'names' ); |
|
633 | + $post_types = get_post_types($args, 'names'); |
|
634 | 634 | } |
635 | 635 | |
636 | - foreach ( $post_types as $post_type ) { |
|
636 | + foreach ($post_types as $post_type) { |
|
637 | 637 | $post_type_args = array( |
638 | 638 | 'post_type' => 'page', |
639 | 639 | 'posts_per_page' => 99, |
@@ -641,24 +641,24 @@ discard block |
||
641 | 641 | 'post_type' => $post_type, |
642 | 642 | ); |
643 | 643 | |
644 | - $post_type_items = new WP_Query( $post_type_args ); |
|
645 | - $post_type_object = get_post_type_object( $post_type ); |
|
644 | + $post_type_items = new WP_Query($post_type_args); |
|
645 | + $post_type_object = get_post_type_object($post_type); |
|
646 | 646 | |
647 | - if ( '' !== $label ) { |
|
647 | + if ('' !== $label) { |
|
648 | 648 | $title = $label; |
649 | - } elseif ( ! empty( $post_type_object ) ) { |
|
649 | + } elseif ( ! empty($post_type_object)) { |
|
650 | 650 | $title = $post_type_object->labels->name; |
651 | 651 | } else { |
652 | - $title = ucwords( $post_type ); |
|
652 | + $title = ucwords($post_type); |
|
653 | 653 | } |
654 | 654 | |
655 | - if ( $post_type_items->have_posts() ) { |
|
656 | - echo '<h2>' . esc_html( $title ) . '</h2>'; |
|
655 | + if ($post_type_items->have_posts()) { |
|
656 | + echo '<h2>' . esc_html($title) . '</h2>'; |
|
657 | 657 | echo '<ul>'; |
658 | 658 | |
659 | - while ( $post_type_items->have_posts() ) { |
|
659 | + while ($post_type_items->have_posts()) { |
|
660 | 660 | $post_type_items->the_post(); |
661 | - echo '<li class="' . esc_attr( get_post_type() ) . '_item ' . esc_attr( get_post_type() ) . '-item-' . esc_attr( get_the_ID() ) . '"><a href="' . esc_url( get_permalink() ) . '" title="">' . get_the_title() . '</a></li>'; |
|
661 | + echo '<li class="' . esc_attr(get_post_type()) . '_item ' . esc_attr(get_post_type()) . '-item-' . esc_attr(get_the_ID()) . '"><a href="' . esc_url(get_permalink()) . '" title="">' . get_the_title() . '</a></li>'; |
|
662 | 662 | } |
663 | 663 | |
664 | 664 | echo '</ul>'; |
@@ -674,8 +674,8 @@ discard block |
||
674 | 674 | * |
675 | 675 | * @return void |
676 | 676 | */ |
677 | -function lsx_sitemap_taxonomy( $taxonomy = '', $label = '', $hierarchical = false ) { |
|
678 | - if ( '' !== $taxonomy ) { |
|
677 | +function lsx_sitemap_taxonomy($taxonomy = '', $label = '', $hierarchical = false) { |
|
678 | + if ('' !== $taxonomy) { |
|
679 | 679 | |
680 | 680 | $tax_args = array( |
681 | 681 | 'echo' => 0, |
@@ -685,24 +685,24 @@ discard block |
||
685 | 685 | 'hierarchical' => $hierarchical, |
686 | 686 | 'separator' => '<br />', |
687 | 687 | 'show_count' => 0, |
688 | - 'show_option_none' => __( 'None', 'lsx' ), |
|
688 | + 'show_option_none' => __('None', 'lsx'), |
|
689 | 689 | 'style' => 'list', |
690 | 690 | 'taxonomy' => $taxonomy, |
691 | 691 | 'title_li' => '', |
692 | 692 | ); |
693 | - $categories = wp_list_categories( $tax_args ); |
|
694 | - if ( ! empty( $categories ) ) { |
|
693 | + $categories = wp_list_categories($tax_args); |
|
694 | + if ( ! empty($categories)) { |
|
695 | 695 | echo '<div class="sitemap-rows">'; |
696 | - echo '<h2>' . wp_kses_post( $label ) . '</h2>'; |
|
696 | + echo '<h2>' . wp_kses_post($label) . '</h2>'; |
|
697 | 697 | echo '<ul>'; |
698 | - echo wp_kses_post( $categories ); |
|
698 | + echo wp_kses_post($categories); |
|
699 | 699 | echo '</ul>'; |
700 | 700 | echo '</div>'; |
701 | 701 | } |
702 | 702 | } |
703 | 703 | } |
704 | 704 | |
705 | -if ( ! function_exists( 'lsx_sitemap_taxonomy_clouds' ) ) : |
|
705 | +if ( ! function_exists('lsx_sitemap_taxonomy_clouds')) : |
|
706 | 706 | |
707 | 707 | /** |
708 | 708 | * Outputs the public taxonomies. |
@@ -716,18 +716,18 @@ discard block |
||
716 | 716 | '_builtin' => false, |
717 | 717 | ); |
718 | 718 | |
719 | - $taxonomies = get_taxonomies( $taxonomy_args ); |
|
719 | + $taxonomies = get_taxonomies($taxonomy_args); |
|
720 | 720 | |
721 | - if ( ! empty( $taxonomies ) ) { |
|
722 | - foreach ( $taxonomies as $taxonomy_id => $taxonomy ) { |
|
723 | - $tag_cloud = wp_tag_cloud( array( |
|
721 | + if ( ! empty($taxonomies)) { |
|
722 | + foreach ($taxonomies as $taxonomy_id => $taxonomy) { |
|
723 | + $tag_cloud = wp_tag_cloud(array( |
|
724 | 724 | 'taxonomy' => $taxonomy_id, |
725 | 725 | 'echo' => false, |
726 | - ) ); |
|
726 | + )); |
|
727 | 727 | |
728 | - if ( ! empty( $tag_cloud ) ) { |
|
729 | - echo '<h2>' . esc_html( $taxonomy ) . '</h2>'; |
|
730 | - echo '<aside id="' . esc_attr( $taxonomy_id ) . '" class="widget widget_' . esc_attr( $taxonomy_id ) . '">' . esc_html( $tag_cloud ) . '</aside>'; |
|
728 | + if ( ! empty($tag_cloud)) { |
|
729 | + echo '<h2>' . esc_html($taxonomy) . '</h2>'; |
|
730 | + echo '<aside id="' . esc_attr($taxonomy_id) . '" class="widget widget_' . esc_attr($taxonomy_id) . '">' . esc_html($tag_cloud) . '</aside>'; |
|
731 | 731 | } |
732 | 732 | } |
733 | 733 | } |
@@ -735,7 +735,7 @@ discard block |
||
735 | 735 | |
736 | 736 | endif; |
737 | 737 | |
738 | -if ( ! function_exists( 'lsx_add_top_menu' ) ) : |
|
738 | +if ( ! function_exists('lsx_add_top_menu')) : |
|
739 | 739 | |
740 | 740 | /** |
741 | 741 | * Adds our top menu to the theme. |
@@ -744,28 +744,28 @@ discard block |
||
744 | 744 | * @subpackage template-tags |
745 | 745 | */ |
746 | 746 | function lsx_add_top_menu() { |
747 | - if ( has_nav_menu( 'top-menu' ) || has_nav_menu( 'top-menu-left' ) ) : |
|
747 | + if (has_nav_menu('top-menu') || has_nav_menu('top-menu-left')) : |
|
748 | 748 | ?> |
749 | 749 | <div id="top-menu" class="<?php lsx_top_menu_classes(); ?>"> |
750 | 750 | <div class="container"> |
751 | - <?php if ( has_nav_menu( 'top-menu' ) ) : ?> |
|
751 | + <?php if (has_nav_menu('top-menu')) : ?> |
|
752 | 752 | <nav class="top-menu"> |
753 | 753 | <?php |
754 | - wp_nav_menu( array( |
|
754 | + wp_nav_menu(array( |
|
755 | 755 | 'theme_location' => 'top-menu', |
756 | 756 | 'walker' => new LSX_Bootstrap_Navwalker(), |
757 | - ) ); |
|
757 | + )); |
|
758 | 758 | ?> |
759 | 759 | </nav> |
760 | 760 | <?php endif; ?> |
761 | 761 | |
762 | - <?php if ( has_nav_menu( 'top-menu-left' ) ) : ?> |
|
762 | + <?php if (has_nav_menu('top-menu-left')) : ?> |
|
763 | 763 | <nav class="top-menu pull-left"> |
764 | 764 | <?php |
765 | - wp_nav_menu( array( |
|
765 | + wp_nav_menu(array( |
|
766 | 766 | 'theme_location' => 'top-menu-left', |
767 | 767 | 'walker' => new LSX_Bootstrap_Navwalker(), |
768 | - ) ); |
|
768 | + )); |
|
769 | 769 | ?> |
770 | 770 | </nav> |
771 | 771 | <?php endif; ?> |
@@ -777,9 +777,9 @@ discard block |
||
777 | 777 | |
778 | 778 | endif; |
779 | 779 | |
780 | -add_action( 'lsx_header_before', 'lsx_add_top_menu' ); |
|
780 | +add_action('lsx_header_before', 'lsx_add_top_menu'); |
|
781 | 781 | |
782 | -if ( ! function_exists( 'lsx_get_my_url' ) ) : |
|
782 | +if ( ! function_exists('lsx_get_my_url')) : |
|
783 | 783 | |
784 | 784 | /** |
785 | 785 | * Return URL from a link in the content. |
@@ -788,11 +788,11 @@ discard block |
||
788 | 788 | * @subpackage template-tags |
789 | 789 | */ |
790 | 790 | function lsx_get_my_url() { |
791 | - if ( ! preg_match( '/^<a\s[^>]*?href=[\'"](.+?)[\'"]$/is', get_the_content(), $matches ) ) { |
|
791 | + if ( ! preg_match('/^<a\s[^>]*?href=[\'"](.+?)[\'"]$/is', get_the_content(), $matches)) { |
|
792 | 792 | return false; |
793 | 793 | } |
794 | 794 | |
795 | - return esc_url_raw( $matches[1] ); |
|
795 | + return esc_url_raw($matches[1]); |
|
796 | 796 | } |
797 | 797 | |
798 | 798 | endif; |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if ( ! defined('ABSPATH')) { |
|
3 | 3 | exit; // Exit if accessed directly |
4 | 4 | } |
5 | 5 | |
@@ -19,9 +19,9 @@ discard block |
||
19 | 19 | * Constructor. |
20 | 20 | */ |
21 | 21 | public function __construct() { |
22 | - add_action( 'init', array( $this, 'init' ) ); |
|
23 | - add_action( 'widgets_init', array( $this, 'lsx_widget_area_sensei_init' ), 100 ); |
|
24 | - add_filter( 'body_class', array( $this, 'lsx_widget_area_sensei_is_active' ) ); |
|
22 | + add_action('init', array($this, 'init')); |
|
23 | + add_action('widgets_init', array($this, 'lsx_widget_area_sensei_init'), 100); |
|
24 | + add_filter('body_class', array($this, 'lsx_widget_area_sensei_is_active')); |
|
25 | 25 | } // End __construct() |
26 | 26 | |
27 | 27 | /** |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | * @return self |
31 | 31 | */ |
32 | 32 | public static function instance() { |
33 | - if ( ! self::$instance ) { |
|
33 | + if ( ! self::$instance) { |
|
34 | 34 | self::$instance = new self(); |
35 | 35 | } |
36 | 36 | return self::$instance; |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | * Run our changes. |
41 | 41 | */ |
42 | 42 | public function init() { |
43 | - add_action( 'lsx_content_top', array( $this, 'lsx_sensei_lesson_sidebar' ) ); |
|
43 | + add_action('lsx_content_top', array($this, 'lsx_sensei_lesson_sidebar')); |
|
44 | 44 | |
45 | 45 | } |
46 | 46 | |
@@ -50,21 +50,21 @@ discard block |
||
50 | 50 | * @return void |
51 | 51 | */ |
52 | 52 | public function lsx_widget_area_sensei_init() { |
53 | - if ( class_exists( 'Sensei_Course_Participants' ) || class_exists( 'Sensei_Course_Progress' ) ) { |
|
54 | - register_sidebar( array( |
|
55 | - 'name' => esc_html__( 'LSX Sensei Sidebar', 'lsx' ), |
|
53 | + if (class_exists('Sensei_Course_Participants') || class_exists('Sensei_Course_Progress')) { |
|
54 | + register_sidebar(array( |
|
55 | + 'name' => esc_html__('LSX Sensei Sidebar', 'lsx'), |
|
56 | 56 | 'id' => 'lsx-sensei-sidebar', |
57 | 57 | 'before_widget' => '<aside id="%1$s" class="widget %2$s">', |
58 | 58 | 'after_widget' => '</aside>', |
59 | 59 | 'before_title' => '<h3 class="widget-title">', |
60 | 60 | 'after_title' => '</h3>', |
61 | - ) ); |
|
61 | + )); |
|
62 | 62 | } |
63 | 63 | } |
64 | 64 | |
65 | - public function lsx_widget_area_sensei_is_active( $classes ) { |
|
65 | + public function lsx_widget_area_sensei_is_active($classes) { |
|
66 | 66 | |
67 | - if ( class_exists( 'Sensei_Lesson' ) && is_active_sidebar( 'lsx-sensei-sidebar' ) ) { |
|
67 | + if (class_exists('Sensei_Lesson') && is_active_sidebar('lsx-sensei-sidebar')) { |
|
68 | 68 | $classes[] = 'lsx-sensei-sidebar-active'; |
69 | 69 | } |
70 | 70 | |
@@ -77,11 +77,11 @@ discard block |
||
77 | 77 | * @return void |
78 | 78 | */ |
79 | 79 | public function lsx_sensei_lesson_sidebar() { |
80 | - if ( class_exists( 'Sensei_Lesson' ) && ( class_exists( 'Sensei_Course_Participants' ) || class_exists( 'Sensei_Course_Progress' ) ) ) { |
|
81 | - if ( ( is_single() && ( is_singular( 'lesson' ) ) ) || ( is_single() && ( is_singular( 'quiz' ) ) ) ) { |
|
82 | - if ( is_active_sidebar( 'lsx-sensei-sidebar' ) ) { |
|
80 | + if (class_exists('Sensei_Lesson') && (class_exists('Sensei_Course_Participants') || class_exists('Sensei_Course_Progress'))) { |
|
81 | + if ((is_single() && (is_singular('lesson'))) || (is_single() && (is_singular('quiz')))) { |
|
82 | + if (is_active_sidebar('lsx-sensei-sidebar')) { |
|
83 | 83 | echo '<div id="secondary" class="widget-area lsx-sensei-sidebar">'; |
84 | - dynamic_sidebar( 'lsx-sensei-sidebar' ); |
|
84 | + dynamic_sidebar('lsx-sensei-sidebar'); |
|
85 | 85 | echo '</div>'; |
86 | 86 | } |
87 | 87 | } |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if ( ! defined('ABSPATH')) { |
|
3 | 3 | exit; // Exit if accessed directly |
4 | 4 | } |
5 | 5 | |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | * Constructor. |
20 | 20 | */ |
21 | 21 | public function __construct() { |
22 | - add_action( 'init', array( $this, 'init' ) ); |
|
22 | + add_action('init', array($this, 'init')); |
|
23 | 23 | } // End __construct() |
24 | 24 | |
25 | 25 | /** |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | * @return self |
29 | 29 | */ |
30 | 30 | public static function instance() { |
31 | - if ( ! self::$instance ) { |
|
31 | + if ( ! self::$instance) { |
|
32 | 32 | self::$instance = new self(); |
33 | 33 | } |
34 | 34 | return self::$instance; |
@@ -42,32 +42,32 @@ discard block |
||
42 | 42 | global $woothemes_sensei; |
43 | 43 | |
44 | 44 | //Switching the course filters and the headers around |
45 | - remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'archive_header' ), 10, 0 ); |
|
46 | - remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_sorting' ) ); |
|
47 | - remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_filters' ) ); |
|
48 | - add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'archive_header' ), 11, 0 ); |
|
49 | - add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_sorting' ), 12 ); |
|
50 | - add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_filters' ), 12 ); |
|
45 | + remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'archive_header'), 10, 0); |
|
46 | + remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_sorting')); |
|
47 | + remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_filters')); |
|
48 | + add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'archive_header'), 11, 0); |
|
49 | + add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_sorting'), 12); |
|
50 | + add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_filters'), 12); |
|
51 | 51 | |
52 | 52 | // First add the thumbnail. |
53 | - add_action( 'sensei_course_content_inside_before', array( $this, 'get_course_thumbnail' ), 1 ); |
|
53 | + add_action('sensei_course_content_inside_before', array($this, 'get_course_thumbnail'), 1); |
|
54 | 54 | |
55 | 55 | // This is for our wrapper, we run it on 2, after the thumbnail we added. |
56 | - add_action( 'sensei_course_content_inside_before', array( $this, 'course_body_div_open' ), 1 ); |
|
57 | - add_action( 'sensei_course_content_inside_after', array( $this, 'course_body_div_close' ), 50 ); |
|
56 | + add_action('sensei_course_content_inside_before', array($this, 'course_body_div_open'), 1); |
|
57 | + add_action('sensei_course_content_inside_after', array($this, 'course_body_div_close'), 50); |
|
58 | 58 | |
59 | 59 | // This is for our wrapper, we run it on 2, after the thumbnail we added. |
60 | - add_action( 'sensei_course_content_inside_before', array( $this, 'course_body_div_results_open' ), 20 ); |
|
61 | - add_action( 'sensei_course_content_inside_after', array( $this, 'course_body_div_results_close' ), 49 ); |
|
60 | + add_action('sensei_course_content_inside_before', array($this, 'course_body_div_results_open'), 20); |
|
61 | + add_action('sensei_course_content_inside_after', array($this, 'course_body_div_results_close'), 49); |
|
62 | 62 | |
63 | - add_action( 'sensei_single_course_content_inside_before', array( $this, 'display_course_amount' ), 20 ); |
|
63 | + add_action('sensei_single_course_content_inside_before', array($this, 'display_course_amount'), 20); |
|
64 | 64 | |
65 | 65 | // removes the course image above the content |
66 | - remove_action( 'sensei_course_content_inside_before', array( $woothemes_sensei->course, 'course_image' ), 30, 1 ); |
|
66 | + remove_action('sensei_course_content_inside_before', array($woothemes_sensei->course, 'course_image'), 30, 1); |
|
67 | 67 | // add the course image to the left of the content |
68 | - add_action( 'lsx_sensei_course_content_inside_before', array( $woothemes_sensei->course, 'course_image' ), 30, 1 ); |
|
68 | + add_action('lsx_sensei_course_content_inside_before', array($woothemes_sensei->course, 'course_image'), 30, 1); |
|
69 | 69 | |
70 | - add_filter( 'attach_shortcode_hooks', 'lsx_attach_shortcode_hooks', 10, 1 ); |
|
70 | + add_filter('attach_shortcode_hooks', 'lsx_attach_shortcode_hooks', 10, 1); |
|
71 | 71 | |
72 | 72 | } |
73 | 73 | |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | public function get_course_thumbnail() { |
80 | 80 | ?> |
81 | 81 | <div class="course-thumbnail"> |
82 | - <?php do_action( 'lsx_sensei_course_content_inside_before', get_the_ID() ); ?> |
|
82 | + <?php do_action('lsx_sensei_course_content_inside_before', get_the_ID()); ?> |
|
83 | 83 | </div> |
84 | 84 | <?php |
85 | 85 | } |
@@ -91,13 +91,13 @@ discard block |
||
91 | 91 | */ |
92 | 92 | public function course_body_div_open() { |
93 | 93 | global $post, $current_user; |
94 | - $is_user_taking_course = Sensei_Utils::user_started_course( $post->ID, $current_user->ID ); |
|
94 | + $is_user_taking_course = Sensei_Utils::user_started_course($post->ID, $current_user->ID); |
|
95 | 95 | $user_taking_course_class = ''; |
96 | - if ( ! empty( $is_user_taking_course ) ) { |
|
96 | + if ( ! empty($is_user_taking_course)) { |
|
97 | 97 | $user_taking_course_class = 'currently-in-course'; |
98 | 98 | } |
99 | 99 | ?> |
100 | - <div class="course-body <?php echo esc_html( $user_taking_course_class ); ?>"> |
|
100 | + <div class="course-body <?php echo esc_html($user_taking_course_class); ?>"> |
|
101 | 101 | <?php |
102 | 102 | } |
103 | 103 | |
@@ -141,16 +141,16 @@ discard block |
||
141 | 141 | */ |
142 | 142 | public function display_course_amount() { |
143 | 143 | global $post, $current_user; |
144 | - $is_user_taking_course = Sensei_Utils::user_started_course( $post->ID, $current_user->ID ); |
|
145 | - $wc_post_id = absint( get_post_meta( $post->ID, '_course_woocommerce_product', true ) ); |
|
146 | - if ( class_exists( 'Sensei_WC' ) ) { |
|
147 | - $course_purchasable = Sensei_WC::is_course_purchasable( $post->ID ); |
|
144 | + $is_user_taking_course = Sensei_Utils::user_started_course($post->ID, $current_user->ID); |
|
145 | + $wc_post_id = absint(get_post_meta($post->ID, '_course_woocommerce_product', true)); |
|
146 | + if (class_exists('Sensei_WC')) { |
|
147 | + $course_purchasable = Sensei_WC::is_course_purchasable($post->ID); |
|
148 | 148 | $currency = get_woocommerce_currency_symbol(); |
149 | - $product = new WC_Product( $wc_post_id ); |
|
150 | - if ( ( ! empty( $product->price ) ) && ( ! $is_user_taking_course ) ) { |
|
151 | - echo '<span class="course-product-price price"><span>' . esc_html( $currency ) . ' </span>' . sprintf( '%0.2f', esc_html( $product->price ) ) . '</span>'; |
|
152 | - } elseif ( ( '' === $product->get_price() || 0 == $product->get_price() ) && $course_purchasable ) { |
|
153 | - echo '<span class="course-product-price price">' . wp_kses_post( 'Free!', 'lsx' ) . '</span>'; |
|
149 | + $product = new WC_Product($wc_post_id); |
|
150 | + if (( ! empty($product->price)) && ( ! $is_user_taking_course)) { |
|
151 | + echo '<span class="course-product-price price"><span>' . esc_html($currency) . ' </span>' . sprintf('%0.2f', esc_html($product->price)) . '</span>'; |
|
152 | + } elseif (('' === $product->get_price() || 0 == $product->get_price()) && $course_purchasable) { |
|
153 | + echo '<span class="course-product-price price">' . wp_kses_post('Free!', 'lsx') . '</span>'; |
|
154 | 154 | } |
155 | 155 | } |
156 | 156 | } |
@@ -6,25 +6,25 @@ 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 | * Layout selector. |
16 | 16 | * |
17 | 17 | * @package lsx |
18 | 18 | * @subpackage layout |
19 | 19 | */ |
20 | - function lsx_layout_selector( $class, $area = 'site' ) { |
|
20 | + function lsx_layout_selector($class, $area = 'site') { |
|
21 | 21 | $return_class = ''; |
22 | - $layout = get_theme_mod( 'lsx_layout', '1c' ); |
|
23 | - $layout = apply_filters( 'lsx_layout', $layout ); |
|
22 | + $layout = get_theme_mod('lsx_layout', '1c'); |
|
23 | + $layout = apply_filters('lsx_layout', $layout); |
|
24 | 24 | $default_size = 'sm'; |
25 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
25 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
26 | 26 | |
27 | - switch ( $layout ) { |
|
27 | + switch ($layout) { |
|
28 | 28 | case '1c': |
29 | 29 | $main_class = 'col-' . $size . '-12'; |
30 | 30 | $sidebar_class = 'col-' . $size . '-12'; |
@@ -43,19 +43,19 @@ discard block |
||
43 | 43 | break; |
44 | 44 | } |
45 | 45 | |
46 | - if ( 'main' === $class ) { |
|
47 | - $return_class = apply_filters( 'lsx_layout_selector', $main_class, $class, $layout, $size ); |
|
46 | + if ('main' === $class) { |
|
47 | + $return_class = apply_filters('lsx_layout_selector', $main_class, $class, $layout, $size); |
|
48 | 48 | } |
49 | 49 | |
50 | - if ( 'sidebar' === $class ) { |
|
51 | - $return_class = apply_filters( 'lsx_layout_selector', $sidebar_class, $class, $layout, $size ); |
|
50 | + if ('sidebar' === $class) { |
|
51 | + $return_class = apply_filters('lsx_layout_selector', $sidebar_class, $class, $layout, $size); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | return $return_class; |
55 | 55 | } |
56 | 56 | endif; |
57 | 57 | |
58 | -if ( ! function_exists( 'lsx_main_class' ) ) : |
|
58 | +if ( ! function_exists('lsx_main_class')) : |
|
59 | 59 | /** |
60 | 60 | * .main classes. |
61 | 61 | * |
@@ -63,11 +63,11 @@ discard block |
||
63 | 63 | * @subpackage layout |
64 | 64 | */ |
65 | 65 | function lsx_main_class() { |
66 | - return lsx_layout_selector( 'main' ); |
|
66 | + return lsx_layout_selector('main'); |
|
67 | 67 | } |
68 | 68 | endif; |
69 | 69 | |
70 | -if ( ! function_exists( 'lsx_sidebar_class' ) ) : |
|
70 | +if ( ! function_exists('lsx_sidebar_class')) : |
|
71 | 71 | /** |
72 | 72 | * .sidebar classes. |
73 | 73 | * |
@@ -75,47 +75,47 @@ discard block |
||
75 | 75 | * @subpackage layout |
76 | 76 | */ |
77 | 77 | function lsx_sidebar_class() { |
78 | - return lsx_layout_selector( 'sidebar' ); |
|
78 | + return lsx_layout_selector('sidebar'); |
|
79 | 79 | } |
80 | 80 | endif; |
81 | 81 | |
82 | -if ( ! function_exists( 'lsx_header_classes' ) ) : |
|
82 | +if ( ! function_exists('lsx_header_classes')) : |
|
83 | 83 | /** |
84 | 84 | * Output the classes for the header. |
85 | 85 | * |
86 | 86 | * @package lsx |
87 | 87 | * @subpackage layout |
88 | 88 | */ |
89 | - function lsx_header_classes( $additional = false ) { |
|
89 | + function lsx_header_classes($additional = false) { |
|
90 | 90 | $classes = 'banner navbar navbar-default'; |
91 | 91 | |
92 | - if ( false !== $additional ) { |
|
92 | + if (false !== $additional) { |
|
93 | 93 | $classes .= ' ' . $additional; |
94 | 94 | } |
95 | 95 | |
96 | - echo esc_attr( $classes ); |
|
96 | + echo esc_attr($classes); |
|
97 | 97 | } |
98 | 98 | endif; |
99 | 99 | |
100 | -if ( ! function_exists( 'lsx_top_menu_classes' ) ) : |
|
100 | +if ( ! function_exists('lsx_top_menu_classes')) : |
|
101 | 101 | /** |
102 | 102 | * Output the classes for the top-menu. |
103 | 103 | * |
104 | 104 | * @package lsx |
105 | 105 | * @subpackage layout |
106 | 106 | */ |
107 | - function lsx_top_menu_classes( $additional = false ) { |
|
107 | + function lsx_top_menu_classes($additional = false) { |
|
108 | 108 | $classes = 'top-menu-default'; |
109 | 109 | |
110 | - if ( false !== $additional ) { |
|
110 | + if (false !== $additional) { |
|
111 | 111 | $classes .= ' ' . $additional; |
112 | 112 | } |
113 | 113 | |
114 | - echo esc_attr( $classes ); |
|
114 | + echo esc_attr($classes); |
|
115 | 115 | } |
116 | 116 | endif; |
117 | 117 | |
118 | -if ( ! function_exists( 'lsx_add_footer_sidebar_area' ) ) : |
|
118 | +if ( ! function_exists('lsx_add_footer_sidebar_area')) : |
|
119 | 119 | /** |
120 | 120 | * Output the Footer CTA and/pr Footer Widgets. |
121 | 121 | * |
@@ -123,32 +123,32 @@ discard block |
||
123 | 123 | * @subpackage layout |
124 | 124 | */ |
125 | 125 | function lsx_add_footer_sidebar_area() { |
126 | - if ( is_active_sidebar( 'sidebar-footer-cta' ) ) : ?> |
|
126 | + if (is_active_sidebar('sidebar-footer-cta')) : ?> |
|
127 | 127 | <div id="footer-cta"> |
128 | 128 | <div class="container"> |
129 | 129 | <div class="lsx-full-width"> |
130 | 130 | <div class="lsx-hero-unit"> |
131 | - <?php dynamic_sidebar( 'sidebar-footer-cta' ); ?> |
|
131 | + <?php dynamic_sidebar('sidebar-footer-cta'); ?> |
|
132 | 132 | </div> |
133 | 133 | </div> |
134 | 134 | </div> |
135 | 135 | </div> |
136 | 136 | <?php endif; ?> |
137 | 137 | |
138 | - <?php if ( is_active_sidebar( 'sidebar-footer' ) ) : ?> |
|
138 | + <?php if (is_active_sidebar('sidebar-footer')) : ?> |
|
139 | 139 | <div id="footer-widgets"> |
140 | 140 | <div class="container"> |
141 | 141 | <div class="row"> |
142 | - <?php dynamic_sidebar( 'sidebar-footer' ); ?> |
|
142 | + <?php dynamic_sidebar('sidebar-footer'); ?> |
|
143 | 143 | </div> |
144 | 144 | </div> |
145 | 145 | </div> |
146 | 146 | <?php endif; |
147 | 147 | } |
148 | - add_action( 'lsx_footer_before', 'lsx_add_footer_sidebar_area' ); |
|
148 | + add_action('lsx_footer_before', 'lsx_add_footer_sidebar_area'); |
|
149 | 149 | endif; |
150 | 150 | |
151 | -if ( ! function_exists( 'lsx_global_header' ) ) : |
|
151 | +if ( ! function_exists('lsx_global_header')) : |
|
152 | 152 | /** |
153 | 153 | * Displays the global header. |
154 | 154 | * |
@@ -156,23 +156,23 @@ discard block |
||
156 | 156 | * @subpackage layout |
157 | 157 | */ |
158 | 158 | function lsx_global_header() { |
159 | - $show_on_front = get_option( 'show_on_front' ); |
|
159 | + $show_on_front = get_option('show_on_front'); |
|
160 | 160 | $queried_object = get_queried_object(); |
161 | 161 | $default_size = 'sm'; |
162 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
162 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
163 | 163 | |
164 | 164 | //Pages have their own banner function 'lsx_page_banner()' |
165 | 165 | // if ( function_exists( 'is_woocommerce' ) && ( is_woocommerce() || is_checkout() || is_cart() || is_account_page() ) ) { |
166 | 166 | // return; |
167 | 167 | // } |
168 | 168 | //Product pages have their own banner function 'lsx_page_banner()' |
169 | - if ( function_exists( 'is_woocommerce' ) && ( is_product() ) ) { |
|
169 | + if (function_exists('is_woocommerce') && (is_product())) { |
|
170 | 170 | return; |
171 | 171 | } |
172 | 172 | |
173 | - if ( is_page() && ( 'page' !== $show_on_front || ! is_front_page() ) ) : |
|
173 | + if (is_page() && ('page' !== $show_on_front || ! is_front_page())) : |
|
174 | 174 | ?> |
175 | - <div class="archive-header-wrapper banner-page col-<?php echo esc_attr( $size ); ?>-12"> |
|
175 | + <div class="archive-header-wrapper banner-page col-<?php echo esc_attr($size); ?>-12"> |
|
176 | 176 | <?php lsx_global_header_inner_bottom(); ?> |
177 | 177 | <header class="archive-header"> |
178 | 178 | <h1 class="archive-title"><?php the_title(); ?></h1> |
@@ -180,26 +180,26 @@ discard block |
||
180 | 180 | |
181 | 181 | </div> |
182 | 182 | <?php |
183 | - elseif ( is_single() && ! is_singular( 'post' ) ) : |
|
183 | + elseif (is_single() && ! is_singular('post')) : |
|
184 | 184 | ?> |
185 | - <div class="archive-header-wrapper banner-single col-<?php echo esc_attr( $size ); ?>-12"> |
|
185 | + <div class="archive-header-wrapper banner-single col-<?php echo esc_attr($size); ?>-12"> |
|
186 | 186 | <?php lsx_global_header_inner_bottom(); ?> |
187 | 187 | <header class="archive-header"> |
188 | - <h1 class="archive-title"><?php echo wp_kses_post( apply_filters( 'lsx_global_header_title', get_the_title() ) ); ?></h1> |
|
188 | + <h1 class="archive-title"><?php echo wp_kses_post(apply_filters('lsx_global_header_title', get_the_title())); ?></h1> |
|
189 | 189 | </header> |
190 | 190 | |
191 | 191 | </div> |
192 | 192 | <?php |
193 | - elseif ( is_search() ) : |
|
193 | + elseif (is_search()) : |
|
194 | 194 | ?> |
195 | - <div class="archive-header-wrapper banner-search col-<?php echo esc_attr( $size ); ?>-12"> |
|
195 | + <div class="archive-header-wrapper banner-search col-<?php echo esc_attr($size); ?>-12"> |
|
196 | 196 | <?php lsx_global_header_inner_bottom(); ?> |
197 | 197 | <header class="archive-header"> |
198 | 198 | <h1 class="archive-title"> |
199 | 199 | <?php |
200 | 200 | printf( |
201 | 201 | /* Translators: %s: search term/query */ |
202 | - esc_html__( 'Search Results for: %s', 'lsx' ), |
|
202 | + esc_html__('Search Results for: %s', 'lsx'), |
|
203 | 203 | '<span>' . get_search_query() . '</span>' |
204 | 204 | ); |
205 | 205 | ?> |
@@ -208,12 +208,12 @@ discard block |
||
208 | 208 | |
209 | 209 | </div> |
210 | 210 | <?php |
211 | - elseif ( is_author() ) : |
|
211 | + elseif (is_author()) : |
|
212 | 212 | $author = get_the_author(); |
213 | - $author_avatar = get_avatar( get_the_author_meta( 'ID' ), 256 ); |
|
213 | + $author_avatar = get_avatar(get_the_author_meta('ID'), 256); |
|
214 | 214 | $author_bio = get_the_archive_description(); |
215 | 215 | ?> |
216 | - <div class="archive-header-wrapper banner-archive-author col-<?php echo esc_attr( $size ); ?>-12"> |
|
216 | + <div class="archive-header-wrapper banner-archive-author col-<?php echo esc_attr($size); ?>-12"> |
|
217 | 217 | <?php lsx_global_header_inner_bottom(); ?> |
218 | 218 | <header class="archive-header"> |
219 | 219 | <h1 class="archive-title"><?php the_archive_title(); ?></h1> |
@@ -221,16 +221,16 @@ discard block |
||
221 | 221 | |
222 | 222 | </div> |
223 | 223 | <?php |
224 | - elseif ( is_archive() ) : |
|
224 | + elseif (is_archive()) : |
|
225 | 225 | ?> |
226 | - <div class="archive-header-wrapper banner-archive col-<?php echo esc_attr( $size ); ?>-12"> |
|
226 | + <div class="archive-header-wrapper banner-archive col-<?php echo esc_attr($size); ?>-12"> |
|
227 | 227 | <?php lsx_global_header_inner_bottom(); ?> |
228 | 228 | <header class="archive-header"> |
229 | 229 | <h1 class="archive-title"> |
230 | - <?php if ( has_post_format() && ! is_category() && ! is_tag() && ! is_date() && ! is_tax( 'post_format' ) ) { ?> |
|
231 | - <?php the_archive_title( esc_html__( 'Type:', 'lsx' ) ); ?> |
|
230 | + <?php if (has_post_format() && ! is_category() && ! is_tag() && ! is_date() && ! is_tax('post_format')) { ?> |
|
231 | + <?php the_archive_title(esc_html__('Type:', 'lsx')); ?> |
|
232 | 232 | <?php } else { ?> |
233 | - <?php echo wp_kses_post( apply_filters( 'lsx_global_header_title', get_the_archive_title() ) ); ?> |
|
233 | + <?php echo wp_kses_post(apply_filters('lsx_global_header_title', get_the_archive_title())); ?> |
|
234 | 234 | <?php } ?> |
235 | 235 | </h1> |
236 | 236 | |
@@ -238,36 +238,36 @@ discard block |
||
238 | 238 | </header> |
239 | 239 | </div> |
240 | 240 | <?php |
241 | - elseif ( 'page' === $show_on_front && (int) get_option( 'page_for_posts' ) === $queried_object->ID ) : |
|
241 | + elseif ('page' === $show_on_front && (int) get_option('page_for_posts') === $queried_object->ID) : |
|
242 | 242 | ?> |
243 | - <div class="archive-header-wrapper banner-page col-<?php echo esc_attr( $size ); ?>-12"> |
|
243 | + <div class="archive-header-wrapper banner-page col-<?php echo esc_attr($size); ?>-12"> |
|
244 | 244 | <?php lsx_global_header_inner_bottom(); ?> |
245 | 245 | <header class="archive-header"> |
246 | - <h1 class="archive-title"><?php esc_html_e( 'Blog', 'lsx' ); ?></h1> |
|
246 | + <h1 class="archive-title"><?php esc_html_e('Blog', 'lsx'); ?></h1> |
|
247 | 247 | </header> |
248 | 248 | |
249 | 249 | </div> |
250 | 250 | <?php |
251 | - elseif ( ! is_singular( 'post' ) ) : |
|
251 | + elseif ( ! is_singular('post')) : |
|
252 | 252 | // Display only the breadcrumbs |
253 | 253 | ?> |
254 | - <div class="archive-header-wrapper banner-singular col-<?php echo esc_attr( $size ); ?>-12"> |
|
254 | + <div class="archive-header-wrapper banner-singular col-<?php echo esc_attr($size); ?>-12"> |
|
255 | 255 | <?php lsx_global_header_inner_bottom(); ?> |
256 | 256 | </div> |
257 | 257 | <?php |
258 | - elseif ( ( true === apply_filters( 'lsx_global_header_disable', false ) ) && ( ! is_search() ) ) : |
|
258 | + elseif ((true === apply_filters('lsx_global_header_disable', false)) && ( ! is_search())) : |
|
259 | 259 | // Display only the breadcrumbs |
260 | 260 | ?> |
261 | - <div class="archive-header-wrapper banner-global col-<?php echo esc_attr( $size ); ?>-12"> |
|
261 | + <div class="archive-header-wrapper banner-global col-<?php echo esc_attr($size); ?>-12"> |
|
262 | 262 | <?php lsx_global_header_inner_bottom(); ?> |
263 | 263 | </div> |
264 | 264 | <?php |
265 | 265 | endif; |
266 | 266 | } |
267 | - add_action( 'lsx_content_wrap_before', 'lsx_global_header' ); |
|
267 | + add_action('lsx_content_wrap_before', 'lsx_global_header'); |
|
268 | 268 | endif; |
269 | 269 | |
270 | -if ( ! function_exists( 'lsx_author_extra_info' ) ) : |
|
270 | +if ( ! function_exists('lsx_author_extra_info')) : |
|
271 | 271 | /** |
272 | 272 | * Displays the author extra info. |
273 | 273 | * |
@@ -276,83 +276,83 @@ discard block |
||
276 | 276 | */ |
277 | 277 | function lsx_author_extra_info() { |
278 | 278 | $default_size = 'sm'; |
279 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
279 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
280 | 280 | |
281 | - if ( is_author() ) : |
|
282 | - $author_id = get_the_author_meta( 'ID' ); |
|
281 | + if (is_author()) : |
|
282 | + $author_id = get_the_author_meta('ID'); |
|
283 | 283 | $author = get_the_author(); |
284 | - $author_avatar = get_avatar( $author_id, 400 ); |
|
284 | + $author_avatar = get_avatar($author_id, 400); |
|
285 | 285 | $author_bio = get_the_archive_description(); |
286 | - $author_url = get_the_author_meta( 'url', $author_id ); |
|
287 | - $author_email = get_the_author_meta( 'email', $author_id ); |
|
288 | - $author_facebook = get_the_author_meta( 'facebook', $author_id ); |
|
289 | - $author_linkedin = get_the_author_meta( 'linkedin', $author_id ); |
|
290 | - $author_twitter = get_the_author_meta( 'twitter', $author_id ); |
|
291 | - $author_googleplus = get_the_author_meta( 'googleplus', $author_id ); |
|
286 | + $author_url = get_the_author_meta('url', $author_id); |
|
287 | + $author_email = get_the_author_meta('email', $author_id); |
|
288 | + $author_facebook = get_the_author_meta('facebook', $author_id); |
|
289 | + $author_linkedin = get_the_author_meta('linkedin', $author_id); |
|
290 | + $author_twitter = get_the_author_meta('twitter', $author_id); |
|
291 | + $author_googleplus = get_the_author_meta('googleplus', $author_id); |
|
292 | 292 | ?> |
293 | - <div class="col-<?php echo esc_attr( $size ); ?>-12"> |
|
293 | + <div class="col-<?php echo esc_attr($size); ?>-12"> |
|
294 | 294 | <div class="archive-author-data"> |
295 | 295 | <div class="row"> |
296 | - <?php if ( ! empty( $author_avatar ) ) : ?> |
|
296 | + <?php if ( ! empty($author_avatar)) : ?> |
|
297 | 297 | <div class="col-xs-12 col-sm-4 col-md-3"> |
298 | - <figure class="archive-author-avatar"><?php echo wp_kses_post( $author_avatar ); ?></figure> |
|
298 | + <figure class="archive-author-avatar"><?php echo wp_kses_post($author_avatar); ?></figure> |
|
299 | 299 | </div> |
300 | 300 | <?php endif; ?> |
301 | 301 | <div class="col-xs-12 col-sm-8 col-md-9"> |
302 | - <a class="back-to-blog" href="<?php echo ( esc_url( get_post_type_archive_link( 'post' ) ) ); ?>"><?php echo esc_html__( 'Back To Blog', 'lsx' ); ?></a> |
|
302 | + <a class="back-to-blog" href="<?php echo (esc_url(get_post_type_archive_link('post'))); ?>"><?php echo esc_html__('Back To Blog', 'lsx'); ?></a> |
|
303 | 303 | <!-- Name --> |
304 | 304 | <h2 class="archive-author-title"> |
305 | 305 | <?php |
306 | - if ( '' !== $author ) { |
|
307 | - echo esc_html( $author ); |
|
306 | + if ('' !== $author) { |
|
307 | + echo esc_html($author); |
|
308 | 308 | } |
309 | 309 | ?> |
310 | 310 | </h2> |
311 | 311 | <!-- Social --> |
312 | - <?php if ( ! empty( $author_url ) || ! empty( $author_email ) || ! empty( $author_facebook ) || ! empty( $author_twitter ) || ! empty( $author_googleplus ) ) : ?> |
|
312 | + <?php if ( ! empty($author_url) || ! empty($author_email) || ! empty($author_facebook) || ! empty($author_twitter) || ! empty($author_googleplus)) : ?> |
|
313 | 313 | <div class="archive-author-social-links"> |
314 | - <?php if ( ! empty( $author_url ) ) : ?> |
|
315 | - <a href="<?php echo esc_url( $author_url ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-url"><i class="fa fa-link" aria-hidden="true"></i></a> |
|
314 | + <?php if ( ! empty($author_url)) : ?> |
|
315 | + <a href="<?php echo esc_url($author_url); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-url"><i class="fa fa-link" aria-hidden="true"></i></a> |
|
316 | 316 | <?php endif; ?> |
317 | 317 | |
318 | - <?php if ( ! empty( $author_email ) ) : ?> |
|
319 | - <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> |
|
318 | + <?php if ( ! empty($author_email)) : ?> |
|
319 | + <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> |
|
320 | 320 | <?php endif; ?> |
321 | 321 | |
322 | - <?php if ( ! empty( $author_facebook ) ) : ?> |
|
323 | - <a href="<?php echo esc_url( $author_facebook ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a> |
|
322 | + <?php if ( ! empty($author_facebook)) : ?> |
|
323 | + <a href="<?php echo esc_url($author_facebook); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a> |
|
324 | 324 | <?php endif; ?> |
325 | 325 | |
326 | - <?php if ( ! empty( $author_twitter ) ) : ?> |
|
327 | - <a href="https://twitter.com/<?php echo esc_attr( $author_twitter ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a> |
|
326 | + <?php if ( ! empty($author_twitter)) : ?> |
|
327 | + <a href="https://twitter.com/<?php echo esc_attr($author_twitter); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a> |
|
328 | 328 | <?php endif; ?> |
329 | 329 | |
330 | - <?php if ( ! empty( $author_linkedin ) ) : ?> |
|
331 | - <a href="<?php echo esc_url( $author_linkedin ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-linkedin"><i class="fa fa-linkedin" aria-hidden="true"></i></a> |
|
330 | + <?php if ( ! empty($author_linkedin)) : ?> |
|
331 | + <a href="<?php echo esc_url($author_linkedin); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-linkedin"><i class="fa fa-linkedin" aria-hidden="true"></i></a> |
|
332 | 332 | <?php endif; ?> |
333 | 333 | |
334 | - <?php if ( ! empty( $author_googleplus ) ) : ?> |
|
335 | - <a href="<?php echo esc_url( $author_googleplus ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-googleplus"><i class="fa fa-google-plus" aria-hidden="true"></i></a> |
|
334 | + <?php if ( ! empty($author_googleplus)) : ?> |
|
335 | + <a href="<?php echo esc_url($author_googleplus); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-googleplus"><i class="fa fa-google-plus" aria-hidden="true"></i></a> |
|
336 | 336 | <?php endif; ?> |
337 | 337 | </div> |
338 | 338 | <?php endif; ?> |
339 | 339 | |
340 | 340 | <!-- Bio --> |
341 | - <?php if ( ! empty( $author_bio ) ) : ?> |
|
342 | - <p class="archive-author-bio"><?php echo wp_kses_post( $author_bio ); ?></p> |
|
341 | + <?php if ( ! empty($author_bio)) : ?> |
|
342 | + <p class="archive-author-bio"><?php echo wp_kses_post($author_bio); ?></p> |
|
343 | 343 | <?php endif; ?> |
344 | 344 | </div> |
345 | 345 | </div> |
346 | 346 | </div> |
347 | - <h2><?php echo esc_html__( 'Posts', 'lsx' ); ?></h2> |
|
347 | + <h2><?php echo esc_html__('Posts', 'lsx'); ?></h2> |
|
348 | 348 | </div> |
349 | 349 | <?php |
350 | 350 | endif; |
351 | 351 | } |
352 | - add_action( 'lsx_content_wrap_before', 'lsx_author_extra_info', 11 ); |
|
352 | + add_action('lsx_content_wrap_before', 'lsx_author_extra_info', 11); |
|
353 | 353 | endif; |
354 | 354 | |
355 | -if ( ! function_exists( 'lsx_post_header' ) ) : |
|
355 | +if ( ! function_exists('lsx_post_header')) : |
|
356 | 356 | /** |
357 | 357 | * Displays the post header. |
358 | 358 | * |
@@ -361,21 +361,21 @@ discard block |
||
361 | 361 | */ |
362 | 362 | function lsx_post_header() { |
363 | 363 | $default_size = 'sm'; |
364 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
364 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
365 | 365 | |
366 | - if ( is_singular( 'post' ) ) : |
|
366 | + if (is_singular('post')) : |
|
367 | 367 | $format = get_post_format(); |
368 | 368 | |
369 | - if ( false === $format ) { |
|
369 | + if (false === $format) { |
|
370 | 370 | $format = 'standard'; |
371 | 371 | } |
372 | 372 | |
373 | - $format = lsx_translate_format_to_fontawesome( $format ); |
|
373 | + $format = lsx_translate_format_to_fontawesome($format); |
|
374 | 374 | ?> |
375 | - <div class="archive-header-wrapper banner-post-header col-<?php echo esc_attr( $size ); ?>-12"> |
|
375 | + <div class="archive-header-wrapper banner-post-header col-<?php echo esc_attr($size); ?>-12"> |
|
376 | 376 | <header class="archive-header"> |
377 | 377 | <h1 class="archive-title"> |
378 | - <i class="format-link fa fa-<?php echo esc_attr( $format ); ?>"></i> |
|
378 | + <i class="format-link fa fa-<?php echo esc_attr($format); ?>"></i> |
|
379 | 379 | <span><?php the_title(); ?></span> |
380 | 380 | </h1> |
381 | 381 | </header> |
@@ -383,10 +383,10 @@ discard block |
||
383 | 383 | <?php |
384 | 384 | endif; |
385 | 385 | } |
386 | - add_action( 'lsx_entry_top', 'lsx_post_header' ); |
|
386 | + add_action('lsx_entry_top', 'lsx_post_header'); |
|
387 | 387 | endif; |
388 | 388 | |
389 | -if ( ! function_exists( 'lsx_add_viewport_meta_tag' ) ) : |
|
389 | +if ( ! function_exists('lsx_add_viewport_meta_tag')) : |
|
390 | 390 | /** |
391 | 391 | * Add Viewport Meta Tag to head. |
392 | 392 | * |
@@ -398,10 +398,10 @@ discard block |
||
398 | 398 | <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0"> |
399 | 399 | <?php |
400 | 400 | } |
401 | - add_action( 'wp_head', 'lsx_add_viewport_meta_tag' ); |
|
401 | + add_action('wp_head', 'lsx_add_viewport_meta_tag'); |
|
402 | 402 | endif; |
403 | 403 | |
404 | -if ( ! function_exists( 'lsx_header_search_form' ) ) : |
|
404 | +if ( ! function_exists('lsx_header_search_form')) : |
|
405 | 405 | /** |
406 | 406 | * Add a search form to just above the nav menu. |
407 | 407 | * |
@@ -409,19 +409,19 @@ discard block |
||
409 | 409 | * @subpackage layout |
410 | 410 | */ |
411 | 411 | function lsx_header_search_form() { |
412 | - $search_form = get_theme_mod( 'lsx_header_search', false ); |
|
412 | + $search_form = get_theme_mod('lsx_header_search', false); |
|
413 | 413 | |
414 | - if ( false !== $search_form || is_customize_preview() ) { |
|
415 | - get_search_form( true ); |
|
414 | + if (false !== $search_form || is_customize_preview()) { |
|
415 | + get_search_form(true); |
|
416 | 416 | } |
417 | 417 | } |
418 | - add_action( 'lsx_nav_before', 'lsx_header_search_form', 0 ); |
|
418 | + add_action('lsx_nav_before', 'lsx_header_search_form', 0); |
|
419 | 419 | endif; |
420 | 420 | |
421 | 421 | // Add entry meta to single post if active |
422 | -if ( ! function_exists( 'lsx_add_entry_meta' ) ) : |
|
422 | +if ( ! function_exists('lsx_add_entry_meta')) : |
|
423 | 423 | function lsx_add_entry_meta() { |
424 | - if ( is_single() && is_singular( 'post' ) ) { |
|
424 | + if (is_single() && is_singular('post')) { |
|
425 | 425 | ?> |
426 | 426 | <div class="entry-meta"> |
427 | 427 | <?php lsx_post_meta_single_top(); ?> |
@@ -429,5 +429,5 @@ discard block |
||
429 | 429 | <?php |
430 | 430 | } |
431 | 431 | } |
432 | - add_action( 'lsx_entry_top', 'lsx_add_entry_meta', 999 ); |
|
432 | + add_action('lsx_entry_top', 'lsx_add_entry_meta', 999); |
|
433 | 433 | endif; |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage woocommerce |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! function_exists( 'lsx_wc_support' ) ) : |
|
13 | +if ( ! function_exists('lsx_wc_support')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * WooCommerce support. |
@@ -19,17 +19,17 @@ discard block |
||
19 | 19 | * @subpackage woocommerce |
20 | 20 | */ |
21 | 21 | function lsx_wc_support() { |
22 | - add_theme_support( 'woocommerce' ); |
|
23 | - add_theme_support( 'wc-product-gallery-zoom' ); |
|
24 | - add_theme_support( 'wc-product-gallery-lightbox' ); |
|
25 | - add_theme_support( 'wc-product-gallery-slider' ); |
|
22 | + add_theme_support('woocommerce'); |
|
23 | + add_theme_support('wc-product-gallery-zoom'); |
|
24 | + add_theme_support('wc-product-gallery-lightbox'); |
|
25 | + add_theme_support('wc-product-gallery-slider'); |
|
26 | 26 | } |
27 | 27 | |
28 | - add_action( 'after_setup_theme', 'lsx_wc_support' ); |
|
28 | + add_action('after_setup_theme', 'lsx_wc_support'); |
|
29 | 29 | |
30 | 30 | endif; |
31 | 31 | |
32 | -if ( ! function_exists( 'lsx_wc_scripts_add_styles' ) ) : |
|
32 | +if ( ! function_exists('lsx_wc_scripts_add_styles')) : |
|
33 | 33 | |
34 | 34 | /** |
35 | 35 | * WooCommerce enqueue styles. |
@@ -38,18 +38,18 @@ discard block |
||
38 | 38 | * @subpackage woocommerce |
39 | 39 | */ |
40 | 40 | function lsx_wc_scripts_add_styles() { |
41 | - wp_enqueue_style( 'woocommerce-lsx', get_template_directory_uri() . '/assets/css/woocommerce/woocommerce.css', array( 'lsx_main' ), LSX_VERSION ); |
|
42 | - wp_style_add_data( 'woocommerce-lsx', 'rtl', 'replace' ); |
|
41 | + wp_enqueue_style('woocommerce-lsx', get_template_directory_uri() . '/assets/css/woocommerce/woocommerce.css', array('lsx_main'), LSX_VERSION); |
|
42 | + wp_style_add_data('woocommerce-lsx', 'rtl', 'replace'); |
|
43 | 43 | |
44 | 44 | // Remove WC Shipping Multiple Addresses specific script causing issues on checkout. |
45 | - wp_dequeue_script( 'wcms-country-select' ); |
|
45 | + wp_dequeue_script('wcms-country-select'); |
|
46 | 46 | } |
47 | 47 | |
48 | - add_action( 'wp_enqueue_scripts', 'lsx_wc_scripts_add_styles' ); |
|
48 | + add_action('wp_enqueue_scripts', 'lsx_wc_scripts_add_styles'); |
|
49 | 49 | |
50 | 50 | endif; |
51 | 51 | |
52 | -if ( ! function_exists( 'lsx_wc_form_field_args' ) ) : |
|
52 | +if ( ! function_exists('lsx_wc_form_field_args')) : |
|
53 | 53 | |
54 | 54 | /** |
55 | 55 | * WooCommerce form fields. |
@@ -57,17 +57,17 @@ discard block |
||
57 | 57 | * @package lsx |
58 | 58 | * @subpackage woocommerce |
59 | 59 | */ |
60 | - function lsx_wc_form_field_args( $args, $key, $value ) { |
|
60 | + function lsx_wc_form_field_args($args, $key, $value) { |
|
61 | 61 | $args['input_class'][] = 'form-control'; |
62 | 62 | |
63 | 63 | return $args; |
64 | 64 | } |
65 | 65 | |
66 | - add_action( 'woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3 ); |
|
66 | + add_action('woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3); |
|
67 | 67 | |
68 | 68 | endif; |
69 | 69 | |
70 | -if ( ! function_exists( 'lsx_wc_theme_wrapper_start' ) ) : |
|
70 | +if ( ! function_exists('lsx_wc_theme_wrapper_start')) : |
|
71 | 71 | |
72 | 72 | /** |
73 | 73 | * WooCommerce wrapper start. |
@@ -77,18 +77,18 @@ discard block |
||
77 | 77 | */ |
78 | 78 | function lsx_wc_theme_wrapper_start() { |
79 | 79 | lsx_content_wrap_before(); |
80 | - echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">'; |
|
80 | + echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">'; |
|
81 | 81 | lsx_content_before(); |
82 | 82 | echo '<main id="main" class="site-main" role="main">'; |
83 | 83 | lsx_content_top(); |
84 | 84 | } |
85 | 85 | |
86 | - remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 ); |
|
87 | - add_action( 'woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start' ); |
|
86 | + remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10); |
|
87 | + add_action('woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start'); |
|
88 | 88 | |
89 | 89 | endif; |
90 | 90 | |
91 | -if ( ! function_exists( 'lsx_wc_theme_wrapper_end' ) ) : |
|
91 | +if ( ! function_exists('lsx_wc_theme_wrapper_end')) : |
|
92 | 92 | |
93 | 93 | /** |
94 | 94 | * WooCommerce wrapper end. |
@@ -104,12 +104,12 @@ discard block |
||
104 | 104 | lsx_content_wrap_after(); |
105 | 105 | } |
106 | 106 | |
107 | - remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 ); |
|
108 | - add_action( 'woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end' ); |
|
107 | + remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10); |
|
108 | + add_action('woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end'); |
|
109 | 109 | |
110 | 110 | endif; |
111 | 111 | |
112 | -if ( ! function_exists( 'lsx_wc_disable_lsx_banner_plugin' ) ) : |
|
112 | +if ( ! function_exists('lsx_wc_disable_lsx_banner_plugin')) : |
|
113 | 113 | |
114 | 114 | /** |
115 | 115 | * Disable LSX Banners plugin in some WC pages. |
@@ -117,21 +117,21 @@ discard block |
||
117 | 117 | * @package lsx |
118 | 118 | * @subpackage woocommerce |
119 | 119 | */ |
120 | - function lsx_wc_disable_lsx_banner_plugin( $disabled ) { |
|
120 | + function lsx_wc_disable_lsx_banner_plugin($disabled) { |
|
121 | 121 | global $post; |
122 | 122 | |
123 | - if ( $post && class_exists( 'WC_Wishlists_Pages' ) && WC_Wishlists_Pages::is_wishlist_page( $post->post_name ) ) { |
|
123 | + if ($post && class_exists('WC_Wishlists_Pages') && WC_Wishlists_Pages::is_wishlist_page($post->post_name)) { |
|
124 | 124 | $disabled = true; |
125 | 125 | } |
126 | 126 | |
127 | 127 | return $disabled; |
128 | 128 | } |
129 | 129 | |
130 | - add_filter( 'lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin' ); |
|
130 | + add_filter('lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin'); |
|
131 | 131 | |
132 | 132 | endif; |
133 | 133 | |
134 | -if ( ! function_exists( 'lsx_wc_disable_lsx_banner' ) ) : |
|
134 | +if ( ! function_exists('lsx_wc_disable_lsx_banner')) : |
|
135 | 135 | |
136 | 136 | /** |
137 | 137 | * Disable LSX Banners banner in some WC pages. |
@@ -139,41 +139,41 @@ discard block |
||
139 | 139 | * @package lsx |
140 | 140 | * @subpackage woocommerce |
141 | 141 | */ |
142 | - function lsx_wc_disable_lsx_banner( $disabled ) { |
|
143 | - if ( is_shop() || is_product_category() || is_product_tag() || is_product() ) { |
|
142 | + function lsx_wc_disable_lsx_banner($disabled) { |
|
143 | + if (is_shop() || is_product_category() || is_product_tag() || is_product()) { |
|
144 | 144 | $disabled = true; |
145 | 145 | } |
146 | 146 | |
147 | 147 | return $disabled; |
148 | 148 | } |
149 | 149 | |
150 | - add_filter( 'lsx_banner_disable', 'lsx_wc_disable_lsx_banner' ); |
|
150 | + add_filter('lsx_banner_disable', 'lsx_wc_disable_lsx_banner'); |
|
151 | 151 | |
152 | 152 | endif; |
153 | 153 | |
154 | -if ( ! function_exists( 'lsx_wc_categories_breadcrumb_filter' ) ) : |
|
154 | +if ( ! function_exists('lsx_wc_categories_breadcrumb_filter')) : |
|
155 | 155 | /** |
156 | 156 | * Improves the category and taxonomy breadcrumbs for woocommerce. |
157 | 157 | * |
158 | 158 | * @package lsx |
159 | 159 | * @subpackage woocommerce |
160 | 160 | */ |
161 | - function lsx_wc_categories_breadcrumb_filter( $crumbs ) { |
|
161 | + function lsx_wc_categories_breadcrumb_filter($crumbs) { |
|
162 | 162 | |
163 | - $shop_page_url = get_permalink( wc_get_page_id( 'shop' ) ); |
|
163 | + $shop_page_url = get_permalink(wc_get_page_id('shop')); |
|
164 | 164 | |
165 | - if ( is_product_category() || is_product_tag() ) { |
|
165 | + if (is_product_category() || is_product_tag()) { |
|
166 | 166 | $new_crumbs = array(); |
167 | 167 | $new_crumbs[0] = $crumbs[0]; |
168 | 168 | |
169 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
169 | + if (function_exists('woocommerce_breadcrumb')) { |
|
170 | 170 | $new_crumbs[1] = array( |
171 | - 0 => __( 'Shop', 'lsx' ), |
|
171 | + 0 => __('Shop', 'lsx'), |
|
172 | 172 | 1 => $shop_page_url, |
173 | 173 | ); |
174 | 174 | } else { |
175 | 175 | $new_crumbs[1] = array( |
176 | - 'text' => __( 'Shop', 'lsx' ), |
|
176 | + 'text' => __('Shop', 'lsx'), |
|
177 | 177 | 'url' => $shop_page_url, |
178 | 178 | ); |
179 | 179 | } |
@@ -184,12 +184,12 @@ discard block |
||
184 | 184 | } |
185 | 185 | return $crumbs; |
186 | 186 | } |
187 | - add_filter( 'wpseo_breadcrumb_links', 'lsx_wc_categories_breadcrumb_filter', 30, 1 ); |
|
188 | - add_filter( 'woocommerce_get_breadcrumb', 'lsx_wc_categories_breadcrumb_filter', 30, 1 ); |
|
187 | + add_filter('wpseo_breadcrumb_links', 'lsx_wc_categories_breadcrumb_filter', 30, 1); |
|
188 | + add_filter('woocommerce_get_breadcrumb', 'lsx_wc_categories_breadcrumb_filter', 30, 1); |
|
189 | 189 | |
190 | 190 | endif; |
191 | 191 | |
192 | -if ( ! function_exists( 'lsx_wc_add_cart' ) ) : |
|
192 | +if ( ! function_exists('lsx_wc_add_cart')) : |
|
193 | 193 | |
194 | 194 | /** |
195 | 195 | * Adds WC cart to the header. |
@@ -197,34 +197,34 @@ discard block |
||
197 | 197 | * @package lsx |
198 | 198 | * @subpackage template-tags |
199 | 199 | */ |
200 | - function lsx_wc_add_cart( $items, $args ) { |
|
201 | - $cart_menu_item_position = apply_filters( 'lsx_wc_cart_menu_item_position', 'primary' ); |
|
200 | + function lsx_wc_add_cart($items, $args) { |
|
201 | + $cart_menu_item_position = apply_filters('lsx_wc_cart_menu_item_position', 'primary'); |
|
202 | 202 | |
203 | 203 | $cart_logged_out_position = $cart_menu_item_position . '_logged_out'; |
204 | 204 | |
205 | - if ( $cart_menu_item_position === $args->theme_location || $cart_logged_out_position === $args->theme_location ) { |
|
206 | - $customizer_option = get_theme_mod( 'lsx_header_wc_cart', false ); |
|
205 | + if ($cart_menu_item_position === $args->theme_location || $cart_logged_out_position === $args->theme_location) { |
|
206 | + $customizer_option = get_theme_mod('lsx_header_wc_cart', false); |
|
207 | 207 | |
208 | - if ( ! empty( $customizer_option ) ) { |
|
208 | + if ( ! empty($customizer_option)) { |
|
209 | 209 | ob_start(); |
210 | - the_widget( 'WC_Widget_Cart', 'title=' ); |
|
210 | + the_widget('WC_Widget_Cart', 'title='); |
|
211 | 211 | $widget = ob_get_clean(); |
212 | 212 | |
213 | - if ( is_cart() ) { |
|
213 | + if (is_cart()) { |
|
214 | 214 | $class = 'current-menu-item'; |
215 | 215 | } else { |
216 | 216 | $class = ''; |
217 | 217 | } |
218 | 218 | |
219 | 219 | $item_class = 'menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children dropdown lsx-wc-cart-menu-item ' . $class; |
220 | - $item_class = apply_filters( 'lsx_wc_cart_menu_item_class', $item_class ); |
|
220 | + $item_class = apply_filters('lsx_wc_cart_menu_item_class', $item_class); |
|
221 | 221 | |
222 | 222 | $item = '<li class="' . $item_class . '">' . |
223 | - '<a title="' . esc_attr__( 'View your shopping cart', 'lsx' ) . '" href="' . esc_url( wc_get_cart_url() ) . '" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true">' . |
|
224 | - '<span class="lsx-wc-cart-amount">' . wp_kses_data( WC()->cart->get_cart_subtotal() ) . '</span>' . |
|
223 | + '<a title="' . esc_attr__('View your shopping cart', 'lsx') . '" href="' . esc_url(wc_get_cart_url()) . '" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true">' . |
|
224 | + '<span class="lsx-wc-cart-amount">' . wp_kses_data(WC()->cart->get_cart_subtotal()) . '</span>' . |
|
225 | 225 | /* Translators: %s: items quantity */ |
226 | - '<span class="lsx-wc-cart-count">' . wp_kses_data( sprintf( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx' ), WC()->cart->get_cart_contents_count() ) ) . '</span>' . |
|
227 | - ( ! empty( WC()->cart->get_cart_contents_count() ) ? '<span class="lsx-wc-cart-count-badge">' . wp_kses_data( WC()->cart->get_cart_contents_count() ) . '</span>' : '' ) . |
|
226 | + '<span class="lsx-wc-cart-count">' . wp_kses_data(sprintf(_n('%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx'), WC()->cart->get_cart_contents_count())) . '</span>' . |
|
227 | + ( ! empty(WC()->cart->get_cart_contents_count()) ? '<span class="lsx-wc-cart-count-badge">' . wp_kses_data(WC()->cart->get_cart_contents_count()) . '</span>' : '') . |
|
228 | 228 | '</a>' . |
229 | 229 | '<ul role="menu" class=" dropdown-menu lsx-wc-cart-sub-menu">' . |
230 | 230 | '<li>' . |
@@ -233,7 +233,7 @@ discard block |
||
233 | 233 | '</ul>' . |
234 | 234 | '</li>'; |
235 | 235 | |
236 | - if ( 'top-menu' === $args->theme_location ) { |
|
236 | + if ('top-menu' === $args->theme_location) { |
|
237 | 237 | $items = $item . $items; |
238 | 238 | } else { |
239 | 239 | $items = $items . $item; |
@@ -244,11 +244,11 @@ discard block |
||
244 | 244 | return $items; |
245 | 245 | } |
246 | 246 | |
247 | - add_filter( 'wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2 ); |
|
247 | + add_filter('wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2); |
|
248 | 248 | |
249 | 249 | endif; |
250 | 250 | |
251 | -if ( ! function_exists( 'lsx_wc_products_widget_wrapper_before' ) ) : |
|
251 | +if ( ! function_exists('lsx_wc_products_widget_wrapper_before')) : |
|
252 | 252 | |
253 | 253 | /** |
254 | 254 | * Change WC products widget wrapper (before). |
@@ -256,16 +256,16 @@ discard block |
||
256 | 256 | * @package lsx |
257 | 257 | * @subpackage woocommerce |
258 | 258 | */ |
259 | - function lsx_wc_products_widget_wrapper_before( $html ) { |
|
259 | + function lsx_wc_products_widget_wrapper_before($html) { |
|
260 | 260 | $html = '<div class="lsx-woocommerce-slider lsx-woocommerce-shortcode">'; |
261 | 261 | return $html; |
262 | 262 | } |
263 | 263 | |
264 | - add_filter( 'woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15 ); |
|
264 | + add_filter('woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15); |
|
265 | 265 | |
266 | 266 | endif; |
267 | 267 | |
268 | -if ( ! function_exists( 'lsx_wc_products_widget_wrapper_after' ) ) : |
|
268 | +if ( ! function_exists('lsx_wc_products_widget_wrapper_after')) : |
|
269 | 269 | |
270 | 270 | /** |
271 | 271 | * Change WC products widget wrapper (after). |
@@ -273,16 +273,16 @@ discard block |
||
273 | 273 | * @package lsx |
274 | 274 | * @subpackage woocommerce |
275 | 275 | */ |
276 | - function lsx_wc_products_widget_wrapper_after( $html ) { |
|
276 | + function lsx_wc_products_widget_wrapper_after($html) { |
|
277 | 277 | $html = '</div>'; |
278 | 278 | return $html; |
279 | 279 | } |
280 | 280 | |
281 | - add_filter( 'woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15 ); |
|
281 | + add_filter('woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15); |
|
282 | 282 | |
283 | 283 | endif; |
284 | 284 | |
285 | -if ( ! function_exists( 'lsx_wc_reviews_widget_override' ) ) : |
|
285 | +if ( ! function_exists('lsx_wc_reviews_widget_override')) : |
|
286 | 286 | |
287 | 287 | /** |
288 | 288 | * Override WC ewviews widget. |
@@ -291,18 +291,18 @@ discard block |
||
291 | 291 | * @subpackage woocommerce |
292 | 292 | */ |
293 | 293 | function lsx_wc_reviews_widget_override() { |
294 | - if ( class_exists( 'WC_Widget_Recent_Reviews' ) ) { |
|
295 | - unregister_widget( 'WC_Widget_Recent_Reviews' ); |
|
294 | + if (class_exists('WC_Widget_Recent_Reviews')) { |
|
295 | + unregister_widget('WC_Widget_Recent_Reviews'); |
|
296 | 296 | require get_template_directory() . '/includes/classes/class-lsx-wc-widget-recent-reviews.php'; |
297 | - register_widget( 'LSX_WC_Widget_Recent_Reviews' ); |
|
297 | + register_widget('LSX_WC_Widget_Recent_Reviews'); |
|
298 | 298 | } |
299 | 299 | } |
300 | 300 | |
301 | - add_action( 'widgets_init', 'lsx_wc_reviews_widget_override', 15 ); |
|
301 | + add_action('widgets_init', 'lsx_wc_reviews_widget_override', 15); |
|
302 | 302 | |
303 | 303 | endif; |
304 | 304 | |
305 | -if ( ! function_exists( 'lsx_wc_change_price_html' ) ) : |
|
305 | +if ( ! function_exists('lsx_wc_change_price_html')) : |
|
306 | 306 | |
307 | 307 | /** |
308 | 308 | * Change WC ZERO price to "free". |
@@ -314,28 +314,28 @@ discard block |
||
314 | 314 | * @param $product WC_Product |
315 | 315 | * @return string |
316 | 316 | */ |
317 | - function lsx_wc_change_price_html( $price, $product ) { |
|
318 | - if ( empty( $product->get_price() ) ) { |
|
319 | - if ( $product->is_on_sale() && $product->get_regular_price() ) { |
|
320 | - $regular_price = wc_get_price_to_display( $product, array( |
|
317 | + function lsx_wc_change_price_html($price, $product) { |
|
318 | + if (empty($product->get_price())) { |
|
319 | + if ($product->is_on_sale() && $product->get_regular_price()) { |
|
320 | + $regular_price = wc_get_price_to_display($product, array( |
|
321 | 321 | 'qty' => 1, |
322 | 322 | 'price' => $product->get_regular_price(), |
323 | - ) ); |
|
323 | + )); |
|
324 | 324 | |
325 | - $price = wc_format_price_range( $regular_price, esc_html__( 'Free!', 'lsx' ) ); |
|
325 | + $price = wc_format_price_range($regular_price, esc_html__('Free!', 'lsx')); |
|
326 | 326 | } else { |
327 | - $price = '<span class="amount">' . esc_html__( 'Free!', 'lsx' ) . '</span>'; |
|
327 | + $price = '<span class="amount">' . esc_html__('Free!', 'lsx') . '</span>'; |
|
328 | 328 | } |
329 | 329 | } |
330 | 330 | |
331 | 331 | return $price; |
332 | 332 | } |
333 | 333 | |
334 | - add_filter( 'woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2 ); |
|
334 | + add_filter('woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2); |
|
335 | 335 | |
336 | 336 | endif; |
337 | 337 | |
338 | -if ( ! function_exists( 'lsx_wc_cart_link_fragment' ) ) : |
|
338 | +if ( ! function_exists('lsx_wc_cart_link_fragment')) : |
|
339 | 339 | |
340 | 340 | /** |
341 | 341 | * Cart Fragments. |
@@ -344,7 +344,7 @@ discard block |
||
344 | 344 | * @package lsx |
345 | 345 | * @subpackage woocommerce |
346 | 346 | */ |
347 | - function lsx_wc_cart_link_fragment( $fragments ) { |
|
347 | + function lsx_wc_cart_link_fragment($fragments) { |
|
348 | 348 | global $woocommerce; |
349 | 349 | |
350 | 350 | ob_start(); |
@@ -355,8 +355,8 @@ discard block |
||
355 | 355 | lsx_wc_items_counter(); |
356 | 356 | $items_counter = ob_get_clean(); |
357 | 357 | |
358 | - if ( ! empty( $items_counter ) ) { |
|
359 | - $fragments['div.widget_shopping_cart_content'] = preg_replace( '/(.+)(<\/ul>)[\s\n]*(<p class="woocommerce-mini-cart__total)(.+)/', '$1' . $items_counter . '$2$3$4', $fragments['div.widget_shopping_cart_content'] ); |
|
358 | + if ( ! empty($items_counter)) { |
|
359 | + $fragments['div.widget_shopping_cart_content'] = preg_replace('/(.+)(<\/ul>)[\s\n]*(<p class="woocommerce-mini-cart__total)(.+)/', '$1' . $items_counter . '$2$3$4', $fragments['div.widget_shopping_cart_content']); |
|
360 | 360 | } |
361 | 361 | |
362 | 362 | return $fragments; |
@@ -364,7 +364,7 @@ discard block |
||
364 | 364 | |
365 | 365 | endif; |
366 | 366 | |
367 | -if ( ! function_exists( 'lsx_wc_cart_link' ) ) : |
|
367 | +if ( ! function_exists('lsx_wc_cart_link')) : |
|
368 | 368 | |
369 | 369 | /** |
370 | 370 | * Cart Link. |
@@ -375,14 +375,14 @@ discard block |
||
375 | 375 | */ |
376 | 376 | function lsx_wc_cart_link() { |
377 | 377 | ?> |
378 | - <a title="<?php esc_attr_e( 'View your shopping cart', 'lsx' ); ?>" href="<?php echo esc_url( wc_get_cart_url() ); ?>" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true"> |
|
379 | - <span class="lsx-wc-cart-amount"><?php echo wp_kses_data( WC()->cart->get_cart_subtotal() ); ?></span> |
|
378 | + <a title="<?php esc_attr_e('View your shopping cart', 'lsx'); ?>" href="<?php echo esc_url(wc_get_cart_url()); ?>" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true"> |
|
379 | + <span class="lsx-wc-cart-amount"><?php echo wp_kses_data(WC()->cart->get_cart_subtotal()); ?></span> |
|
380 | 380 | |
381 | 381 | <?php /* Translators: %s: items quantity */ ?> |
382 | - <span class="lsx-wc-cart-count"><?php echo wp_kses_data( sprintf( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx' ), WC()->cart->get_cart_contents_count() ) );?></span> |
|
382 | + <span class="lsx-wc-cart-count"><?php echo wp_kses_data(sprintf(_n('%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx'), WC()->cart->get_cart_contents_count())); ?></span> |
|
383 | 383 | |
384 | - <?php if ( ! empty( WC()->cart->get_cart_contents_count() ) ) : ?> |
|
385 | - <span class="lsx-wc-cart-count-badge"><?php echo wp_kses_data( WC()->cart->get_cart_contents_count() );?></span> |
|
384 | + <?php if ( ! empty(WC()->cart->get_cart_contents_count())) : ?> |
|
385 | + <span class="lsx-wc-cart-count-badge"><?php echo wp_kses_data(WC()->cart->get_cart_contents_count()); ?></span> |
|
386 | 386 | <?php endif; ?> |
387 | 387 | </a> |
388 | 388 | <?php |
@@ -390,7 +390,7 @@ discard block |
||
390 | 390 | |
391 | 391 | endif; |
392 | 392 | |
393 | -if ( ! function_exists( 'lsx_wc_items_counter' ) ) : |
|
393 | +if ( ! function_exists('lsx_wc_items_counter')) : |
|
394 | 394 | |
395 | 395 | /** |
396 | 396 | * Add car item hidden items counter. |
@@ -402,21 +402,21 @@ discard block |
||
402 | 402 | $count = (int) WC()->cart->get_cart_contents_count(); |
403 | 403 | $items_counter = ''; |
404 | 404 | |
405 | - if ( ! empty( $count ) ) { |
|
405 | + if ( ! empty($count)) { |
|
406 | 406 | $count -= 3; |
407 | 407 | |
408 | - if ( 1 === $count ) { |
|
409 | - $items_counter = esc_html__( '1 other item in cart', 'lsx' ); |
|
410 | - } elseif ( $count > 1 ) { |
|
408 | + if (1 === $count) { |
|
409 | + $items_counter = esc_html__('1 other item in cart', 'lsx'); |
|
410 | + } elseif ($count > 1) { |
|
411 | 411 | /* Translators: %s: items counter */ |
412 | - $items_counter = sprintf( esc_html__( '%s other items in cart', 'lsx' ), $count ); |
|
412 | + $items_counter = sprintf(esc_html__('%s other items in cart', 'lsx'), $count); |
|
413 | 413 | } |
414 | 414 | } |
415 | - $cart_url = function_exists( 'wc_get_cart_url' ) ? wc_get_cart_url() : WC()->cart->get_cart_url(); |
|
416 | - if ( ! empty( $items_counter ) ) : |
|
415 | + $cart_url = function_exists('wc_get_cart_url') ? wc_get_cart_url() : WC()->cart->get_cart_url(); |
|
416 | + if ( ! empty($items_counter)) : |
|
417 | 417 | ?> |
418 | 418 | <li class="woocommerce-mini-cart-item mini_cart_item" style="display: block;"> |
419 | - <a href="<?php echo esc_url( $cart_url ); ?>"><?php echo esc_html( $items_counter ); ?></a> |
|
419 | + <a href="<?php echo esc_url($cart_url); ?>"><?php echo esc_html($items_counter); ?></a> |
|
420 | 420 | </li> |
421 | 421 | <?php |
422 | 422 | endif; |
@@ -424,7 +424,7 @@ discard block |
||
424 | 424 | |
425 | 425 | endif; |
426 | 426 | |
427 | -if ( ! function_exists( 'lsx_wc_loop_shop_per_page' ) ) : |
|
427 | +if ( ! function_exists('lsx_wc_loop_shop_per_page')) : |
|
428 | 428 | |
429 | 429 | /** |
430 | 430 | * Changes the number of products to display on shop. |
@@ -432,16 +432,16 @@ discard block |
||
432 | 432 | * @package lsx |
433 | 433 | * @subpackage woocommerce |
434 | 434 | */ |
435 | - function lsx_wc_loop_shop_per_page( $items ) { |
|
435 | + function lsx_wc_loop_shop_per_page($items) { |
|
436 | 436 | $items = 20; |
437 | 437 | return $items; |
438 | 438 | } |
439 | 439 | |
440 | - add_filter( 'loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20 ); |
|
440 | + add_filter('loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20); |
|
441 | 441 | |
442 | 442 | endif; |
443 | 443 | |
444 | -if ( ! function_exists( 'lsx_wc_add_to_cart_message_html' ) ) : |
|
444 | +if ( ! function_exists('lsx_wc_add_to_cart_message_html')) : |
|
445 | 445 | |
446 | 446 | /** |
447 | 447 | * Changes the "added to cart" message HTML. |
@@ -449,39 +449,39 @@ discard block |
||
449 | 449 | * @package lsx |
450 | 450 | * @subpackage woocommerce |
451 | 451 | */ |
452 | - function lsx_wc_add_to_cart_message_html( $message, $products ) { |
|
452 | + function lsx_wc_add_to_cart_message_html($message, $products) { |
|
453 | 453 | $message = '<div class="woocommerce-message-added-to-cart">' . $message . '</div>'; |
454 | 454 | return $message; |
455 | 455 | } |
456 | 456 | |
457 | - add_filter( 'wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2 ); |
|
457 | + add_filter('wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2); |
|
458 | 458 | |
459 | 459 | endif; |
460 | 460 | |
461 | -if ( defined( 'WC_VERSION' ) && version_compare( WC_VERSION, '2.3', '>=' ) ) { |
|
462 | - add_filter( 'woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment' ); |
|
461 | +if (defined('WC_VERSION') && version_compare(WC_VERSION, '2.3', '>=')) { |
|
462 | + add_filter('woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment'); |
|
463 | 463 | } else { |
464 | - add_filter( 'add_to_cart_fragments', 'lsx_wc_cart_link_fragment' ); |
|
464 | + add_filter('add_to_cart_fragments', 'lsx_wc_cart_link_fragment'); |
|
465 | 465 | } |
466 | 466 | |
467 | -remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 ); |
|
467 | +remove_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 10); |
|
468 | 468 | |
469 | -add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9 ); |
|
470 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10 ); |
|
471 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_result_count', 20 ); |
|
472 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 30 ); |
|
473 | -add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 ); |
|
469 | +add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9); |
|
470 | +add_action('woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10); |
|
471 | +add_action('woocommerce_after_shop_loop', 'woocommerce_result_count', 20); |
|
472 | +add_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 30); |
|
473 | +add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31); |
|
474 | 474 | |
475 | -remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); |
|
476 | -remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 ); |
|
475 | +remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20); |
|
476 | +remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30); |
|
477 | 477 | |
478 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9 ); |
|
479 | -add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10 ); |
|
480 | -add_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); |
|
481 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30 ); |
|
482 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 ); |
|
478 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9); |
|
479 | +add_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10); |
|
480 | +add_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20); |
|
481 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30); |
|
482 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31); |
|
483 | 483 | |
484 | -if ( ! function_exists( 'lsx_wc_sorting_wrapper' ) ) : |
|
484 | +if ( ! function_exists('lsx_wc_sorting_wrapper')) : |
|
485 | 485 | |
486 | 486 | /** |
487 | 487 | * Sorting wrapper. |
@@ -495,7 +495,7 @@ discard block |
||
495 | 495 | |
496 | 496 | endif; |
497 | 497 | |
498 | -if ( ! function_exists( 'lsx_wc_sorting_wrapper_close' ) ) : |
|
498 | +if ( ! function_exists('lsx_wc_sorting_wrapper_close')) : |
|
499 | 499 | |
500 | 500 | /** |
501 | 501 | * Sorting wrapper close. |
@@ -509,7 +509,7 @@ discard block |
||
509 | 509 | |
510 | 510 | endif; |
511 | 511 | |
512 | -if ( ! function_exists( 'lsx_wc_product_columns_wrapper_close' ) ) : |
|
512 | +if ( ! function_exists('lsx_wc_product_columns_wrapper_close')) : |
|
513 | 513 | |
514 | 514 | /** |
515 | 515 | * Product columns wrapper close. |
@@ -523,7 +523,7 @@ discard block |
||
523 | 523 | |
524 | 524 | endif; |
525 | 525 | |
526 | -if ( ! function_exists( 'lsx_wc_woocommerce_pagination' ) ) : |
|
526 | +if ( ! function_exists('lsx_wc_woocommerce_pagination')) : |
|
527 | 527 | |
528 | 528 | /** |
529 | 529 | * LSX WooCommerce Pagination |
@@ -535,14 +535,14 @@ discard block |
||
535 | 535 | * @subpackage woocommerce |
536 | 536 | */ |
537 | 537 | function lsx_wc_woocommerce_pagination() { |
538 | - if ( woocommerce_products_will_display() ) { |
|
538 | + if (woocommerce_products_will_display()) { |
|
539 | 539 | woocommerce_pagination(); |
540 | 540 | } |
541 | 541 | } |
542 | 542 | |
543 | 543 | endif; |
544 | 544 | |
545 | -if ( ! function_exists( 'lsx_customizer_wc_controls' ) ) : |
|
545 | +if ( ! function_exists('lsx_customizer_wc_controls')) : |
|
546 | 546 | |
547 | 547 | /** |
548 | 548 | * Returns an array of the core panel. |
@@ -552,10 +552,10 @@ discard block |
||
552 | 552 | * |
553 | 553 | * @return $lsx_controls array() |
554 | 554 | */ |
555 | - function lsx_customizer_wc_controls( $lsx_controls ) { |
|
555 | + function lsx_customizer_wc_controls($lsx_controls) { |
|
556 | 556 | $lsx_controls['panels']['lsx-wc'] = array( |
557 | - 'title' => esc_html__( 'WooCommerce', 'lsx' ), |
|
558 | - 'description' => esc_html__( 'Change the WooCommerce settings.', 'lsx' ), |
|
557 | + 'title' => esc_html__('WooCommerce', 'lsx'), |
|
558 | + 'description' => esc_html__('Change the WooCommerce settings.', 'lsx'), |
|
559 | 559 | 'priority' => 23, |
560 | 560 | ); |
561 | 561 | |
@@ -564,8 +564,8 @@ discard block |
||
564 | 564 | */ |
565 | 565 | |
566 | 566 | $lsx_controls['sections']['lsx-wc-global'] = array( |
567 | - 'title' => esc_html__( 'Global', 'lsx' ), |
|
568 | - 'description' => esc_html__( 'Change the WooCommerce global settings.', 'lsx' ), |
|
567 | + 'title' => esc_html__('Global', 'lsx'), |
|
568 | + 'description' => esc_html__('Change the WooCommerce global settings.', 'lsx'), |
|
569 | 569 | 'panel' => 'lsx-wc', |
570 | 570 | 'priority' => 1, |
571 | 571 | ); |
@@ -576,8 +576,8 @@ discard block |
||
576 | 576 | ); |
577 | 577 | |
578 | 578 | $lsx_controls['fields']['lsx_wc_mobile_footer_bar_status'] = array( |
579 | - 'label' => esc_html__( 'Footer Bar', 'lsx' ), |
|
580 | - 'description' => esc_html__( 'Enable the mobile footer bar.', 'lsx' ), |
|
579 | + 'label' => esc_html__('Footer Bar', 'lsx'), |
|
580 | + 'description' => esc_html__('Enable the mobile footer bar.', 'lsx'), |
|
581 | 581 | 'section' => 'lsx-wc-global', |
582 | 582 | 'type' => 'checkbox', |
583 | 583 | 'priority' => 1, |
@@ -588,8 +588,8 @@ discard block |
||
588 | 588 | */ |
589 | 589 | |
590 | 590 | $lsx_controls['sections']['lsx-wc-cart'] = array( |
591 | - 'title' => esc_html__( 'Cart', 'lsx' ), |
|
592 | - 'description' => esc_html__( 'Change the WooCommerce cart settings.', 'lsx' ), |
|
591 | + 'title' => esc_html__('Cart', 'lsx'), |
|
592 | + 'description' => esc_html__('Change the WooCommerce cart settings.', 'lsx'), |
|
593 | 593 | 'panel' => 'lsx-wc', |
594 | 594 | 'priority' => 2, |
595 | 595 | ); |
@@ -600,8 +600,8 @@ discard block |
||
600 | 600 | ); |
601 | 601 | |
602 | 602 | $lsx_controls['fields']['lsx_header_wc_cart'] = array( |
603 | - 'label' => esc_html__( 'Menu Item', 'lsx' ), |
|
604 | - 'description' => esc_html__( 'Enable the cart menu item.', 'lsx' ), |
|
603 | + 'label' => esc_html__('Menu Item', 'lsx'), |
|
604 | + 'description' => esc_html__('Enable the cart menu item.', 'lsx'), |
|
605 | 605 | 'section' => 'lsx-wc-cart', |
606 | 606 | 'type' => 'checkbox', |
607 | 607 | 'priority' => 1, |
@@ -610,11 +610,11 @@ discard block |
||
610 | 610 | return $lsx_controls; |
611 | 611 | } |
612 | 612 | |
613 | - add_filter( 'lsx_customizer_controls', 'lsx_customizer_wc_controls' ); |
|
613 | + add_filter('lsx_customizer_controls', 'lsx_customizer_wc_controls'); |
|
614 | 614 | |
615 | 615 | endif; |
616 | 616 | |
617 | -if ( ! function_exists( 'lsx_wc_global_header_title' ) ) : |
|
617 | +if ( ! function_exists('lsx_wc_global_header_title')) : |
|
618 | 618 | |
619 | 619 | /** |
620 | 620 | * Move the shop title into the global header |
@@ -622,21 +622,21 @@ discard block |
||
622 | 622 | * @package lsx |
623 | 623 | * @subpackage the-events-calendar |
624 | 624 | */ |
625 | - function lsx_wc_global_header_title( $title ) { |
|
625 | + function lsx_wc_global_header_title($title) { |
|
626 | 626 | |
627 | - if ( is_woocommerce() && is_shop() ) { |
|
627 | + if (is_woocommerce() && is_shop()) { |
|
628 | 628 | |
629 | - $title = __( 'Shop', 'lsx' ); |
|
629 | + $title = __('Shop', 'lsx'); |
|
630 | 630 | } |
631 | 631 | |
632 | 632 | return $title; |
633 | 633 | } |
634 | - add_filter( 'lsx_global_header_title', 'lsx_wc_global_header_title', 200, 1 ); |
|
634 | + add_filter('lsx_global_header_title', 'lsx_wc_global_header_title', 200, 1); |
|
635 | 635 | |
636 | 636 | endif; |
637 | 637 | |
638 | 638 | |
639 | -if ( ! function_exists( 'lsx_wc_footer_bar' ) ) : |
|
639 | +if ( ! function_exists('lsx_wc_footer_bar')) : |
|
640 | 640 | |
641 | 641 | /** |
642 | 642 | * Display WC footer bar. |
@@ -645,47 +645,47 @@ discard block |
||
645 | 645 | * @subpackage woocommerce |
646 | 646 | */ |
647 | 647 | function lsx_wc_footer_bar() { |
648 | - $cart_url = function_exists( 'wc_get_cart_url' ) ? wc_get_cart_url() : WC()->cart->get_cart_url(); |
|
649 | - if ( ! empty( get_theme_mod( 'lsx_wc_mobile_footer_bar_status', '1' ) ) ) : |
|
648 | + $cart_url = function_exists('wc_get_cart_url') ? wc_get_cart_url() : WC()->cart->get_cart_url(); |
|
649 | + if ( ! empty(get_theme_mod('lsx_wc_mobile_footer_bar_status', '1'))) : |
|
650 | 650 | ?> |
651 | 651 | <div class="lsx-wc-footer-bar"> |
652 | - <form role="search" method="get" action="<?php echo esc_url( home_url() ); ?>" class="lsx-wc-footer-bar-form"> |
|
652 | + <form role="search" method="get" action="<?php echo esc_url(home_url()); ?>" class="lsx-wc-footer-bar-form"> |
|
653 | 653 | <fieldset> |
654 | - <legend class="screen-reader-text"><?php esc_html_e( 'Search products', 'lsx' ); ?></legend> |
|
655 | - <input type="search" name="s" placeholder="<?php esc_attr_e( 'Search products...', 'lsx' ); ?>" class="form-control"> |
|
654 | + <legend class="screen-reader-text"><?php esc_html_e('Search products', 'lsx'); ?></legend> |
|
655 | + <input type="search" name="s" placeholder="<?php esc_attr_e('Search products...', 'lsx'); ?>" class="form-control"> |
|
656 | 656 | </fieldset> |
657 | 657 | </form> |
658 | 658 | |
659 | 659 | <ul class="lsx-wc-footer-bar-items"> |
660 | 660 | <li class="lsx-wc-footer-bar-item"> |
661 | - <a href="<?php echo esc_url( home_url() ); ?>" class="lsx-wc-footer-bar-link"> |
|
661 | + <a href="<?php echo esc_url(home_url()); ?>" class="lsx-wc-footer-bar-link"> |
|
662 | 662 | <i class="fa fa-home" aria-hidden="true"></i> |
663 | - <span><?php esc_html_e( 'Home', 'lsx' ); ?></span> |
|
663 | + <span><?php esc_html_e('Home', 'lsx'); ?></span> |
|
664 | 664 | </a> |
665 | 665 | </li> |
666 | 666 | |
667 | 667 | <li class="lsx-wc-footer-bar-item"> |
668 | - <a href="<?php echo esc_url( get_permalink( get_option( 'woocommerce_myaccount_page_id' ) ) ); ?>" class="lsx-wc-footer-bar-link"> |
|
668 | + <a href="<?php echo esc_url(get_permalink(get_option('woocommerce_myaccount_page_id'))); ?>" class="lsx-wc-footer-bar-link"> |
|
669 | 669 | <i class="fa fa-user" aria-hidden="true"></i> |
670 | - <span><?php esc_html_e( 'Account', 'lsx' ); ?></span> |
|
670 | + <span><?php esc_html_e('Account', 'lsx'); ?></span> |
|
671 | 671 | </a> |
672 | 672 | </li> |
673 | 673 | |
674 | 674 | <li class="lsx-wc-footer-bar-item"> |
675 | 675 | <a href="#" class="lsx-wc-footer-bar-link lsx-wc-footer-bar-link-toogle"> |
676 | 676 | <i class="fa fa-search" aria-hidden="true"></i> |
677 | - <span><?php esc_html_e( 'Search', 'lsx' ); ?></span> |
|
677 | + <span><?php esc_html_e('Search', 'lsx'); ?></span> |
|
678 | 678 | </a> |
679 | 679 | </li> |
680 | 680 | |
681 | 681 | <li class="lsx-wc-footer-bar-item"> |
682 | - <a href="<?php echo esc_url( $cart_url ); ?>" class="lsx-wc-footer-bar-link"> |
|
682 | + <a href="<?php echo esc_url($cart_url); ?>" class="lsx-wc-footer-bar-link"> |
|
683 | 683 | <i class="fa fa-shopping-basket" aria-hidden="true"></i> |
684 | 684 | <?php $count = WC()->cart->get_cart_contents_count(); ?> |
685 | - <?php if ( ! empty( $count ) ) : ?> |
|
686 | - <span class="lsx-wc-footer-bar-count"><?php echo wp_kses_data( $count ); ?></span> |
|
685 | + <?php if ( ! empty($count)) : ?> |
|
686 | + <span class="lsx-wc-footer-bar-count"><?php echo wp_kses_data($count); ?></span> |
|
687 | 687 | <?php endif; ?> |
688 | - <span><?php esc_html_e( 'Cart', 'lsx' ); ?></span> |
|
688 | + <span><?php esc_html_e('Cart', 'lsx'); ?></span> |
|
689 | 689 | </a> |
690 | 690 | </li> |
691 | 691 | </ul> |
@@ -694,11 +694,11 @@ discard block |
||
694 | 694 | endif; |
695 | 695 | } |
696 | 696 | |
697 | - add_action( 'lsx_body_bottom', 'lsx_wc_footer_bar', 15 ); |
|
697 | + add_action('lsx_body_bottom', 'lsx_wc_footer_bar', 15); |
|
698 | 698 | |
699 | 699 | endif; |
700 | 700 | |
701 | -if ( ! function_exists( 'lsx_wc_body_class' ) ) : |
|
701 | +if ( ! function_exists('lsx_wc_body_class')) : |
|
702 | 702 | |
703 | 703 | /** |
704 | 704 | * Changes body class. |
@@ -706,25 +706,25 @@ discard block |
||
706 | 706 | * @package lsx |
707 | 707 | * @subpackage woocommerce |
708 | 708 | */ |
709 | - function lsx_wc_body_class( $classes ) { |
|
709 | + function lsx_wc_body_class($classes) { |
|
710 | 710 | global $post; |
711 | 711 | |
712 | - if ( $post && class_exists( 'WC_Wishlists_Pages' ) && WC_Wishlists_Pages::is_wishlist_page( $post->post_name ) ) { |
|
712 | + if ($post && class_exists('WC_Wishlists_Pages') && WC_Wishlists_Pages::is_wishlist_page($post->post_name)) { |
|
713 | 713 | $classes[] = 'woocommerce-page woocommerce-wishlist'; |
714 | 714 | } |
715 | 715 | |
716 | - if ( ! empty( get_theme_mod( 'lsx_wc_mobile_footer_bar_status', '1' ) ) ) { |
|
716 | + if ( ! empty(get_theme_mod('lsx_wc_mobile_footer_bar_status', '1'))) { |
|
717 | 717 | $classes[] = 'lsx-wc-has-footer-bar'; |
718 | 718 | } |
719 | 719 | |
720 | 720 | return $classes; |
721 | 721 | } |
722 | 722 | |
723 | - add_filter( 'body_class', 'lsx_wc_body_class', 2999 ); |
|
723 | + add_filter('body_class', 'lsx_wc_body_class', 2999); |
|
724 | 724 | |
725 | 725 | endif; |
726 | 726 | |
727 | -if ( ! function_exists( 'lsx_wc_downloadable_products' ) ) : |
|
727 | +if ( ! function_exists('lsx_wc_downloadable_products')) : |
|
728 | 728 | |
729 | 729 | /** |
730 | 730 | * Changes downloads "download" button text. |
@@ -732,19 +732,19 @@ discard block |
||
732 | 732 | * @package lsx |
733 | 733 | * @subpackage woocommerce |
734 | 734 | */ |
735 | - function lsx_wc_downloadable_products( $downloads ) { |
|
736 | - foreach ( $downloads as $i => $download ) { |
|
737 | - $downloads[ $i ]['download_name'] = esc_html__( 'Download', 'lsx' ); |
|
735 | + function lsx_wc_downloadable_products($downloads) { |
|
736 | + foreach ($downloads as $i => $download) { |
|
737 | + $downloads[$i]['download_name'] = esc_html__('Download', 'lsx'); |
|
738 | 738 | } |
739 | 739 | |
740 | 740 | return $downloads; |
741 | 741 | } |
742 | 742 | |
743 | - add_filter( 'woocommerce_customer_get_downloadable_products', 'lsx_wc_downloadable_products', 2999 ); |
|
743 | + add_filter('woocommerce_customer_get_downloadable_products', 'lsx_wc_downloadable_products', 2999); |
|
744 | 744 | |
745 | 745 | endif; |
746 | 746 | |
747 | -if ( ! function_exists( 'lsx_wc_move_bundle_products' ) ) : |
|
747 | +if ( ! function_exists('lsx_wc_move_bundle_products')) : |
|
748 | 748 | |
749 | 749 | /** |
750 | 750 | * WooCommerce - Move the bundle products to a tab. |
@@ -752,46 +752,46 @@ discard block |
||
752 | 752 | * @package lsx |
753 | 753 | * @subpackage woocommerce |
754 | 754 | */ |
755 | - function lsx_wc_move_bundle_products( $tabs ) { |
|
755 | + function lsx_wc_move_bundle_products($tabs) { |
|
756 | 756 | global $product, $post; |
757 | 757 | |
758 | - if ( method_exists( $product , 'get_bundled_items' ) ) { |
|
758 | + if (method_exists($product, 'get_bundled_items')) { |
|
759 | 759 | $bundled_items = $product->get_bundled_items(); |
760 | 760 | |
761 | - if ( ! empty( $bundled_items ) ) { |
|
761 | + if ( ! empty($bundled_items)) { |
|
762 | 762 | $tabs['bundled_products'] = array( |
763 | - 'title' => __( 'Included Products', 'lsx' ), |
|
763 | + 'title' => __('Included Products', 'lsx'), |
|
764 | 764 | 'priority' => 10, |
765 | 765 | 'callback' => 'lsx_wc_bundle_products', |
766 | 766 | ); |
767 | 767 | } |
768 | 768 | } |
769 | 769 | |
770 | - if ( isset( $tabs['description'] ) ) { |
|
770 | + if (isset($tabs['description'])) { |
|
771 | 771 | $tabs['description']['priority'] = 5; |
772 | 772 | } |
773 | 773 | |
774 | - if ( isset( $tabs['reviews'] ) ) { |
|
774 | + if (isset($tabs['reviews'])) { |
|
775 | 775 | $tabs['reviews']['priority'] = 15; |
776 | 776 | } |
777 | 777 | |
778 | - if ( isset( $tabs['product_enquiry'] ) ) { |
|
778 | + if (isset($tabs['product_enquiry'])) { |
|
779 | 779 | $tabs['product_enquiry']['priority'] = 20; |
780 | 780 | } |
781 | 781 | |
782 | 782 | return $tabs; |
783 | 783 | } |
784 | 784 | |
785 | - add_action( 'woocommerce_product_tabs', 'lsx_wc_move_bundle_products', 50 ); |
|
785 | + add_action('woocommerce_product_tabs', 'lsx_wc_move_bundle_products', 50); |
|
786 | 786 | |
787 | 787 | endif; |
788 | 788 | |
789 | -if ( ! function_exists( 'lsx_wc_bundle_products' ) ) : |
|
789 | +if ( ! function_exists('lsx_wc_bundle_products')) : |
|
790 | 790 | |
791 | 791 | function lsx_wc_bundle_products() { |
792 | 792 | global $product, $post; |
793 | 793 | |
794 | - if ( method_exists( $product , 'get_bundled_items' ) ) { |
|
794 | + if (method_exists($product, 'get_bundled_items')) { |
|
795 | 795 | $bundled_items = $product->get_bundled_items(); |
796 | 796 | |
797 | 797 | // do_action( 'woocommerce_before_bundled_items', $product ); |
@@ -807,16 +807,16 @@ discard block |
||
807 | 807 | // $this->widget_start( $args, $instance ); |
808 | 808 | |
809 | 809 | // @codingStandardsIgnoreLine |
810 | - echo apply_filters( 'woocommerce_before_widget_product_list', '<ul class="product_list_widget">' ); |
|
810 | + echo apply_filters('woocommerce_before_widget_product_list', '<ul class="product_list_widget">'); |
|
811 | 811 | |
812 | - foreach ( $bundled_items as $bundled_item ) { |
|
813 | - $product = wc_get_product( $bundled_item->item_data['product_id'] ); |
|
814 | - wc_get_template( 'content-widget-product.php' ); |
|
812 | + foreach ($bundled_items as $bundled_item) { |
|
813 | + $product = wc_get_product($bundled_item->item_data['product_id']); |
|
814 | + wc_get_template('content-widget-product.php'); |
|
815 | 815 | $product = $product_original; |
816 | 816 | } |
817 | 817 | |
818 | 818 | // @codingStandardsIgnoreLine |
819 | - echo apply_filters( 'woocommerce_after_widget_product_list', '</ul>' ); |
|
819 | + echo apply_filters('woocommerce_after_widget_product_list', '</ul>'); |
|
820 | 820 | } |
821 | 821 | |
822 | 822 | // $this->widget_end( $args ); |
@@ -825,7 +825,7 @@ discard block |
||
825 | 825 | endif; |
826 | 826 | |
827 | 827 | |
828 | -if ( ! function_exists( 'lsx_wc_product_searchform' ) ) : |
|
828 | +if ( ! function_exists('lsx_wc_product_searchform')) : |
|
829 | 829 | /** |
830 | 830 | * woo_custom_product_searchform |
831 | 831 | * |
@@ -833,7 +833,7 @@ discard block |
||
833 | 833 | * @since 1.0 |
834 | 834 | * @return void |
835 | 835 | */ |
836 | - function lsx_wc_product_searchform( $form ) { |
|
836 | + function lsx_wc_product_searchform($form) { |
|
837 | 837 | |
838 | 838 | $form = ' |
839 | 839 | <form role="search" method="get" class="search-form form-inline" id="searchform" action="<?php echo esc_url( home_url( \'/\' ) ); ?>"> |
@@ -854,42 +854,42 @@ discard block |
||
854 | 854 | |
855 | 855 | } |
856 | 856 | endif; |
857 | -add_filter( 'get_product_search_form' , 'lsx_wc_product_searchform', 10, 1 ); |
|
857 | +add_filter('get_product_search_form', 'lsx_wc_product_searchform', 10, 1); |
|
858 | 858 | |
859 | 859 | /** |
860 | 860 | * Output the pagination. |
861 | 861 | */ |
862 | 862 | function woocommerce_pagination() { |
863 | - if ( ! wc_get_loop_prop( 'is_paginated' ) || ! woocommerce_products_will_display() ) { |
|
863 | + if ( ! wc_get_loop_prop('is_paginated') || ! woocommerce_products_will_display()) { |
|
864 | 864 | return; |
865 | 865 | } |
866 | 866 | $args = array( |
867 | - 'total' => wc_get_loop_prop( 'total_pages' ), |
|
868 | - 'current' => wc_get_loop_prop( 'current_page' ), |
|
867 | + 'total' => wc_get_loop_prop('total_pages'), |
|
868 | + 'current' => wc_get_loop_prop('current_page'), |
|
869 | 869 | ); |
870 | 870 | |
871 | - if ( wc_get_loop_prop( 'is_shortcode' ) ) { |
|
872 | - $args['base'] = esc_url_raw( add_query_arg( 'product-page', '%#%', false ) ); |
|
871 | + if (wc_get_loop_prop('is_shortcode')) { |
|
872 | + $args['base'] = esc_url_raw(add_query_arg('product-page', '%#%', false)); |
|
873 | 873 | $args['format'] = '?product-page = %#%'; |
874 | 874 | } else { |
875 | - $args['base'] = esc_url_raw( str_replace( 999999999, '%#%', remove_query_arg( 'add-to-cart', get_pagenum_link( 999999999, false ) ) ) ); |
|
875 | + $args['base'] = esc_url_raw(str_replace(999999999, '%#%', remove_query_arg('add-to-cart', get_pagenum_link(999999999, false)))); |
|
876 | 876 | $args['format'] = ''; |
877 | 877 | } |
878 | 878 | |
879 | - echo wp_kses_post( '<div class="lsx-pagination-wrapper">' ); |
|
880 | - $template = wc_get_template_html( 'loop/pagination.php', $args ); |
|
881 | - $template = str_replace( 'woocommerce-pagination', 'lsx-pagination', $template ); |
|
882 | - echo wp_kses_post( $template ); |
|
883 | - echo wp_kses_post( '</div>' ); |
|
879 | + echo wp_kses_post('<div class="lsx-pagination-wrapper">'); |
|
880 | + $template = wc_get_template_html('loop/pagination.php', $args); |
|
881 | + $template = str_replace('woocommerce-pagination', 'lsx-pagination', $template); |
|
882 | + echo wp_kses_post($template); |
|
883 | + echo wp_kses_post('</div>'); |
|
884 | 884 | } |
885 | 885 | |
886 | -function lsx_wc_pagination_args( $args ) { |
|
887 | - $args['prev_text'] = '<span class="meta-nav">←</span> ' . esc_html__( 'Previous', 'lsx' ); |
|
888 | - $args['next_text'] = esc_html__( 'Next', 'lsx' ) . ' <span class="meta-nav">→</span>'; |
|
889 | - $args['type'] = 'plain'; |
|
886 | +function lsx_wc_pagination_args($args) { |
|
887 | + $args['prev_text'] = '<span class="meta-nav">←</span> ' . esc_html__('Previous', 'lsx'); |
|
888 | + $args['next_text'] = esc_html__('Next', 'lsx') . ' <span class="meta-nav">→</span>'; |
|
889 | + $args['type'] = 'plain'; |
|
890 | 890 | return $args; |
891 | 891 | } |
892 | -add_filter( 'woocommerce_pagination_args', 'lsx_wc_pagination_args',10 ,1 ); |
|
892 | +add_filter('woocommerce_pagination_args', 'lsx_wc_pagination_args', 10, 1); |
|
893 | 893 | |
894 | 894 | |
895 | 895 | /** |
@@ -899,19 +899,19 @@ discard block |
||
899 | 899 | * |
900 | 900 | * @return array |
901 | 901 | */ |
902 | -function lsx_wc_product_widget_template( $located, $template_name ) { |
|
903 | - if ( 'content-widget-product.php' === $template_name || 'content-widget-review.php' === $template_name ) { |
|
902 | +function lsx_wc_product_widget_template($located, $template_name) { |
|
903 | + if ('content-widget-product.php' === $template_name || 'content-widget-review.php' === $template_name) { |
|
904 | 904 | |
905 | 905 | $new_location = get_stylesheet_directory() . '/partials/' . $template_name; |
906 | - if ( file_exists( $new_location ) ) { |
|
906 | + if (file_exists($new_location)) { |
|
907 | 907 | $located = $new_location; |
908 | 908 | } else { |
909 | 909 | $new_location = get_parent_theme_file_path() . '/partials/' . $template_name; |
910 | - if ( file_exists( $new_location ) ) { |
|
910 | + if (file_exists($new_location)) { |
|
911 | 911 | $located = $new_location; |
912 | 912 | } |
913 | 913 | } |
914 | 914 | } |
915 | 915 | return $located; |
916 | 916 | } |
917 | -add_filter( 'wc_get_template', 'lsx_wc_product_widget_template',90 ,2 ); |
|
917 | +add_filter('wc_get_template', 'lsx_wc_product_widget_template', 90, 2); |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage sensei |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! class_exists( 'LSX_Sensei' ) ) : |
|
13 | +if ( ! class_exists('LSX_Sensei')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * The LSX Sensei integration class |
@@ -50,60 +50,60 @@ discard block |
||
50 | 50 | |
51 | 51 | global $woothemes_sensei; |
52 | 52 | |
53 | - add_action( 'wp_enqueue_scripts', array( $this, 'lsx_sensei_scripts_add_styles' ) ); |
|
53 | + add_action('wp_enqueue_scripts', array($this, 'lsx_sensei_scripts_add_styles')); |
|
54 | 54 | |
55 | - remove_action( 'sensei_before_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper' ), 10 ); |
|
56 | - add_action( 'sensei_before_main_content', array( $this, 'lsx_sensei_theme_wrapper_start' ) ); |
|
55 | + remove_action('sensei_before_main_content', array($woothemes_sensei->frontend, 'sensei_output_content_wrapper'), 10); |
|
56 | + add_action('sensei_before_main_content', array($this, 'lsx_sensei_theme_wrapper_start')); |
|
57 | 57 | |
58 | - remove_action( 'sensei_after_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper_end' ), 10 ); |
|
59 | - add_action( 'sensei_after_main_content', array( $this, 'lsx_sensei_theme_wrapper_end' ) ); |
|
58 | + remove_action('sensei_after_main_content', array($woothemes_sensei->frontend, 'sensei_output_content_wrapper_end'), 10); |
|
59 | + add_action('sensei_after_main_content', array($this, 'lsx_sensei_theme_wrapper_end')); |
|
60 | 60 | |
61 | - add_filter( 'get_the_archive_title', array( $this, 'lsx_sensei_modify_archive_title' ), 99, 1 ); |
|
61 | + add_filter('get_the_archive_title', array($this, 'lsx_sensei_modify_archive_title'), 99, 1); |
|
62 | 62 | |
63 | 63 | // LSX |
64 | - add_filter( 'lsx_global_header_disable', array( $this, 'lsx_sensei_disable_lsx_banner' ) ); |
|
64 | + add_filter('lsx_global_header_disable', array($this, 'lsx_sensei_disable_lsx_banner')); |
|
65 | 65 | // LSX Banners - Plugin, Placeholders |
66 | - add_filter( 'lsx_banner_plugin_disable', array( $this, 'lsx_sensei_disable_lsx_banner' ) ); |
|
66 | + add_filter('lsx_banner_plugin_disable', array($this, 'lsx_sensei_disable_lsx_banner')); |
|
67 | 67 | // LSX Banners - Banner |
68 | - add_filter( 'lsx_banner_disable', array( $this, 'lsx_sensei_disable_lsx_banner' ) ); |
|
68 | + add_filter('lsx_banner_disable', array($this, 'lsx_sensei_disable_lsx_banner')); |
|
69 | 69 | |
70 | - add_filter( 'course_archive_title', array( $this, 'lsx_sensei_archive_title' ), 10, 1 ); |
|
71 | - add_filter( 'sensei_lesson_archive_title', array( $this, 'lsx_sensei_archive_title' ), 10, 1 ); |
|
70 | + add_filter('course_archive_title', array($this, 'lsx_sensei_archive_title'), 10, 1); |
|
71 | + add_filter('sensei_lesson_archive_title', array($this, 'lsx_sensei_archive_title'), 10, 1); |
|
72 | 72 | |
73 | - add_filter( 'course_category_title', array( $this, 'lsx_sensei_category_title' ), 10, 1 ); |
|
73 | + add_filter('course_category_title', array($this, 'lsx_sensei_category_title'), 10, 1); |
|
74 | 74 | |
75 | - add_action( 'sensei_course_content_inside_after', array( $this, 'lsx_sensei_add_buttons' ), 9 ); |
|
75 | + add_action('sensei_course_content_inside_after', array($this, 'lsx_sensei_add_buttons'), 9); |
|
76 | 76 | |
77 | - add_filter( 'sensei_wc_paid_courses_add_to_cart_button_text', array( $this, 'lsx_sensei_add_to_cart_text' ) ); |
|
77 | + add_filter('sensei_wc_paid_courses_add_to_cart_button_text', array($this, 'lsx_sensei_add_to_cart_text')); |
|
78 | 78 | |
79 | - add_action( 'lsx_content_wrap_before', array( $this, 'lsx_sensei_results_header' ) ); |
|
79 | + add_action('lsx_content_wrap_before', array($this, 'lsx_sensei_results_header')); |
|
80 | 80 | |
81 | - add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_course_breadcrumb_filter' ), 40, 1 ); |
|
82 | - add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_course_breadcrumb_filter' ), 40, 1 ); |
|
81 | + add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_course_breadcrumb_filter'), 40, 1); |
|
82 | + add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_course_breadcrumb_filter'), 40, 1); |
|
83 | 83 | |
84 | - add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_lesson_breadcrumb_filter' ), 40, 1 ); |
|
85 | - add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_lesson_breadcrumb_filter' ), 40, 1 ); |
|
84 | + add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_lesson_breadcrumb_filter'), 40, 1); |
|
85 | + add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_lesson_breadcrumb_filter'), 40, 1); |
|
86 | 86 | |
87 | - add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_module_breadcrumb_filter' ), 40, 1 ); |
|
88 | - add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_module_breadcrumb_filter' ), 40, 1 ); |
|
87 | + add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_module_breadcrumb_filter'), 40, 1); |
|
88 | + add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_module_breadcrumb_filter'), 40, 1); |
|
89 | 89 | |
90 | - add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_learner_breadcrumb_filter' ), 40, 1 ); |
|
91 | - add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_learner_breadcrumb_filter' ), 40, 1 ); |
|
90 | + add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_learner_breadcrumb_filter'), 40, 1); |
|
91 | + add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_learner_breadcrumb_filter'), 40, 1); |
|
92 | 92 | |
93 | - add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_quiz_breadcrumb_filter' ), 40, 1 ); |
|
94 | - add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_quiz_breadcrumb_filter' ), 40, 1 ); |
|
93 | + add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_quiz_breadcrumb_filter'), 40, 1); |
|
94 | + add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_quiz_breadcrumb_filter'), 40, 1); |
|
95 | 95 | |
96 | - add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_messages_breadcrumb_filter' ), 40, 1 ); |
|
97 | - add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_messages_breadcrumb_filter' ), 40, 1 ); |
|
96 | + add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_messages_breadcrumb_filter'), 40, 1); |
|
97 | + add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_messages_breadcrumb_filter'), 40, 1); |
|
98 | 98 | |
99 | - add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_single_message_breadcrumb_filter' ), 40, 1 ); |
|
100 | - add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_single_message_breadcrumb_filter' ), 40, 1 ); |
|
99 | + add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_single_message_breadcrumb_filter'), 40, 1); |
|
100 | + add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_single_message_breadcrumb_filter'), 40, 1); |
|
101 | 101 | |
102 | - add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_results_breadcrumb_filter' ), 40, 1 ); |
|
103 | - add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_results_breadcrumb_filter' ), 40, 1 ); |
|
102 | + add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_results_breadcrumb_filter'), 40, 1); |
|
103 | + add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_results_breadcrumb_filter'), 40, 1); |
|
104 | 104 | |
105 | - add_action( 'sensei_archive_before_message_loop', array( $this, 'lsx_sensei_back_message_button' ) ); |
|
106 | - add_action( 'sensei_content_message_after', array( $this, 'lsx_sensei_view_message_button' ) ); |
|
105 | + add_action('sensei_archive_before_message_loop', array($this, 'lsx_sensei_back_message_button')); |
|
106 | + add_action('sensei_content_message_after', array($this, 'lsx_sensei_view_message_button')); |
|
107 | 107 | |
108 | 108 | } |
109 | 109 | |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | */ |
116 | 116 | public static function get_instance() { |
117 | 117 | // If the single instance hasn't been set, set it now. |
118 | - if ( null === self::$instance ) { |
|
118 | + if (null === self::$instance) { |
|
119 | 119 | self::$instance = new self; |
120 | 120 | } |
121 | 121 | return self::$instance; |
@@ -128,8 +128,8 @@ discard block |
||
128 | 128 | * @subpackage sensei |
129 | 129 | */ |
130 | 130 | public function lsx_sensei_scripts_add_styles() { |
131 | - wp_enqueue_style( 'sensei-lsx', get_template_directory_uri() . '/assets/css/sensei/sensei.css', array( 'lsx_main' ), LSX_VERSION ); |
|
132 | - wp_style_add_data( 'sensei-lsx', 'rtl', 'replace' ); |
|
131 | + wp_enqueue_style('sensei-lsx', get_template_directory_uri() . '/assets/css/sensei/sensei.css', array('lsx_main'), LSX_VERSION); |
|
132 | + wp_style_add_data('sensei-lsx', 'rtl', 'replace'); |
|
133 | 133 | } |
134 | 134 | |
135 | 135 | /** |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | */ |
141 | 141 | public function lsx_sensei_theme_wrapper_start() { |
142 | 142 | lsx_content_wrap_before(); |
143 | - echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">'; |
|
143 | + echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">'; |
|
144 | 144 | lsx_content_before(); |
145 | 145 | echo '<main id="main" class="site-main" role="main">'; |
146 | 146 | lsx_content_top(); |
@@ -166,18 +166,18 @@ discard block |
||
166 | 166 | * @param [type] $title |
167 | 167 | * @return void |
168 | 168 | */ |
169 | - public function lsx_sensei_modify_archive_title( $title ) { |
|
170 | - if ( is_archive() && is_post_type_archive( 'course' ) ) { |
|
171 | - $title = __( 'Courses', 'lsx' ); |
|
169 | + public function lsx_sensei_modify_archive_title($title) { |
|
170 | + if (is_archive() && is_post_type_archive('course')) { |
|
171 | + $title = __('Courses', 'lsx'); |
|
172 | 172 | } |
173 | - if ( is_archive() && is_post_type_archive( 'sensei_message' ) ) { |
|
174 | - $title = __( 'Messages', 'lsx' ); |
|
173 | + if (is_archive() && is_post_type_archive('sensei_message')) { |
|
174 | + $title = __('Messages', 'lsx'); |
|
175 | 175 | } |
176 | - if ( is_archive() && is_post_type_archive( 'lesson' ) ) { |
|
177 | - $title = __( 'Lessons', 'lsx' ); |
|
176 | + if (is_archive() && is_post_type_archive('lesson')) { |
|
177 | + $title = __('Lessons', 'lsx'); |
|
178 | 178 | } |
179 | - if ( is_archive() && is_tax() ) { |
|
180 | - $title = single_term_title( '', false ); |
|
179 | + if (is_archive() && is_tax()) { |
|
180 | + $title = single_term_title('', false); |
|
181 | 181 | } |
182 | 182 | return $title; |
183 | 183 | } |
@@ -188,8 +188,8 @@ discard block |
||
188 | 188 | * @package lsx |
189 | 189 | * @subpackage sensei |
190 | 190 | */ |
191 | - public function lsx_sensei_disable_lsx_banner( $disabled ) { |
|
192 | - if ( is_sensei() ) { |
|
191 | + public function lsx_sensei_disable_lsx_banner($disabled) { |
|
192 | + if (is_sensei()) { |
|
193 | 193 | $disabled = true; |
194 | 194 | } |
195 | 195 | |
@@ -202,8 +202,8 @@ discard block |
||
202 | 202 | * @package lsx |
203 | 203 | * @subpackage sensei |
204 | 204 | */ |
205 | - public function lsx_sensei_archive_title( $html ) { |
|
206 | - $html = preg_replace( '/<header class="archive-header"><h1>([^<]+)<\/h1><\/header>/i', '<h1>$1</h1>', $html ); |
|
205 | + public function lsx_sensei_archive_title($html) { |
|
206 | + $html = preg_replace('/<header class="archive-header"><h1>([^<]+)<\/h1><\/header>/i', '<h1>$1</h1>', $html); |
|
207 | 207 | return $html; |
208 | 208 | } |
209 | 209 | |
@@ -213,8 +213,8 @@ discard block |
||
213 | 213 | * @package lsx |
214 | 214 | * @subpackage sensei |
215 | 215 | */ |
216 | - public function lsx_sensei_category_title( $html ) { |
|
217 | - $html = str_replace( 'h2', 'h1', $html ); |
|
216 | + public function lsx_sensei_category_title($html) { |
|
217 | + $html = str_replace('h2', 'h1', $html); |
|
218 | 218 | return $html; |
219 | 219 | } |
220 | 220 | |
@@ -224,18 +224,18 @@ discard block |
||
224 | 224 | * @package lsx |
225 | 225 | * @subpackage sensei |
226 | 226 | */ |
227 | - public function lsx_sensei_add_buttons( $course_id ) { |
|
227 | + public function lsx_sensei_add_buttons($course_id) { |
|
228 | 228 | global $post, $current_user; |
229 | - $is_user_taking_course = Sensei_Utils::user_started_course( $post->ID, $current_user->ID ); |
|
230 | - if ( class_exists( 'Sensei_WC' ) ) { |
|
231 | - $course_purchasable = Sensei_WC::is_course_purchasable( $post->ID ); |
|
229 | + $is_user_taking_course = Sensei_Utils::user_started_course($post->ID, $current_user->ID); |
|
230 | + if (class_exists('Sensei_WC')) { |
|
231 | + $course_purchasable = Sensei_WC::is_course_purchasable($post->ID); |
|
232 | 232 | } |
233 | 233 | |
234 | 234 | ?> |
235 | 235 | <section class="entry-actions"> |
236 | 236 | <?php |
237 | - if ( ( ! $is_user_taking_course ) && $course_purchasable ) { |
|
238 | - Sensei_WC::the_add_to_cart_button_html( $post->ID ); |
|
237 | + if (( ! $is_user_taking_course) && $course_purchasable) { |
|
238 | + Sensei_WC::the_add_to_cart_button_html($post->ID); |
|
239 | 239 | } |
240 | 240 | ?> |
241 | 241 | </section> |
@@ -248,8 +248,8 @@ discard block |
||
248 | 248 | * @package lsx |
249 | 249 | * @subpackage sensei |
250 | 250 | */ |
251 | - public function lsx_sensei_add_to_cart_text( $text ) { |
|
252 | - $text = esc_html__( 'Add to cart', 'lsx' ); |
|
251 | + public function lsx_sensei_add_to_cart_text($text) { |
|
252 | + $text = esc_html__('Add to cart', 'lsx'); |
|
253 | 253 | return $text; |
254 | 254 | } |
255 | 255 | |
@@ -259,46 +259,46 @@ discard block |
||
259 | 259 | * @package lsx |
260 | 260 | * @subpackage layout |
261 | 261 | */ |
262 | - public function lsx_sensei_results_header( $user ) { |
|
262 | + public function lsx_sensei_results_header($user) { |
|
263 | 263 | |
264 | 264 | $default_size = 'sm'; |
265 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
265 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
266 | 266 | global $wp_query; |
267 | - if ( isset( $wp_query->query_vars['course_results'] ) ) { |
|
267 | + if (isset($wp_query->query_vars['course_results'])) { |
|
268 | 268 | $is_results = $wp_query->query_vars['course_results']; |
269 | 269 | } else { |
270 | 270 | $is_results = false; |
271 | 271 | } |
272 | - if ( isset( $wp_query->query_vars['learner_profile'] ) ) { |
|
272 | + if (isset($wp_query->query_vars['learner_profile'])) { |
|
273 | 273 | $is_profile = $wp_query->query_vars['learner_profile']; |
274 | 274 | } else { |
275 | 275 | $is_profile = false; |
276 | 276 | } |
277 | 277 | |
278 | - if ( is_sticky() && $is_results ) : |
|
279 | - $course_for_results = get_page_by_path( $is_results, OBJECT, 'course' ); |
|
278 | + if (is_sticky() && $is_results) : |
|
279 | + $course_for_results = get_page_by_path($is_results, OBJECT, 'course'); |
|
280 | 280 | |
281 | - $course_title = esc_html( $course_for_results->post_title ); |
|
281 | + $course_title = esc_html($course_for_results->post_title); |
|
282 | 282 | ?> |
283 | - <div class="archive-header-wrapper banner-single col-<?php echo esc_attr( $size ); ?>-12"> |
|
283 | + <div class="archive-header-wrapper banner-single col-<?php echo esc_attr($size); ?>-12"> |
|
284 | 284 | <?php lsx_global_header_inner_bottom(); ?> |
285 | 285 | <header class="archive-header"> |
286 | - <h1 class="archive-title"><?php echo wp_kses_post( $course_title ); ?></h1> |
|
286 | + <h1 class="archive-title"><?php echo wp_kses_post($course_title); ?></h1> |
|
287 | 287 | </header> |
288 | 288 | |
289 | 289 | </div> |
290 | 290 | <?php |
291 | 291 | endif; |
292 | 292 | |
293 | - if ( is_sticky() && $is_profile ) : |
|
293 | + if (is_sticky() && $is_profile) : |
|
294 | 294 | $query_var = $wp_query->query_vars['learner_profile']; |
295 | - $learner_user = Sensei_Learner::find_by_query_var( $query_var ); |
|
295 | + $learner_user = Sensei_Learner::find_by_query_var($query_var); |
|
296 | 296 | $learner_name = $learner_user->display_name; |
297 | 297 | ?> |
298 | - <div class="archive-header-wrapper banner-single col-<?php echo esc_attr( $size ); ?>-12"> |
|
298 | + <div class="archive-header-wrapper banner-single col-<?php echo esc_attr($size); ?>-12"> |
|
299 | 299 | <?php lsx_global_header_inner_bottom(); ?> |
300 | 300 | <header class="archive-header"> |
301 | - <h1 class="archive-title"><?php echo esc_html( $learner_name ); ?></h1> |
|
301 | + <h1 class="archive-title"><?php echo esc_html($learner_name); ?></h1> |
|
302 | 302 | </header> |
303 | 303 | |
304 | 304 | </div> |
@@ -311,21 +311,21 @@ discard block |
||
311 | 311 | * @param $crumbs |
312 | 312 | * @return array |
313 | 313 | */ |
314 | - public function lsx_sensei_course_breadcrumb_filter( $crumbs, $id = 0 ) { |
|
315 | - if ( is_single() && ( is_singular( 'course' ) ) ) { |
|
314 | + public function lsx_sensei_course_breadcrumb_filter($crumbs, $id = 0) { |
|
315 | + if (is_single() && (is_singular('course'))) { |
|
316 | 316 | global $course; |
317 | 317 | $lesson = get_the_title(); |
318 | - $course_page_url = intval( Sensei()->settings->settings['course_page'] ); |
|
319 | - $course_page_url = get_permalink( $course_page_url ); |
|
318 | + $course_page_url = intval(Sensei()->settings->settings['course_page']); |
|
319 | + $course_page_url = get_permalink($course_page_url); |
|
320 | 320 | |
321 | - if ( $lesson ) { |
|
321 | + if ($lesson) { |
|
322 | 322 | |
323 | 323 | $new_crumbs = array(); |
324 | 324 | $new_crumbs[0] = $crumbs[0]; |
325 | 325 | |
326 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
326 | + if (function_exists('woocommerce_breadcrumb')) { |
|
327 | 327 | $new_crumbs[1] = array( |
328 | - 0 => __( 'All Courses', 'lsx' ), |
|
328 | + 0 => __('All Courses', 'lsx'), |
|
329 | 329 | 1 => $course_page_url, |
330 | 330 | ); |
331 | 331 | $new_crumbs[2] = array( |
@@ -333,7 +333,7 @@ discard block |
||
333 | 333 | ); |
334 | 334 | } else { |
335 | 335 | $new_crumbs[1] = array( |
336 | - 'text' => __( 'All Courses', 'lsx' ), |
|
336 | + 'text' => __('All Courses', 'lsx'), |
|
337 | 337 | 'url' => $course_page_url, |
338 | 338 | ); |
339 | 339 | $new_crumbs[2] = array( |
@@ -351,34 +351,34 @@ discard block |
||
351 | 351 | * @param $crumbs |
352 | 352 | * @return array |
353 | 353 | */ |
354 | - public function lsx_sensei_lesson_breadcrumb_filter( $crumbs, $id = 0 ) { |
|
355 | - if ( is_sensei() && is_single() && ( is_singular( 'lesson' ) ) ) { |
|
354 | + public function lsx_sensei_lesson_breadcrumb_filter($crumbs, $id = 0) { |
|
355 | + if (is_sensei() && is_single() && (is_singular('lesson'))) { |
|
356 | 356 | global $course; |
357 | 357 | $lesson = get_the_title(); |
358 | - $course_page_url = intval( Sensei()->settings->settings['course_page'] ); |
|
359 | - $course_page_url = get_permalink( $course_page_url ); |
|
358 | + $course_page_url = intval(Sensei()->settings->settings['course_page']); |
|
359 | + $course_page_url = get_permalink($course_page_url); |
|
360 | 360 | |
361 | - if ( empty( $id ) ) { |
|
361 | + if (empty($id)) { |
|
362 | 362 | $id = get_the_ID(); |
363 | 363 | } |
364 | 364 | |
365 | - if ( 0 < intval( $id ) ) { |
|
366 | - $course = intval( get_post_meta( $id, '_lesson_course', true ) ); |
|
367 | - $course_id = esc_url( get_permalink( $course ) ); |
|
368 | - $course_title = esc_html( get_the_title( $course ) ); |
|
369 | - if ( ! $course ) { |
|
365 | + if (0 < intval($id)) { |
|
366 | + $course = intval(get_post_meta($id, '_lesson_course', true)); |
|
367 | + $course_id = esc_url(get_permalink($course)); |
|
368 | + $course_title = esc_html(get_the_title($course)); |
|
369 | + if ( ! $course) { |
|
370 | 370 | return; |
371 | 371 | } |
372 | 372 | } |
373 | 373 | |
374 | - if ( $course_id ) { |
|
374 | + if ($course_id) { |
|
375 | 375 | |
376 | 376 | $new_crumbs = array(); |
377 | 377 | $new_crumbs[0] = $crumbs[0]; |
378 | 378 | |
379 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
379 | + if (function_exists('woocommerce_breadcrumb')) { |
|
380 | 380 | $new_crumbs[1] = array( |
381 | - 0 => __( 'Courses', 'lsx' ), |
|
381 | + 0 => __('Courses', 'lsx'), |
|
382 | 382 | 1 => $course_page_url, |
383 | 383 | ); |
384 | 384 | $new_crumbs[2] = array( |
@@ -390,7 +390,7 @@ discard block |
||
390 | 390 | ); |
391 | 391 | } else { |
392 | 392 | $new_crumbs[1] = array( |
393 | - 'text' => __( 'Courses', 'lsx' ), |
|
393 | + 'text' => __('Courses', 'lsx'), |
|
394 | 394 | 'url' => $course_page_url, |
395 | 395 | ); |
396 | 396 | $new_crumbs[2] = array( |
@@ -412,27 +412,27 @@ discard block |
||
412 | 412 | * @param $crumbs |
413 | 413 | * @return array |
414 | 414 | */ |
415 | - public function lsx_sensei_module_breadcrumb_filter( $crumbs, $id = 0 ) { |
|
416 | - if ( ! empty( get_queried_object()->name ) ) { |
|
417 | - $title = apply_filters( 'sensei_module_archive_title', get_queried_object()->name ); |
|
415 | + public function lsx_sensei_module_breadcrumb_filter($crumbs, $id = 0) { |
|
416 | + if ( ! empty(get_queried_object()->name)) { |
|
417 | + $title = apply_filters('sensei_module_archive_title', get_queried_object()->name); |
|
418 | 418 | } |
419 | 419 | |
420 | - if ( is_sensei() && is_tax() && is_archive() && ( ! empty( $title ) ) ) { |
|
420 | + if (is_sensei() && is_tax() && is_archive() && ( ! empty($title))) { |
|
421 | 421 | |
422 | 422 | $lesson = get_the_archive_title(); |
423 | - $course_page_url = intval( Sensei()->settings->settings['course_page'] ); |
|
424 | - $course_page_url = get_permalink( $course_page_url ); |
|
423 | + $course_page_url = intval(Sensei()->settings->settings['course_page']); |
|
424 | + $course_page_url = get_permalink($course_page_url); |
|
425 | 425 | |
426 | - if ( empty( $id ) ) { |
|
426 | + if (empty($id)) { |
|
427 | 427 | $id = get_the_ID(); |
428 | 428 | } |
429 | 429 | |
430 | 430 | $new_crumbs = array(); |
431 | 431 | $new_crumbs[0] = $crumbs[0]; |
432 | 432 | |
433 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
433 | + if (function_exists('woocommerce_breadcrumb')) { |
|
434 | 434 | $new_crumbs[1] = array( |
435 | - 0 => __( 'Courses', 'lsx' ), |
|
435 | + 0 => __('Courses', 'lsx'), |
|
436 | 436 | 1 => $course_page_url, |
437 | 437 | ); |
438 | 438 | $new_crumbs[2] = array( |
@@ -440,7 +440,7 @@ discard block |
||
440 | 440 | ); |
441 | 441 | } else { |
442 | 442 | $new_crumbs[1] = array( |
443 | - 'text' => __( 'Courses', 'lsx' ), |
|
443 | + 'text' => __('Courses', 'lsx'), |
|
444 | 444 | 'url' => $course_page_url, |
445 | 445 | ); |
446 | 446 | $new_crumbs[2] = array( |
@@ -457,38 +457,38 @@ discard block |
||
457 | 457 | * @param $crumbs |
458 | 458 | * @return array |
459 | 459 | */ |
460 | - public function lsx_sensei_learner_breadcrumb_filter( $crumbs, $id = 0 ) { |
|
460 | + public function lsx_sensei_learner_breadcrumb_filter($crumbs, $id = 0) { |
|
461 | 461 | global $wp_query; |
462 | 462 | |
463 | - if ( isset( $wp_query->query_vars['learner_profile'] ) ) { |
|
463 | + if (isset($wp_query->query_vars['learner_profile'])) { |
|
464 | 464 | $is_profile = $wp_query->query_vars['learner_profile']; |
465 | 465 | } else { |
466 | 466 | $is_profile = false; |
467 | 467 | } |
468 | 468 | |
469 | - if ( is_sticky() && $is_profile ) { |
|
469 | + if (is_sticky() && $is_profile) { |
|
470 | 470 | |
471 | - if ( empty( $id ) ) { |
|
471 | + if (empty($id)) { |
|
472 | 472 | $id = get_the_ID(); |
473 | 473 | } |
474 | 474 | |
475 | 475 | $query_var = $wp_query->query_vars['learner_profile']; |
476 | - $learner_user = Sensei_Learner::find_by_query_var( $query_var ); |
|
476 | + $learner_user = Sensei_Learner::find_by_query_var($query_var); |
|
477 | 477 | $learner_name = $learner_user->display_name; |
478 | 478 | |
479 | 479 | $new_crumbs = array(); |
480 | 480 | $new_crumbs[0] = $crumbs[0]; |
481 | 481 | |
482 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
482 | + if (function_exists('woocommerce_breadcrumb')) { |
|
483 | 483 | $new_crumbs[1] = array( |
484 | - 0 => __( 'Learners', 'lsx' ), |
|
484 | + 0 => __('Learners', 'lsx'), |
|
485 | 485 | ); |
486 | 486 | $new_crumbs[2] = array( |
487 | 487 | 0 => $learner_name, |
488 | 488 | ); |
489 | 489 | } else { |
490 | 490 | $new_crumbs[1] = array( |
491 | - 'text' => __( 'Learners', 'lsx' ), |
|
491 | + 'text' => __('Learners', 'lsx'), |
|
492 | 492 | ); |
493 | 493 | $new_crumbs[2] = array( |
494 | 494 | 'text' => $learner_name, |
@@ -504,36 +504,36 @@ discard block |
||
504 | 504 | * @param $crumbs |
505 | 505 | * @return array |
506 | 506 | */ |
507 | - public function lsx_sensei_messages_breadcrumb_filter( $crumbs, $id = 0 ) { |
|
508 | - if ( is_archive() && ( is_post_type_archive( 'sensei_message' ) ) ) { |
|
507 | + public function lsx_sensei_messages_breadcrumb_filter($crumbs, $id = 0) { |
|
508 | + if (is_archive() && (is_post_type_archive('sensei_message'))) { |
|
509 | 509 | |
510 | - $course_page_url = intval( Sensei()->settings->settings['course_page'] ); |
|
511 | - $course_page_url = get_permalink( $course_page_url ); |
|
510 | + $course_page_url = intval(Sensei()->settings->settings['course_page']); |
|
511 | + $course_page_url = get_permalink($course_page_url); |
|
512 | 512 | |
513 | - if ( empty( $id ) ) { |
|
513 | + if (empty($id)) { |
|
514 | 514 | $id = get_the_ID(); |
515 | 515 | } |
516 | 516 | |
517 | - if ( $id ) { |
|
517 | + if ($id) { |
|
518 | 518 | |
519 | 519 | $new_crumbs = array(); |
520 | 520 | $new_crumbs[0] = $crumbs[0]; |
521 | 521 | |
522 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
522 | + if (function_exists('woocommerce_breadcrumb')) { |
|
523 | 523 | $new_crumbs[1] = array( |
524 | - 0 => __( 'Courses', 'lsx' ), |
|
524 | + 0 => __('Courses', 'lsx'), |
|
525 | 525 | 1 => $course_page_url, |
526 | 526 | ); |
527 | 527 | $new_crumbs[2] = array( |
528 | - 0 => __( 'Messages', 'lsx' ), |
|
528 | + 0 => __('Messages', 'lsx'), |
|
529 | 529 | ); |
530 | 530 | } else { |
531 | 531 | $new_crumbs[1] = array( |
532 | - 'text' => __( 'Courses', 'lsx' ), |
|
532 | + 'text' => __('Courses', 'lsx'), |
|
533 | 533 | 'url' => $course_page_url, |
534 | 534 | ); |
535 | 535 | $new_crumbs[2] = array( |
536 | - 'text' => __( 'Messages', 'lsx' ), |
|
536 | + 'text' => __('Messages', 'lsx'), |
|
537 | 537 | ); |
538 | 538 | } |
539 | 539 | $crumbs = $new_crumbs; |
@@ -547,35 +547,35 @@ discard block |
||
547 | 547 | * @param $crumbs |
548 | 548 | * @return array |
549 | 549 | */ |
550 | - public function lsx_sensei_single_message_breadcrumb_filter( $crumbs, $id = 0 ) { |
|
551 | - if ( is_single() && ( is_singular( 'sensei_message' ) ) ) { |
|
550 | + public function lsx_sensei_single_message_breadcrumb_filter($crumbs, $id = 0) { |
|
551 | + if (is_single() && (is_singular('sensei_message'))) { |
|
552 | 552 | |
553 | 553 | $messages_page_url = '/messages/'; |
554 | 554 | |
555 | - if ( empty( $id ) ) { |
|
555 | + if (empty($id)) { |
|
556 | 556 | $id = get_the_ID(); |
557 | 557 | } |
558 | 558 | |
559 | - if ( $id ) { |
|
559 | + if ($id) { |
|
560 | 560 | |
561 | 561 | $new_crumbs = array(); |
562 | 562 | $new_crumbs[0] = $crumbs[0]; |
563 | 563 | |
564 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
564 | + if (function_exists('woocommerce_breadcrumb')) { |
|
565 | 565 | $new_crumbs[1] = array( |
566 | - 0 => __( 'Messages', 'lsx' ), |
|
566 | + 0 => __('Messages', 'lsx'), |
|
567 | 567 | 1 => $messages_page_url, |
568 | 568 | ); |
569 | 569 | $new_crumbs[2] = array( |
570 | - 0 => __( 'Message', 'lsx' ), |
|
570 | + 0 => __('Message', 'lsx'), |
|
571 | 571 | ); |
572 | 572 | } else { |
573 | 573 | $new_crumbs[1] = array( |
574 | - 'text' => __( 'Messages', 'lsx' ), |
|
574 | + 'text' => __('Messages', 'lsx'), |
|
575 | 575 | 'url' => $messages_page_url, |
576 | 576 | ); |
577 | 577 | $new_crumbs[2] = array( |
578 | - 'text' => __( 'Message', 'lsx' ), |
|
578 | + 'text' => __('Message', 'lsx'), |
|
579 | 579 | ); |
580 | 580 | } |
581 | 581 | $crumbs = $new_crumbs; |
@@ -589,35 +589,35 @@ discard block |
||
589 | 589 | * @param $crumbs |
590 | 590 | * @return array |
591 | 591 | */ |
592 | - public function lsx_sensei_quiz_breadcrumb_filter( $crumbs, $id = 0 ) { |
|
593 | - if ( ( is_single() && ( is_singular( 'quiz' ) ) ) ) { |
|
592 | + public function lsx_sensei_quiz_breadcrumb_filter($crumbs, $id = 0) { |
|
593 | + if ((is_single() && (is_singular('quiz')))) { |
|
594 | 594 | global $course; |
595 | - $course_page_url = intval( Sensei()->settings->settings['course_page'] ); |
|
596 | - $course_page_url = get_permalink( $course_page_url ); |
|
595 | + $course_page_url = intval(Sensei()->settings->settings['course_page']); |
|
596 | + $course_page_url = get_permalink($course_page_url); |
|
597 | 597 | $lesson = get_the_title(); |
598 | 598 | |
599 | - if ( empty( $id ) ) { |
|
599 | + if (empty($id)) { |
|
600 | 600 | $id = get_the_ID(); |
601 | 601 | } |
602 | 602 | |
603 | - if ( 0 < intval( $id ) ) { |
|
603 | + if (0 < intval($id)) { |
|
604 | 604 | |
605 | - $course = intval( get_post_meta( $id, '_quiz_lesson', true ) ); |
|
606 | - $course_id = esc_url( get_permalink( $course ) ); |
|
607 | - $course_title = esc_html( get_the_title( $course ) ); |
|
608 | - if ( ! $course ) { |
|
605 | + $course = intval(get_post_meta($id, '_quiz_lesson', true)); |
|
606 | + $course_id = esc_url(get_permalink($course)); |
|
607 | + $course_title = esc_html(get_the_title($course)); |
|
608 | + if ( ! $course) { |
|
609 | 609 | return; |
610 | 610 | } |
611 | 611 | } |
612 | 612 | |
613 | - if ( $course_id ) { |
|
613 | + if ($course_id) { |
|
614 | 614 | |
615 | 615 | $new_crumbs = array(); |
616 | 616 | $new_crumbs[0] = $crumbs[0]; |
617 | 617 | |
618 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
618 | + if (function_exists('woocommerce_breadcrumb')) { |
|
619 | 619 | $new_crumbs[1] = array( |
620 | - 0 => __( 'Courses', 'lsx' ), |
|
620 | + 0 => __('Courses', 'lsx'), |
|
621 | 621 | 1 => $course_page_url, |
622 | 622 | ); |
623 | 623 | $new_crumbs[2] = array( |
@@ -629,7 +629,7 @@ discard block |
||
629 | 629 | ); |
630 | 630 | } else { |
631 | 631 | $new_crumbs[1] = array( |
632 | - 'text' => __( 'Courses', 'lsx' ), |
|
632 | + 'text' => __('Courses', 'lsx'), |
|
633 | 633 | 'url' => $course_page_url, |
634 | 634 | ); |
635 | 635 | $new_crumbs[2] = array( |
@@ -652,36 +652,36 @@ discard block |
||
652 | 652 | * @param $crumbs |
653 | 653 | * @return array |
654 | 654 | */ |
655 | - public function lsx_sensei_results_breadcrumb_filter( $crumbs, $id = 0 ) { |
|
656 | - if ( is_sticky() ) { |
|
655 | + public function lsx_sensei_results_breadcrumb_filter($crumbs, $id = 0) { |
|
656 | + if (is_sticky()) { |
|
657 | 657 | global $wp_query; |
658 | 658 | $course_id = ''; |
659 | - if ( isset( $wp_query->query_vars['course_results'] ) ) { |
|
659 | + if (isset($wp_query->query_vars['course_results'])) { |
|
660 | 660 | $is_results = $wp_query->query_vars['course_results']; |
661 | 661 | } |
662 | - $course_page_url = intval( Sensei()->settings->settings['course_page'] ); |
|
663 | - $course_page_url = get_permalink( $course_page_url ); |
|
662 | + $course_page_url = intval(Sensei()->settings->settings['course_page']); |
|
663 | + $course_page_url = get_permalink($course_page_url); |
|
664 | 664 | |
665 | - if ( empty( $id ) ) { |
|
665 | + if (empty($id)) { |
|
666 | 666 | $id = get_the_ID(); |
667 | 667 | } |
668 | 668 | |
669 | - if ( isset( $is_results ) ) { |
|
670 | - $course_for_results = get_page_by_path( $is_results, OBJECT, 'course' ); |
|
669 | + if (isset($is_results)) { |
|
670 | + $course_for_results = get_page_by_path($is_results, OBJECT, 'course'); |
|
671 | 671 | |
672 | - $course_id = esc_url( get_permalink( $course_for_results ) ); |
|
673 | - $course_title = esc_html( $course_for_results->post_title ); |
|
672 | + $course_id = esc_url(get_permalink($course_for_results)); |
|
673 | + $course_title = esc_html($course_for_results->post_title); |
|
674 | 674 | |
675 | 675 | } |
676 | 676 | |
677 | - if ( $course_id ) { |
|
677 | + if ($course_id) { |
|
678 | 678 | $new_crumbs = array(); |
679 | 679 | $new_crumbs[0] = $crumbs[0]; |
680 | 680 | |
681 | - if ( $is_results ) { |
|
682 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
681 | + if ($is_results) { |
|
682 | + if (function_exists('woocommerce_breadcrumb')) { |
|
683 | 683 | $new_crumbs[1] = array( |
684 | - 0 => __( 'Courses', 'lsx' ), |
|
684 | + 0 => __('Courses', 'lsx'), |
|
685 | 685 | 1 => $course_page_url, |
686 | 686 | ); |
687 | 687 | $new_crumbs[2] = array( |
@@ -689,15 +689,15 @@ discard block |
||
689 | 689 | 1 => $course_id, |
690 | 690 | ); |
691 | 691 | $new_crumbs[3] = array( |
692 | - 0 => __( 'Results', 'lsx' ), |
|
692 | + 0 => __('Results', 'lsx'), |
|
693 | 693 | ); |
694 | 694 | } else { |
695 | 695 | $new_crumbs[1] = array( |
696 | - 'text' => __( 'Courses', 'lsx' ), |
|
696 | + 'text' => __('Courses', 'lsx'), |
|
697 | 697 | 'url' => $course_page_url, |
698 | 698 | ); |
699 | 699 | $new_crumbs[2] = array( |
700 | - 'text' => __( 'Results', 'lsx' ), |
|
700 | + 'text' => __('Results', 'lsx'), |
|
701 | 701 | ); |
702 | 702 | } |
703 | 703 | } |
@@ -713,9 +713,9 @@ discard block |
||
713 | 713 | * @param [type] $message_post_id |
714 | 714 | * @return void |
715 | 715 | */ |
716 | - public function lsx_sensei_view_message_button( $message_post_id ) { |
|
717 | - $message_link = get_the_permalink( $message_post_id ); |
|
718 | - echo '<a href="' . esc_url_raw( $message_link ) . '" class="btn view-msg-btn">' . wp_kses_post( 'View Message', 'lsx' ) . '</a>'; |
|
716 | + public function lsx_sensei_view_message_button($message_post_id) { |
|
717 | + $message_link = get_the_permalink($message_post_id); |
|
718 | + echo '<a href="' . esc_url_raw($message_link) . '" class="btn view-msg-btn">' . wp_kses_post('View Message', 'lsx') . '</a>'; |
|
719 | 719 | } |
720 | 720 | |
721 | 721 | /** |
@@ -724,9 +724,9 @@ discard block |
||
724 | 724 | * @param [type] $message_post_id |
725 | 725 | * @return void |
726 | 726 | */ |
727 | - public function lsx_sensei_back_message_button( $courses_link ) { |
|
727 | + public function lsx_sensei_back_message_button($courses_link) { |
|
728 | 728 | $courses_link = '/my-courses/'; |
729 | - echo '<a href="' . esc_url_raw( $courses_link ) . '" class="btn border-btn my-courses-btn">' . wp_kses_post( 'My Courses', 'lsx' ) . '</a>'; |
|
729 | + echo '<a href="' . esc_url_raw($courses_link) . '" class="btn border-btn my-courses-btn">' . wp_kses_post('My Courses', 'lsx') . '</a>'; |
|
730 | 730 | } |
731 | 731 | } |
732 | 732 |
@@ -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 | |
@@ -42,9 +42,9 @@ discard block |
||
42 | 42 | |
43 | 43 | endif; |
44 | 44 | |
45 | -add_filter( 'wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2 ); |
|
45 | +add_filter('wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2); |
|
46 | 46 | |
47 | -if ( ! function_exists( 'lsx_body_class' ) ) : |
|
47 | +if ( ! function_exists('lsx_body_class')) : |
|
48 | 48 | |
49 | 49 | /** |
50 | 50 | * Add and remove body_class() classes. |
@@ -52,55 +52,55 @@ discard block |
||
52 | 52 | * @package lsx |
53 | 53 | * @subpackage extras |
54 | 54 | */ |
55 | - function lsx_body_class( $classes ) { |
|
55 | + function lsx_body_class($classes) { |
|
56 | 56 | global $post; |
57 | 57 | |
58 | - $header_layout = get_theme_mod( 'lsx_header_layout', 'inline' ); |
|
58 | + $header_layout = get_theme_mod('lsx_header_layout', 'inline'); |
|
59 | 59 | $classes[] = 'header-' . $header_layout; |
60 | 60 | |
61 | - if ( isset( $post ) ) { |
|
61 | + if (isset($post)) { |
|
62 | 62 | $classes[] = $post->post_name; |
63 | 63 | } |
64 | 64 | |
65 | - if ( class_exists( 'LSX_Banners' ) || empty( apply_filters( 'lsx_banner_plugin_disable', false ) ) ) { |
|
66 | - $post_types = array( 'page', 'post' ); |
|
67 | - $post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types ); |
|
65 | + if (class_exists('LSX_Banners') || empty(apply_filters('lsx_banner_plugin_disable', false))) { |
|
66 | + $post_types = array('page', 'post'); |
|
67 | + $post_types = apply_filters('lsx_allowed_post_type_banners', $post_types); |
|
68 | 68 | |
69 | - if ( is_singular( $post_types ) && has_post_thumbnail() ) { |
|
69 | + if (is_singular($post_types) && has_post_thumbnail()) { |
|
70 | 70 | $classes[] = 'page-has-banner'; |
71 | 71 | } |
72 | 72 | } |
73 | 73 | |
74 | - if ( function_exists( 'tour_operator' ) ) { |
|
75 | - $post_types = array( 'page', 'post' ); |
|
74 | + if (function_exists('tour_operator')) { |
|
75 | + $post_types = array('page', 'post'); |
|
76 | 76 | |
77 | 77 | $classes[] = 'to-active'; |
78 | 78 | } |
79 | 79 | |
80 | - if ( has_nav_menu( 'top-menu' ) || has_nav_menu( 'top-menu-left' ) ) { |
|
80 | + if (has_nav_menu('top-menu') || has_nav_menu('top-menu-left')) { |
|
81 | 81 | $classes[] = 'has-top-menu'; |
82 | 82 | } |
83 | 83 | |
84 | - $fixed_header = get_theme_mod( 'lsx_header_fixed', false ); |
|
84 | + $fixed_header = get_theme_mod('lsx_header_fixed', false); |
|
85 | 85 | |
86 | - if ( false !== $fixed_header ) { |
|
86 | + if (false !== $fixed_header) { |
|
87 | 87 | $classes[] = 'top-menu-fixed'; |
88 | 88 | } |
89 | 89 | |
90 | - $search_form = get_theme_mod( 'lsx_header_search', false ); |
|
90 | + $search_form = get_theme_mod('lsx_header_search', false); |
|
91 | 91 | |
92 | - if ( false !== $search_form ) { |
|
92 | + if (false !== $search_form) { |
|
93 | 93 | $classes[] = 'has-header-search'; |
94 | 94 | } |
95 | 95 | |
96 | - $preloader_content = get_theme_mod( 'lsx_preloader_content_status', false ); |
|
96 | + $preloader_content = get_theme_mod('lsx_preloader_content_status', false); |
|
97 | 97 | |
98 | - if ( false !== $preloader_content ) { |
|
98 | + if (false !== $preloader_content) { |
|
99 | 99 | $classes[] = 'preloader-content-enable'; |
100 | 100 | } |
101 | 101 | |
102 | - $register_enabled = get_option( 'users_can_register', false ); |
|
103 | - if ( ( $register_enabled ) && is_page( 'my-account' ) && is_singular() ) { |
|
102 | + $register_enabled = get_option('users_can_register', false); |
|
103 | + if (($register_enabled) && is_page('my-account') && is_singular()) { |
|
104 | 104 | $classes[] = 'register-enabled'; |
105 | 105 | } |
106 | 106 | |
@@ -109,9 +109,9 @@ discard block |
||
109 | 109 | |
110 | 110 | endif; |
111 | 111 | |
112 | -add_filter( 'body_class', 'lsx_body_class' ); |
|
112 | +add_filter('body_class', 'lsx_body_class'); |
|
113 | 113 | |
114 | -if ( ! function_exists( 'lsx_embed_wrap' ) ) : |
|
114 | +if ( ! function_exists('lsx_embed_wrap')) : |
|
115 | 115 | |
116 | 116 | /** |
117 | 117 | * Wrap embedded media as suggested by Readability. |
@@ -122,8 +122,8 @@ discard block |
||
122 | 122 | * @link https://gist.github.com/965956 |
123 | 123 | * @link http://www.readability.com/publishers/guidelines#publisher |
124 | 124 | */ |
125 | - function lsx_embed_wrap( $cache, $url, $attr = '', $post_id = '' ) { |
|
126 | - if ( false !== strpos( $cache, '<iframe' ) ) { |
|
125 | + function lsx_embed_wrap($cache, $url, $attr = '', $post_id = '') { |
|
126 | + if (false !== strpos($cache, '<iframe')) { |
|
127 | 127 | return '<div class="entry-content-asset">' . $cache . '</div>'; |
128 | 128 | } |
129 | 129 | |
@@ -132,9 +132,9 @@ discard block |
||
132 | 132 | |
133 | 133 | endif; |
134 | 134 | |
135 | -add_filter( 'embed_oembed_html', 'lsx_embed_wrap', 10, 4 ); |
|
135 | +add_filter('embed_oembed_html', 'lsx_embed_wrap', 10, 4); |
|
136 | 136 | |
137 | -if ( ! function_exists( 'lsx_remove_self_closing_tags' ) ) : |
|
137 | +if ( ! function_exists('lsx_remove_self_closing_tags')) : |
|
138 | 138 | |
139 | 139 | /** |
140 | 140 | * Remove unnecessary self-closing tags. |
@@ -142,17 +142,17 @@ discard block |
||
142 | 142 | * @package lsx |
143 | 143 | * @subpackage extras |
144 | 144 | */ |
145 | - function lsx_remove_self_closing_tags( $input ) { |
|
146 | - return str_replace( ' />', '>', $input ); |
|
145 | + function lsx_remove_self_closing_tags($input) { |
|
146 | + return str_replace(' />', '>', $input); |
|
147 | 147 | } |
148 | 148 | |
149 | 149 | endif; |
150 | 150 | |
151 | -add_filter( 'get_avatar', 'lsx_remove_self_closing_tags' ); // <img /> |
|
152 | -add_filter( 'comment_id_fields', 'lsx_remove_self_closing_tags' ); // <input /> |
|
153 | -add_filter( 'post_thumbnail_html', 'lsx_remove_self_closing_tags' ); // <img /> |
|
151 | +add_filter('get_avatar', 'lsx_remove_self_closing_tags'); // <img /> |
|
152 | +add_filter('comment_id_fields', 'lsx_remove_self_closing_tags'); // <input /> |
|
153 | +add_filter('post_thumbnail_html', 'lsx_remove_self_closing_tags'); // <img /> |
|
154 | 154 | |
155 | -if ( ! function_exists( 'lsx_is_element_empty' ) ) : |
|
155 | +if ( ! function_exists('lsx_is_element_empty')) : |
|
156 | 156 | |
157 | 157 | /** |
158 | 158 | * Checks if a Nav $element is empty or not. |
@@ -160,14 +160,14 @@ discard block |
||
160 | 160 | * @package lsx |
161 | 161 | * @subpackage extras |
162 | 162 | */ |
163 | - function lsx_is_element_empty( $element ) { |
|
164 | - $element = trim( $element ); |
|
165 | - return empty( $element ) ? false : true; |
|
163 | + function lsx_is_element_empty($element) { |
|
164 | + $element = trim($element); |
|
165 | + return empty($element) ? false : true; |
|
166 | 166 | } |
167 | 167 | |
168 | 168 | endif; |
169 | 169 | |
170 | -if ( ! function_exists( 'lsx_get_thumbnail' ) ) : |
|
170 | +if ( ! function_exists('lsx_get_thumbnail')) : |
|
171 | 171 | |
172 | 172 | /** |
173 | 173 | * return the responsive images. |
@@ -175,62 +175,62 @@ discard block |
||
175 | 175 | * @package lsx |
176 | 176 | * @subpackage extras |
177 | 177 | */ |
178 | - function lsx_get_thumbnail( $size, $image_src = false ) { |
|
179 | - if ( false === $image_src ) { |
|
178 | + function lsx_get_thumbnail($size, $image_src = false) { |
|
179 | + if (false === $image_src) { |
|
180 | 180 | $post_id = get_the_ID(); |
181 | - $post_thumbnail_id = get_post_thumbnail_id( $post_id ); |
|
182 | - } elseif ( false !== $image_src ) { |
|
183 | - if ( is_numeric( $image_src ) ) { |
|
181 | + $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
182 | + } elseif (false !== $image_src) { |
|
183 | + if (is_numeric($image_src)) { |
|
184 | 184 | $post_thumbnail_id = $image_src; |
185 | 185 | } else { |
186 | - $post_thumbnail_id = lsx_get_attachment_id_from_src( $image_src ); |
|
186 | + $post_thumbnail_id = lsx_get_attachment_id_from_src($image_src); |
|
187 | 187 | } |
188 | 188 | } |
189 | 189 | |
190 | - $size = apply_filters( 'lsx_thumbnail_size', $size ); |
|
190 | + $size = apply_filters('lsx_thumbnail_size', $size); |
|
191 | 191 | $img = ''; |
192 | 192 | $lazy_img = ''; |
193 | 193 | $image_url = ''; |
194 | 194 | |
195 | - if ( 'lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size ) { |
|
195 | + if ('lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size) { |
|
196 | 196 | $srcset = false; |
197 | - if ( ( ( 'team' === get_post_type() ) || ( 'testimonial' === get_post_type() ) ) && is_search() ) { |
|
198 | - $img = get_the_post_thumbnail_url( get_the_ID(), 'lsx-thumbnail-wide' ); |
|
197 | + if ((('team' === get_post_type()) || ('testimonial' === get_post_type())) && is_search()) { |
|
198 | + $img = get_the_post_thumbnail_url(get_the_ID(), 'lsx-thumbnail-wide'); |
|
199 | 199 | } else { |
200 | - $temp_img = wp_get_attachment_image_src( $post_thumbnail_id, $size ); |
|
201 | - if ( ! empty( $temp_img ) ) { |
|
202 | - $img = $temp_img[0]; |
|
200 | + $temp_img = wp_get_attachment_image_src($post_thumbnail_id, $size); |
|
201 | + if ( ! empty($temp_img)) { |
|
202 | + $img = $temp_img[0]; |
|
203 | 203 | } |
204 | 204 | } |
205 | 205 | } else { |
206 | 206 | $srcset = true; |
207 | - $img = wp_get_attachment_image_srcset( $post_thumbnail_id, $size ); |
|
207 | + $img = wp_get_attachment_image_srcset($post_thumbnail_id, $size); |
|
208 | 208 | |
209 | - $temp_lazy = wp_get_attachment_image_src( $post_thumbnail_id, $size ); |
|
210 | - if ( ! empty( $temp_lazy ) ) { |
|
209 | + $temp_lazy = wp_get_attachment_image_src($post_thumbnail_id, $size); |
|
210 | + if ( ! empty($temp_lazy)) { |
|
211 | 211 | $lazy_img = $temp_lazy[0]; |
212 | 212 | } |
213 | 213 | |
214 | - if ( empty( $img ) ) { |
|
214 | + if (empty($img)) { |
|
215 | 215 | $srcset = false; |
216 | - if ( ! empty( $lazy_img ) ) { |
|
216 | + if ( ! empty($lazy_img)) { |
|
217 | 217 | $img = $lazy_img; |
218 | 218 | } |
219 | 219 | } |
220 | 220 | } |
221 | 221 | |
222 | - if ( '' !== $img ) { |
|
222 | + if ('' !== $img) { |
|
223 | 223 | $image_url = $img; |
224 | - $img = '<img alt="' . the_title_attribute( 'echo=0' ) . '" class="attachment-responsive wp-post-image lsx-responsive" '; |
|
225 | - if ( $srcset ) { |
|
226 | - $img .= 'srcset="' . esc_attr( $image_url ) . '" '; |
|
224 | + $img = '<img alt="' . the_title_attribute('echo=0') . '" class="attachment-responsive wp-post-image lsx-responsive" '; |
|
225 | + if ($srcset) { |
|
226 | + $img .= 'srcset="' . esc_attr($image_url) . '" '; |
|
227 | 227 | } else { |
228 | - $img .= 'src="' . esc_url( $image_url ) . '" '; |
|
228 | + $img .= 'src="' . esc_url($image_url) . '" '; |
|
229 | 229 | } |
230 | 230 | $img .= '/>'; |
231 | 231 | |
232 | - $img = apply_filters( 'lsx_lazyload_filter_images', $img ); |
|
233 | - $img = apply_filters( 'lsx_lazyload_slider_images', $img, $post_thumbnail_id, $size, $srcset, $image_url ); |
|
232 | + $img = apply_filters('lsx_lazyload_filter_images', $img); |
|
233 | + $img = apply_filters('lsx_lazyload_slider_images', $img, $post_thumbnail_id, $size, $srcset, $image_url); |
|
234 | 234 | } |
235 | 235 | |
236 | 236 | return $img; |
@@ -238,7 +238,7 @@ discard block |
||
238 | 238 | |
239 | 239 | endif; |
240 | 240 | |
241 | -if ( ! function_exists( 'lsx_thumbnail' ) ) : |
|
241 | +if ( ! function_exists('lsx_thumbnail')) : |
|
242 | 242 | |
243 | 243 | /** |
244 | 244 | * Output the Resonsive Images. |
@@ -246,13 +246,13 @@ discard block |
||
246 | 246 | * @package lsx |
247 | 247 | * @subpackage extras |
248 | 248 | */ |
249 | - function lsx_thumbnail( $size = 'thumbnail', $image_src = false ) { |
|
250 | - echo wp_kses_post( lsx_get_thumbnail( $size, $image_src ) ); |
|
249 | + function lsx_thumbnail($size = 'thumbnail', $image_src = false) { |
|
250 | + echo wp_kses_post(lsx_get_thumbnail($size, $image_src)); |
|
251 | 251 | } |
252 | 252 | |
253 | 253 | endif; |
254 | 254 | |
255 | -if ( ! function_exists( 'lsx_get_attachment_id_from_src' ) ) : |
|
255 | +if ( ! function_exists('lsx_get_attachment_id_from_src')) : |
|
256 | 256 | |
257 | 257 | /** |
258 | 258 | * Gets the attachments ID from the src. |
@@ -260,13 +260,13 @@ discard block |
||
260 | 260 | * @package lsx |
261 | 261 | * @subpackage extras |
262 | 262 | */ |
263 | - function lsx_get_attachment_id_from_src( $image_src ) { |
|
264 | - $post_id = wp_cache_get( $image_src, 'lsx_get_attachment_id_from_src' ); |
|
263 | + function lsx_get_attachment_id_from_src($image_src) { |
|
264 | + $post_id = wp_cache_get($image_src, 'lsx_get_attachment_id_from_src'); |
|
265 | 265 | |
266 | - if ( false === $post_id ) { |
|
266 | + if (false === $post_id) { |
|
267 | 267 | global $wpdb; |
268 | - $post_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src ) ); |
|
269 | - wp_cache_set( $image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600 ); |
|
268 | + $post_id = $wpdb->get_var($wpdb->prepare("SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src)); |
|
269 | + wp_cache_set($image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600); |
|
270 | 270 | } |
271 | 271 | |
272 | 272 | return $post_id; |
@@ -274,7 +274,7 @@ discard block |
||
274 | 274 | |
275 | 275 | endif; |
276 | 276 | |
277 | -if ( ! function_exists( 'lsx_page_banner' ) ) : |
|
277 | +if ( ! function_exists('lsx_page_banner')) : |
|
278 | 278 | |
279 | 279 | /** |
280 | 280 | * Add Featured Image as Banner on Single Pages. |
@@ -283,30 +283,30 @@ discard block |
||
283 | 283 | * @subpackage extras |
284 | 284 | */ |
285 | 285 | function lsx_page_banner() { |
286 | - if ( true === apply_filters( 'lsx_page_banner_disable', false ) ) { |
|
286 | + if (true === apply_filters('lsx_page_banner_disable', false)) { |
|
287 | 287 | return; |
288 | 288 | } |
289 | 289 | |
290 | - $post_types = array( 'page', 'post' ); |
|
291 | - $post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types ); |
|
290 | + $post_types = array('page', 'post'); |
|
291 | + $post_types = apply_filters('lsx_allowed_post_type_banners', $post_types); |
|
292 | 292 | |
293 | - if ( is_singular( $post_types ) && has_post_thumbnail() ) : |
|
293 | + if (is_singular($post_types) && has_post_thumbnail()) : |
|
294 | 294 | $bg_image = ''; |
295 | 295 | |
296 | - if ( has_post_thumbnail() ) { |
|
297 | - $temp_bg_image = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'full' ); |
|
298 | - if ( ! empty( $temp_bg_image ) ) { |
|
296 | + if (has_post_thumbnail()) { |
|
297 | + $temp_bg_image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), 'full'); |
|
298 | + if ( ! empty($temp_bg_image)) { |
|
299 | 299 | $bg_image = $temp_bg_image[0]; |
300 | 300 | } |
301 | 301 | } |
302 | 302 | |
303 | - if ( '' !== $bg_image ) : |
|
303 | + if ('' !== $bg_image) : |
|
304 | 304 | ?> |
305 | 305 | <div class="page-banner-wrap"> |
306 | 306 | <div class="page-banner"> |
307 | 307 | <?php lsx_banner_inner_top(); ?> |
308 | 308 | |
309 | - <div class="page-banner-image" style="background-image:url(<?php echo esc_attr( $bg_image ); ?>);"></div> |
|
309 | + <div class="page-banner-image" style="background-image:url(<?php echo esc_attr($bg_image); ?>);"></div> |
|
310 | 310 | |
311 | 311 | <div class="container"> |
312 | 312 | <header class="page-header"> |
@@ -325,11 +325,11 @@ discard block |
||
325 | 325 | |
326 | 326 | endif; |
327 | 327 | |
328 | -add_filter( 'lsx_banner_disable', 'lsx_disable_banner_for_blocks' ); |
|
329 | -add_filter( 'lsx_global_header_disable', 'lsx_disable_banner_for_blocks' ); |
|
328 | +add_filter('lsx_banner_disable', 'lsx_disable_banner_for_blocks'); |
|
329 | +add_filter('lsx_global_header_disable', 'lsx_disable_banner_for_blocks'); |
|
330 | 330 | |
331 | 331 | |
332 | -if ( ! function_exists( 'lsx_disable_banner_for_blocks' ) ) : |
|
332 | +if ( ! function_exists('lsx_disable_banner_for_blocks')) : |
|
333 | 333 | |
334 | 334 | /** |
335 | 335 | * Disable the Banner if the page is using Blocks |
@@ -340,15 +340,15 @@ discard block |
||
340 | 340 | * @param $disable boolean |
341 | 341 | * @return boolean |
342 | 342 | */ |
343 | - function lsx_disable_banner_for_blocks( $disable ) { |
|
343 | + function lsx_disable_banner_for_blocks($disable) { |
|
344 | 344 | $queried_object = get_queried_object_id(); |
345 | - $show_on_front = get_option( 'show_on_front' ); |
|
345 | + $show_on_front = get_option('show_on_front'); |
|
346 | 346 | |
347 | - if ( 'page' === $show_on_front && (int) get_option( 'page_for_posts' ) === $queried_object ) { |
|
347 | + if ('page' === $show_on_front && (int) get_option('page_for_posts') === $queried_object) { |
|
348 | 348 | return $disable; |
349 | 349 | } |
350 | 350 | |
351 | - if ( function_exists( 'has_blocks' ) && has_blocks() && ( ! is_archive() ) ) { |
|
351 | + if (function_exists('has_blocks') && has_blocks() && ( ! is_archive())) { |
|
352 | 352 | $disable = true; |
353 | 353 | } |
354 | 354 | return $disable; |
@@ -356,9 +356,9 @@ discard block |
||
356 | 356 | |
357 | 357 | endif; |
358 | 358 | |
359 | -add_action( 'lsx_header_after', 'lsx_page_banner' ); |
|
359 | +add_action('lsx_header_after', 'lsx_page_banner'); |
|
360 | 360 | |
361 | -if ( ! function_exists( 'lsx_form_submit_button' ) ) : |
|
361 | +if ( ! function_exists('lsx_form_submit_button')) : |
|
362 | 362 | |
363 | 363 | /** |
364 | 364 | * filter the Gravity Forms button type. |
@@ -370,15 +370,15 @@ discard block |
||
370 | 370 | * @param $form Object |
371 | 371 | * @return String |
372 | 372 | */ |
373 | - function lsx_form_submit_button( $button, $form ) { |
|
373 | + function lsx_form_submit_button($button, $form) { |
|
374 | 374 | return "<button class='btn btn-primary' id='gform_submit_button_{$form["id"]}'><span>Submit</span></button>"; |
375 | 375 | } |
376 | 376 | |
377 | 377 | endif; |
378 | 378 | |
379 | -add_filter( 'gform_submit_button', 'lsx_form_submit_button', 10, 2 ); |
|
379 | +add_filter('gform_submit_button', 'lsx_form_submit_button', 10, 2); |
|
380 | 380 | |
381 | -if ( ! function_exists( 'lsx_excerpt_more' ) ) : |
|
381 | +if ( ! function_exists('lsx_excerpt_more')) : |
|
382 | 382 | |
383 | 383 | /** |
384 | 384 | * Replaces the excerpt "more" text by a link. |
@@ -386,15 +386,15 @@ discard block |
||
386 | 386 | * @package lsx |
387 | 387 | * @subpackage extras |
388 | 388 | */ |
389 | - function lsx_excerpt_more( $more ) { |
|
389 | + function lsx_excerpt_more($more) { |
|
390 | 390 | return '...'; |
391 | 391 | } |
392 | 392 | |
393 | 393 | endif; |
394 | 394 | |
395 | -add_filter( 'excerpt_more', 'lsx_excerpt_more' ); |
|
395 | +add_filter('excerpt_more', 'lsx_excerpt_more'); |
|
396 | 396 | |
397 | -if ( ! function_exists( 'lsx_the_excerpt_filter' ) ) : |
|
397 | +if ( ! function_exists('lsx_the_excerpt_filter')) : |
|
398 | 398 | |
399 | 399 | /** |
400 | 400 | * Add a continue reading link to the excerpt. |
@@ -402,7 +402,7 @@ discard block |
||
402 | 402 | * @package lsx |
403 | 403 | * @subpackage extras |
404 | 404 | */ |
405 | - function lsx_the_excerpt_filter( $excerpt ) { |
|
405 | + function lsx_the_excerpt_filter($excerpt) { |
|
406 | 406 | |
407 | 407 | $post_formats = array( |
408 | 408 | 'aside' => 'aside', |
@@ -415,23 +415,23 @@ discard block |
||
415 | 415 | 'audio' => 'audio', |
416 | 416 | ); |
417 | 417 | |
418 | - $show_full_content = has_post_format( apply_filters( 'lsx_the_excerpt_filter_post_types', $post_formats ) ); |
|
418 | + $show_full_content = has_post_format(apply_filters('lsx_the_excerpt_filter_post_types', $post_formats)); |
|
419 | 419 | |
420 | - if ( ! $show_full_content ) { |
|
421 | - if ( '' !== $excerpt && ! stristr( $excerpt, 'moretag' ) ) { |
|
422 | - $pagination = wp_link_pages( array( |
|
420 | + if ( ! $show_full_content) { |
|
421 | + if ('' !== $excerpt && ! stristr($excerpt, 'moretag')) { |
|
422 | + $pagination = wp_link_pages(array( |
|
423 | 423 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
424 | 424 | 'after' => '</div></div>', |
425 | 425 | 'link_before' => '<span>', |
426 | 426 | 'link_after' => '</span>', |
427 | 427 | 'echo' => 0, |
428 | - ) ); |
|
428 | + )); |
|
429 | 429 | |
430 | - if ( ! empty( $pagination ) ) { |
|
430 | + if ( ! empty($pagination)) { |
|
431 | 431 | $excerpt .= $pagination; |
432 | 432 | } else { |
433 | - $excerpt_more = '<p><a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'Read More', 'lsx' ) . '</a></p>'; |
|
434 | - $excerpt .= apply_filters( 'excerpt_more_p', $excerpt_more ); |
|
433 | + $excerpt_more = '<p><a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('Read More', 'lsx') . '</a></p>'; |
|
434 | + $excerpt .= apply_filters('excerpt_more_p', $excerpt_more); |
|
435 | 435 | } |
436 | 436 | } |
437 | 437 | } |
@@ -441,9 +441,9 @@ discard block |
||
441 | 441 | |
442 | 442 | endif; |
443 | 443 | |
444 | -add_filter( 'the_excerpt', 'lsx_the_excerpt_filter' , 1 , 20 ); |
|
444 | +add_filter('the_excerpt', 'lsx_the_excerpt_filter', 1, 20); |
|
445 | 445 | |
446 | -if ( ! function_exists( 'lsx_full_width_widget_classes' ) ) : |
|
446 | +if ( ! function_exists('lsx_full_width_widget_classes')) : |
|
447 | 447 | |
448 | 448 | /** |
449 | 449 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -451,8 +451,8 @@ discard block |
||
451 | 451 | * @package lsx |
452 | 452 | * @subpackage extras |
453 | 453 | */ |
454 | - function lsx_full_width_widget_classes( $params ) { |
|
455 | - if ( is_admin() ) { |
|
454 | + function lsx_full_width_widget_classes($params) { |
|
455 | + if (is_admin()) { |
|
456 | 456 | return $params; |
457 | 457 | } |
458 | 458 | |
@@ -461,9 +461,9 @@ discard block |
||
461 | 461 | $widget_id = $params[0]['widget_id']; |
462 | 462 | $widget_name = $params[0]['widget_name']; |
463 | 463 | |
464 | - if ( 'Text' === $widget_name ) { |
|
465 | - $wp_registered_widgets[ $widget_id ]['original_callback'] = $wp_registered_widgets[ $widget_id ]['callback']; |
|
466 | - $wp_registered_widgets[ $widget_id ]['callback'] = 'lsx_full_width_widget_custom_callback'; |
|
464 | + if ('Text' === $widget_name) { |
|
465 | + $wp_registered_widgets[$widget_id]['original_callback'] = $wp_registered_widgets[$widget_id]['callback']; |
|
466 | + $wp_registered_widgets[$widget_id]['callback'] = 'lsx_full_width_widget_custom_callback'; |
|
467 | 467 | } |
468 | 468 | |
469 | 469 | return $params; |
@@ -471,9 +471,9 @@ discard block |
||
471 | 471 | |
472 | 472 | endif; |
473 | 473 | |
474 | -add_filter( 'dynamic_sidebar_params', 'lsx_full_width_widget_classes' ); |
|
474 | +add_filter('dynamic_sidebar_params', 'lsx_full_width_widget_classes'); |
|
475 | 475 | |
476 | -if ( ! function_exists( 'lsx_full_width_widget_custom_callback' ) ) : |
|
476 | +if ( ! function_exists('lsx_full_width_widget_custom_callback')) : |
|
477 | 477 | |
478 | 478 | /** |
479 | 479 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -487,25 +487,25 @@ discard block |
||
487 | 487 | $original_callback_params = func_get_args(); |
488 | 488 | $widget_id = $original_callback_params[0]['widget_id']; |
489 | 489 | |
490 | - $original_callback = $wp_registered_widgets[ $widget_id ]['original_callback']; |
|
491 | - $wp_registered_widgets[ $widget_id ]['callback'] = $original_callback; |
|
490 | + $original_callback = $wp_registered_widgets[$widget_id]['original_callback']; |
|
491 | + $wp_registered_widgets[$widget_id]['callback'] = $original_callback; |
|
492 | 492 | |
493 | - $widget_id_base = $wp_registered_widgets[ $widget_id ]['callback'][0]->id_base; |
|
493 | + $widget_id_base = $wp_registered_widgets[$widget_id]['callback'][0]->id_base; |
|
494 | 494 | |
495 | 495 | $widget_classname = ''; |
496 | 496 | |
497 | - if ( is_callable( $original_callback ) ) { |
|
497 | + if (is_callable($original_callback)) { |
|
498 | 498 | ob_start(); |
499 | - call_user_func_array( $original_callback, $original_callback_params ); |
|
499 | + call_user_func_array($original_callback, $original_callback_params); |
|
500 | 500 | $widget_output = ob_get_clean(); |
501 | 501 | |
502 | - echo wp_kses_post( apply_filters( 'lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id ) ); |
|
502 | + echo wp_kses_post(apply_filters('lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id)); |
|
503 | 503 | } |
504 | 504 | } |
505 | 505 | |
506 | 506 | endif; |
507 | 507 | |
508 | -if ( ! function_exists( 'lsx_full_width_widget_output' ) ) : |
|
508 | +if ( ! function_exists('lsx_full_width_widget_output')) : |
|
509 | 509 | |
510 | 510 | /** |
511 | 511 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -513,12 +513,12 @@ discard block |
||
513 | 513 | * @package lsx |
514 | 514 | * @subpackage extras |
515 | 515 | */ |
516 | - function lsx_full_width_widget_output( $widget_output, $widget_id_base, $widget_id ) { |
|
517 | - if ( 'text' === $widget_id_base ) { |
|
518 | - if ( false !== strpos( $widget_output, '<div class="lsx-full-width-alt">' ) ) { |
|
519 | - $widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output ); |
|
520 | - } elseif ( false !== strpos( $widget_output, '<div class="lsx-full-width">' ) ) { |
|
521 | - $widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output ); |
|
516 | + function lsx_full_width_widget_output($widget_output, $widget_id_base, $widget_id) { |
|
517 | + if ('text' === $widget_id_base) { |
|
518 | + if (false !== strpos($widget_output, '<div class="lsx-full-width-alt">')) { |
|
519 | + $widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output); |
|
520 | + } elseif (false !== strpos($widget_output, '<div class="lsx-full-width">')) { |
|
521 | + $widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output); |
|
522 | 522 | } |
523 | 523 | } |
524 | 524 | |
@@ -527,13 +527,13 @@ discard block |
||
527 | 527 | |
528 | 528 | endif; |
529 | 529 | |
530 | -add_filter( 'lsx_widget_output', 'lsx_full_width_widget_output', 10, 3 ); |
|
530 | +add_filter('lsx_widget_output', 'lsx_full_width_widget_output', 10, 3); |
|
531 | 531 | |
532 | 532 | /** |
533 | 533 | * Check if the content has a restricted post format that needs to show a full excerpt. |
534 | 534 | */ |
535 | 535 | function lsx_post_format_force_content_on_list() { |
536 | - $post_formats = apply_filters( 'lsx_post_format_force_content_on_list', |
|
536 | + $post_formats = apply_filters('lsx_post_format_force_content_on_list', |
|
537 | 537 | array( |
538 | 538 | 'video' => 'video', |
539 | 539 | 'audio' => 'audio', |
@@ -542,7 +542,7 @@ discard block |
||
542 | 542 | ) |
543 | 543 | ); |
544 | 544 | $return = false; |
545 | - if ( ! has_post_format( $post_formats ) ) { |
|
545 | + if ( ! has_post_format($post_formats)) { |
|
546 | 546 | $return = true; |
547 | 547 | } |
548 | 548 | return $return; |
@@ -551,67 +551,67 @@ discard block |
||
551 | 551 | /** |
552 | 552 | * Remove the Hentry Class Every |
553 | 553 | */ |
554 | -function lsx_remove_hentry( $classes ) { |
|
555 | - if ( 'post' !== get_post_type() ) { |
|
556 | - $classes = array_diff( $classes, array( 'hentry' ) ); |
|
554 | +function lsx_remove_hentry($classes) { |
|
555 | + if ('post' !== get_post_type()) { |
|
556 | + $classes = array_diff($classes, array('hentry')); |
|
557 | 557 | } |
558 | 558 | return $classes; |
559 | 559 | } |
560 | -add_filter( 'post_class','lsx_remove_hentry' ); |
|
560 | +add_filter('post_class', 'lsx_remove_hentry'); |
|
561 | 561 | |
562 | 562 | /** |
563 | 563 | * Strip Excerpts. |
564 | 564 | * |
565 | 565 | */ |
566 | -function lsx_strip_excerpt( $content ) { |
|
567 | - if ( is_search() || is_archive() || ( is_blog_installed() && ! is_single() && ! is_page() ) ) { |
|
568 | - $content = strip_shortcodes( $content ); |
|
569 | - $content = str_replace( ']]>', ']]>', $content ); |
|
570 | - $content = strip_tags( $content ); |
|
566 | +function lsx_strip_excerpt($content) { |
|
567 | + if (is_search() || is_archive() || (is_blog_installed() && ! is_single() && ! is_page())) { |
|
568 | + $content = strip_shortcodes($content); |
|
569 | + $content = str_replace(']]>', ']]>', $content); |
|
570 | + $content = strip_tags($content); |
|
571 | 571 | } |
572 | 572 | return $content; |
573 | 573 | } |
574 | -add_filter( 'the_content', 'lsx_strip_excerpt' ); |
|
574 | +add_filter('the_content', 'lsx_strip_excerpt'); |
|
575 | 575 | |
576 | 576 | /** |
577 | 577 | * Disable Gutenberg for LSX Custom Post Tpes. |
578 | 578 | * |
579 | 579 | */ |
580 | -function lsx_disable_gutenberg_product_type( $is_enabled, $post_type ) { |
|
581 | - if ( 'testimonial' === $post_type || 'team' === $post_type || 'project' === $post_type ) { |
|
580 | +function lsx_disable_gutenberg_product_type($is_enabled, $post_type) { |
|
581 | + if ('testimonial' === $post_type || 'team' === $post_type || 'project' === $post_type) { |
|
582 | 582 | return false; |
583 | 583 | } |
584 | 584 | |
585 | 585 | return $is_enabled; |
586 | 586 | } |
587 | -add_filter( 'gutenberg_add_edit_link_for_post_type', 'lsx_disable_gutenberg_product_type', 10, 2 ); |
|
587 | +add_filter('gutenberg_add_edit_link_for_post_type', 'lsx_disable_gutenberg_product_type', 10, 2); |
|
588 | 588 | |
589 | 589 | /** |
590 | 590 | * Add the "Blog" link to the breadcrumbs |
591 | 591 | * @param $crumbs |
592 | 592 | * @return array |
593 | 593 | */ |
594 | -function lsx_breadcrumbs_blog_link( $crumbs ) { |
|
594 | +function lsx_breadcrumbs_blog_link($crumbs) { |
|
595 | 595 | |
596 | - $show_on_front = get_option( 'show_on_front' ); |
|
596 | + $show_on_front = get_option('show_on_front'); |
|
597 | 597 | |
598 | - if ( 'page' === $show_on_front && ( is_category() || is_tag() ) ) { |
|
598 | + if ('page' === $show_on_front && (is_category() || is_tag())) { |
|
599 | 599 | |
600 | - $blog_page = get_option( 'page_for_posts' ); |
|
601 | - if ( false !== $blog_page && '' !== $blog_page ) { |
|
600 | + $blog_page = get_option('page_for_posts'); |
|
601 | + if (false !== $blog_page && '' !== $blog_page) { |
|
602 | 602 | |
603 | 603 | $new_crumbs = array(); |
604 | 604 | $new_crumbs[0] = $crumbs[0]; |
605 | 605 | |
606 | - if ( function_exists( 'woocommerce_breadcrumb' ) ) { |
|
606 | + if (function_exists('woocommerce_breadcrumb')) { |
|
607 | 607 | $new_crumbs[1] = array( |
608 | - 0 => get_the_title( $blog_page ), |
|
609 | - 1 => get_permalink( $blog_page ), |
|
608 | + 0 => get_the_title($blog_page), |
|
609 | + 1 => get_permalink($blog_page), |
|
610 | 610 | ); |
611 | 611 | } else { |
612 | 612 | $new_crumbs[1] = array( |
613 | - 'text' => get_the_title( $blog_page ), |
|
614 | - 'url' => get_permalink( $blog_page ), |
|
613 | + 'text' => get_the_title($blog_page), |
|
614 | + 'url' => get_permalink($blog_page), |
|
615 | 615 | ); |
616 | 616 | } |
617 | 617 | $new_crumbs[2] = $crumbs[1]; |
@@ -621,5 +621,5 @@ discard block |
||
621 | 621 | } |
622 | 622 | return $crumbs; |
623 | 623 | } |
624 | -add_filter( 'wpseo_breadcrumb_links', 'lsx_breadcrumbs_blog_link', 30, 1 ); |
|
625 | -add_filter( 'woocommerce_get_breadcrumb', 'lsx_breadcrumbs_blog_link', 30, 1 ); |
|
624 | +add_filter('wpseo_breadcrumb_links', 'lsx_breadcrumbs_blog_link', 30, 1); |
|
625 | +add_filter('woocommerce_get_breadcrumb', 'lsx_breadcrumbs_blog_link', 30, 1); |
@@ -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 | |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | public function __construct() { |
29 | 29 | //add_filter( 'style_loader_tag', array( $this, 'preload_css' ), 100, 4 ); |
30 | 30 | //add_filter( 'script_loader_tag', array( $this, 'defer_parsing_of_js' ), 100, 3 ); |
31 | - add_action( 'init', array( $this, 'pum_remove_admin_bar_tools' ), 100 ); |
|
31 | + add_action('init', array($this, 'pum_remove_admin_bar_tools'), 100); |
|
32 | 32 | } |
33 | 33 | /** |
34 | 34 | * Return an instance of this class. |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | */ |
39 | 39 | public static function get_instance() { |
40 | 40 | // If the single instance hasn't been set, set it now. |
41 | - if ( null === self::$instance ) { |
|
41 | + if (null === self::$instance) { |
|
42 | 42 | self::$instance = new self; |
43 | 43 | } |
44 | 44 | return self::$instance; |
@@ -50,9 +50,9 @@ discard block |
||
50 | 50 | * @param string $url The url to check and defer. |
51 | 51 | * @return string |
52 | 52 | */ |
53 | - public function preload_css( $tag, $handle, $href, $media ) { |
|
54 | - if ( 'lsx_fonts' === $handle || 'fontawesome' === $handle ) { |
|
55 | - $tag = str_replace( 'href', ' preload href', $tag ); |
|
53 | + public function preload_css($tag, $handle, $href, $media) { |
|
54 | + if ('lsx_fonts' === $handle || 'fontawesome' === $handle) { |
|
55 | + $tag = str_replace('href', ' preload href', $tag); |
|
56 | 56 | } |
57 | 57 | return $tag; |
58 | 58 | } |
@@ -63,18 +63,18 @@ discard block |
||
63 | 63 | * @param string $url The url to check and defer. |
64 | 64 | * @return string |
65 | 65 | */ |
66 | - public function defer_parsing_of_js( $tag, $handle, $href ) { |
|
67 | - $skip_defer = apply_filters( 'lsx_defer_parsing_of_js', false, $tag, $handle, $href ); |
|
68 | - if ( ! is_admin() && false !== stripos( $href, '.js' ) && false === stripos( $href, 'jquery.js' ) && false === $skip_defer ) { |
|
69 | - $tag = str_replace( 'src=', ' defer src=', $tag ); |
|
66 | + public function defer_parsing_of_js($tag, $handle, $href) { |
|
67 | + $skip_defer = apply_filters('lsx_defer_parsing_of_js', false, $tag, $handle, $href); |
|
68 | + if ( ! is_admin() && false !== stripos($href, '.js') && false === stripos($href, 'jquery.js') && false === $skip_defer) { |
|
69 | + $tag = str_replace('src=', ' defer src=', $tag); |
|
70 | 70 | } |
71 | 71 | return $tag; |
72 | 72 | } |
73 | 73 | |
74 | 74 | public function pum_remove_admin_bar_tools() { |
75 | - remove_action( 'admin_bar_menu', array( 'PUM_Modules_Admin_Bar', 'toolbar_links' ), 999 ); |
|
76 | - remove_action( 'wp_footer', array( 'PUM_Modules_Admin_Bar', 'admin_bar_styles' ), 999 ); |
|
77 | - remove_action( 'init', array( 'PUM_Modules_Admin_Bar', 'show_debug_bar' ) ); |
|
75 | + remove_action('admin_bar_menu', array('PUM_Modules_Admin_Bar', 'toolbar_links'), 999); |
|
76 | + remove_action('wp_footer', array('PUM_Modules_Admin_Bar', 'admin_bar_styles'), 999); |
|
77 | + remove_action('init', array('PUM_Modules_Admin_Bar', 'show_debug_bar')); |
|
78 | 78 | } |
79 | 79 | } |
80 | 80 | LSX_Optimisation::get_instance(); |