@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | * @subpackage extras |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
@@ -16,10 +16,10 @@ discard block |
||
16 | 16 | * @package lsx |
17 | 17 | * @subpackage extras |
18 | 18 | */ |
19 | -add_filter( 'widget_text', 'shortcode_unautop' ); |
|
20 | -add_filter( 'widget_text', 'do_shortcode' ); |
|
19 | +add_filter('widget_text', 'shortcode_unautop'); |
|
20 | +add_filter('widget_text', 'do_shortcode'); |
|
21 | 21 | |
22 | -if ( ! function_exists( 'lsx_kses_allowed_html' ) ) : |
|
22 | +if ( ! function_exists('lsx_kses_allowed_html')) : |
|
23 | 23 | |
24 | 24 | /** |
25 | 25 | * Enable extra attributes (srcset, sizes) in img tag. |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | * @package lsx |
28 | 28 | * @subpackage extras |
29 | 29 | */ |
30 | - function lsx_kses_allowed_html( $allowedtags, $context ) { |
|
30 | + function lsx_kses_allowed_html($allowedtags, $context) { |
|
31 | 31 | $allowedtags['img']['srcset'] = true; |
32 | 32 | $allowedtags['img']['sizes'] = true; |
33 | 33 | return $allowedtags; |
@@ -35,9 +35,9 @@ discard block |
||
35 | 35 | |
36 | 36 | endif; |
37 | 37 | |
38 | -add_filter( 'wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2 ); |
|
38 | +add_filter('wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2); |
|
39 | 39 | |
40 | -if ( ! function_exists( 'lsx_body_class' ) ) : |
|
40 | +if ( ! function_exists('lsx_body_class')) : |
|
41 | 41 | |
42 | 42 | /** |
43 | 43 | * Add and remove body_class() classes. |
@@ -45,44 +45,44 @@ discard block |
||
45 | 45 | * @package lsx |
46 | 46 | * @subpackage extras |
47 | 47 | */ |
48 | - function lsx_body_class( $classes ) { |
|
48 | + function lsx_body_class($classes) { |
|
49 | 49 | global $post; |
50 | 50 | |
51 | - $header_layout = get_theme_mod( 'lsx_header_layout', 'inline' ); |
|
51 | + $header_layout = get_theme_mod('lsx_header_layout', 'inline'); |
|
52 | 52 | $classes[] = 'header-' . $header_layout; |
53 | 53 | |
54 | - if ( isset( $post ) ) { |
|
54 | + if (isset($post)) { |
|
55 | 55 | $classes[] = $post->post_name; |
56 | 56 | } |
57 | 57 | |
58 | - if ( ! class_exists( 'LSX_Banners' ) || ! empty( apply_filters( 'lsx_banner_plugin_disable', false ) ) ) { |
|
59 | - $post_types = array( 'page', 'post' ); |
|
60 | - $post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types ); |
|
58 | + if ( ! class_exists('LSX_Banners') || ! empty(apply_filters('lsx_banner_plugin_disable', false))) { |
|
59 | + $post_types = array('page', 'post'); |
|
60 | + $post_types = apply_filters('lsx_allowed_post_type_banners', $post_types); |
|
61 | 61 | |
62 | - if ( is_singular( $post_types ) && has_post_thumbnail() ) { |
|
62 | + if (is_singular($post_types) && has_post_thumbnail()) { |
|
63 | 63 | $classes[] = 'page-has-banner'; |
64 | 64 | } |
65 | 65 | } |
66 | 66 | |
67 | - if ( has_nav_menu( 'top-menu' ) || has_nav_menu( 'top-menu-left' ) ) { |
|
67 | + if (has_nav_menu('top-menu') || has_nav_menu('top-menu-left')) { |
|
68 | 68 | $classes[] = 'has-top-menu'; |
69 | 69 | } |
70 | 70 | |
71 | - $fixed_header = get_theme_mod( 'lsx_header_fixed', false ); |
|
71 | + $fixed_header = get_theme_mod('lsx_header_fixed', false); |
|
72 | 72 | |
73 | - if ( false !== $fixed_header ) { |
|
73 | + if (false !== $fixed_header) { |
|
74 | 74 | $classes[] = 'top-menu-fixed'; |
75 | 75 | } |
76 | 76 | |
77 | - $search_form = get_theme_mod( 'lsx_header_search', false ); |
|
77 | + $search_form = get_theme_mod('lsx_header_search', false); |
|
78 | 78 | |
79 | - if ( false !== $search_form ) { |
|
79 | + if (false !== $search_form) { |
|
80 | 80 | $classes[] = 'has-header-search'; |
81 | 81 | } |
82 | 82 | |
83 | - $preloader_content = get_theme_mod( 'lsx_preloader_content_status', false ); |
|
83 | + $preloader_content = get_theme_mod('lsx_preloader_content_status', false); |
|
84 | 84 | |
85 | - if ( false !== $preloader_content ) { |
|
85 | + if (false !== $preloader_content) { |
|
86 | 86 | $classes[] = 'preloader-content-enable'; |
87 | 87 | } |
88 | 88 | |
@@ -91,9 +91,9 @@ discard block |
||
91 | 91 | |
92 | 92 | endif; |
93 | 93 | |
94 | -add_filter( 'body_class', 'lsx_body_class' ); |
|
94 | +add_filter('body_class', 'lsx_body_class'); |
|
95 | 95 | |
96 | -if ( ! function_exists( 'lsx_embed_wrap' ) ) : |
|
96 | +if ( ! function_exists('lsx_embed_wrap')) : |
|
97 | 97 | |
98 | 98 | /** |
99 | 99 | * Wrap embedded media as suggested by Readability. |
@@ -104,8 +104,8 @@ discard block |
||
104 | 104 | * @link https://gist.github.com/965956 |
105 | 105 | * @link http://www.readability.com/publishers/guidelines#publisher |
106 | 106 | */ |
107 | - function lsx_embed_wrap( $cache, $url, $attr = '', $post_id = '' ) { |
|
108 | - if ( false !== strpos( $cache, '<iframe' ) ) { |
|
107 | + function lsx_embed_wrap($cache, $url, $attr = '', $post_id = '') { |
|
108 | + if (false !== strpos($cache, '<iframe')) { |
|
109 | 109 | return '<div class="entry-content-asset">' . $cache . '</div>'; |
110 | 110 | } |
111 | 111 | |
@@ -114,9 +114,9 @@ discard block |
||
114 | 114 | |
115 | 115 | endif; |
116 | 116 | |
117 | -add_filter( 'embed_oembed_html', 'lsx_embed_wrap', 10, 4 ); |
|
117 | +add_filter('embed_oembed_html', 'lsx_embed_wrap', 10, 4); |
|
118 | 118 | |
119 | -if ( ! function_exists( 'lsx_remove_self_closing_tags' ) ) : |
|
119 | +if ( ! function_exists('lsx_remove_self_closing_tags')) : |
|
120 | 120 | |
121 | 121 | /** |
122 | 122 | * Remove unnecessary self-closing tags. |
@@ -124,17 +124,17 @@ discard block |
||
124 | 124 | * @package lsx |
125 | 125 | * @subpackage extras |
126 | 126 | */ |
127 | - function lsx_remove_self_closing_tags( $input ) { |
|
128 | - return str_replace( ' />', '>', $input ); |
|
127 | + function lsx_remove_self_closing_tags($input) { |
|
128 | + return str_replace(' />', '>', $input); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | endif; |
132 | 132 | |
133 | -add_filter( 'get_avatar', 'lsx_remove_self_closing_tags' ); // <img /> |
|
134 | -add_filter( 'comment_id_fields', 'lsx_remove_self_closing_tags' ); // <input /> |
|
135 | -add_filter( 'post_thumbnail_html', 'lsx_remove_self_closing_tags' ); // <img /> |
|
133 | +add_filter('get_avatar', 'lsx_remove_self_closing_tags'); // <img /> |
|
134 | +add_filter('comment_id_fields', 'lsx_remove_self_closing_tags'); // <input /> |
|
135 | +add_filter('post_thumbnail_html', 'lsx_remove_self_closing_tags'); // <img /> |
|
136 | 136 | |
137 | -if ( ! function_exists( 'lsx_is_element_empty' ) ) : |
|
137 | +if ( ! function_exists('lsx_is_element_empty')) : |
|
138 | 138 | |
139 | 139 | /** |
140 | 140 | * Checks if a Nav $element is empty or not. |
@@ -142,14 +142,14 @@ discard block |
||
142 | 142 | * @package lsx |
143 | 143 | * @subpackage extras |
144 | 144 | */ |
145 | - function lsx_is_element_empty( $element ) { |
|
146 | - $element = trim( $element ); |
|
147 | - return empty( $element ) ? false : true; |
|
145 | + function lsx_is_element_empty($element) { |
|
146 | + $element = trim($element); |
|
147 | + return empty($element) ? false : true; |
|
148 | 148 | } |
149 | 149 | |
150 | 150 | endif; |
151 | 151 | |
152 | -if ( ! function_exists( 'lsx_get_thumbnail' ) ) : |
|
152 | +if ( ! function_exists('lsx_get_thumbnail')) : |
|
153 | 153 | |
154 | 154 | /** |
155 | 155 | * return the responsive images. |
@@ -157,44 +157,44 @@ discard block |
||
157 | 157 | * @package lsx |
158 | 158 | * @subpackage extras |
159 | 159 | */ |
160 | - function lsx_get_thumbnail( $size, $image_src = false ) { |
|
161 | - if ( false === $image_src ) { |
|
160 | + function lsx_get_thumbnail($size, $image_src = false) { |
|
161 | + if (false === $image_src) { |
|
162 | 162 | $post_id = get_the_ID(); |
163 | - $post_thumbnail_id = get_post_thumbnail_id( $post_id ); |
|
164 | - } elseif ( false !== $image_src ) { |
|
165 | - if ( is_numeric( $image_src ) ) { |
|
163 | + $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
164 | + } elseif (false !== $image_src) { |
|
165 | + if (is_numeric($image_src)) { |
|
166 | 166 | $post_thumbnail_id = $image_src; |
167 | 167 | } else { |
168 | - $post_thumbnail_id = lsx_get_attachment_id_from_src( $image_src ); |
|
168 | + $post_thumbnail_id = lsx_get_attachment_id_from_src($image_src); |
|
169 | 169 | } |
170 | 170 | } |
171 | 171 | |
172 | - $size = apply_filters( 'lsx_thumbnail_size', $size ); |
|
172 | + $size = apply_filters('lsx_thumbnail_size', $size); |
|
173 | 173 | $img = false; |
174 | 174 | |
175 | - if ( 'lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size ) { |
|
175 | + if ('lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size) { |
|
176 | 176 | $srcset = false; |
177 | - $img = wp_get_attachment_image_src( $post_thumbnail_id, $size ); |
|
177 | + $img = wp_get_attachment_image_src($post_thumbnail_id, $size); |
|
178 | 178 | $img = $img[0]; |
179 | 179 | } else { |
180 | 180 | $srcset = true; |
181 | - $img = wp_get_attachment_image_srcset( $post_thumbnail_id, $size ); |
|
181 | + $img = wp_get_attachment_image_srcset($post_thumbnail_id, $size); |
|
182 | 182 | |
183 | - if ( empty( $img ) ) { |
|
183 | + if (empty($img)) { |
|
184 | 184 | $srcset = false; |
185 | - $img = wp_get_attachment_image_src( $post_thumbnail_id, $size ); |
|
185 | + $img = wp_get_attachment_image_src($post_thumbnail_id, $size); |
|
186 | 186 | $img = $img[0]; |
187 | 187 | } |
188 | 188 | } |
189 | 189 | |
190 | - if ( ! empty( $img ) ) { |
|
191 | - if ( $srcset ) { |
|
192 | - $img = '<img alt="' . the_title_attribute( 'echo=0' ) . '" class="attachment-responsive wp-post-image lsx-responsive" srcset="' . esc_attr( $img ) . '" />'; |
|
190 | + if ( ! empty($img)) { |
|
191 | + if ($srcset) { |
|
192 | + $img = '<img alt="' . the_title_attribute('echo=0') . '" class="attachment-responsive wp-post-image lsx-responsive" srcset="' . esc_attr($img) . '" />'; |
|
193 | 193 | } else { |
194 | - $img = '<img alt="' . the_title_attribute( 'echo=0' ) . '" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url( $img ) . '" />'; |
|
194 | + $img = '<img alt="' . the_title_attribute('echo=0') . '" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url($img) . '" />'; |
|
195 | 195 | } |
196 | 196 | |
197 | - $img = apply_filters( 'lsx_lazyload_filter_images', $img ); |
|
197 | + $img = apply_filters('lsx_lazyload_filter_images', $img); |
|
198 | 198 | } |
199 | 199 | |
200 | 200 | return $img; |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | |
203 | 203 | endif; |
204 | 204 | |
205 | -if ( ! function_exists( 'lsx_thumbnail' ) ) : |
|
205 | +if ( ! function_exists('lsx_thumbnail')) : |
|
206 | 206 | |
207 | 207 | /** |
208 | 208 | * Output the Resonsive Images. |
@@ -210,13 +210,13 @@ discard block |
||
210 | 210 | * @package lsx |
211 | 211 | * @subpackage extras |
212 | 212 | */ |
213 | - function lsx_thumbnail( $size = 'thumbnail', $image_src = false ) { |
|
214 | - echo wp_kses_post( lsx_get_thumbnail( $size, $image_src ) ); |
|
213 | + function lsx_thumbnail($size = 'thumbnail', $image_src = false) { |
|
214 | + echo wp_kses_post(lsx_get_thumbnail($size, $image_src)); |
|
215 | 215 | } |
216 | 216 | |
217 | 217 | endif; |
218 | 218 | |
219 | -if ( ! function_exists( 'lsx_get_attachment_id_from_src' ) ) : |
|
219 | +if ( ! function_exists('lsx_get_attachment_id_from_src')) : |
|
220 | 220 | |
221 | 221 | /** |
222 | 222 | * Gets the attachments ID from the src. |
@@ -224,13 +224,13 @@ discard block |
||
224 | 224 | * @package lsx |
225 | 225 | * @subpackage extras |
226 | 226 | */ |
227 | - function lsx_get_attachment_id_from_src( $image_src ) { |
|
228 | - $post_id = wp_cache_get( $image_src, 'lsx_get_attachment_id_from_src' ); |
|
227 | + function lsx_get_attachment_id_from_src($image_src) { |
|
228 | + $post_id = wp_cache_get($image_src, 'lsx_get_attachment_id_from_src'); |
|
229 | 229 | |
230 | - if ( false === $post_id ) { |
|
230 | + if (false === $post_id) { |
|
231 | 231 | global $wpdb; |
232 | - $post_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src ) ); |
|
233 | - wp_cache_set( $image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600 ); |
|
232 | + $post_id = $wpdb->get_var($wpdb->prepare("SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src)); |
|
233 | + wp_cache_set($image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600); |
|
234 | 234 | } |
235 | 235 | |
236 | 236 | return $post_id; |
@@ -238,7 +238,7 @@ discard block |
||
238 | 238 | |
239 | 239 | endif; |
240 | 240 | |
241 | -if ( ! function_exists( 'lsx_page_banner' ) ) : |
|
241 | +if ( ! function_exists('lsx_page_banner')) : |
|
242 | 242 | |
243 | 243 | /** |
244 | 244 | * Add Featured Image as Banner on Single Pages. |
@@ -247,26 +247,26 @@ discard block |
||
247 | 247 | * @subpackage extras |
248 | 248 | */ |
249 | 249 | function lsx_page_banner() { |
250 | - if ( true === apply_filters( 'lsx_page_banner_disable', false ) ) { |
|
250 | + if (true === apply_filters('lsx_page_banner_disable', false)) { |
|
251 | 251 | return; |
252 | 252 | } |
253 | 253 | |
254 | - $post_types = array( 'page', 'post' ); |
|
255 | - $post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types ); |
|
254 | + $post_types = array('page', 'post'); |
|
255 | + $post_types = apply_filters('lsx_allowed_post_type_banners', $post_types); |
|
256 | 256 | |
257 | - if ( is_singular( $post_types ) && has_post_thumbnail() ) : |
|
257 | + if (is_singular($post_types) && has_post_thumbnail()) : |
|
258 | 258 | $bg_image = ''; |
259 | 259 | |
260 | - if ( has_post_thumbnail() ) { |
|
261 | - $bg_image = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'full' ); |
|
260 | + if (has_post_thumbnail()) { |
|
261 | + $bg_image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), 'full'); |
|
262 | 262 | $bg_image = $bg_image[0]; |
263 | 263 | } |
264 | 264 | |
265 | - if ( ! empty( $bg_image ) ) : |
|
265 | + if ( ! empty($bg_image)) : |
|
266 | 266 | ?> |
267 | 267 | <div class="page-banner-wrap"> |
268 | 268 | <div class="page-banner"> |
269 | - <div class="page-banner-image" style="background-image:url(<?php echo esc_attr( $bg_image ); ?>);"></div> |
|
269 | + <div class="page-banner-image" style="background-image:url(<?php echo esc_attr($bg_image); ?>);"></div> |
|
270 | 270 | |
271 | 271 | <div class="container"> |
272 | 272 | <header class="page-header"> |
@@ -285,9 +285,9 @@ discard block |
||
285 | 285 | |
286 | 286 | endif; |
287 | 287 | |
288 | -add_action( 'lsx_header_after', 'lsx_page_banner' ); |
|
288 | +add_action('lsx_header_after', 'lsx_page_banner'); |
|
289 | 289 | |
290 | -if ( ! function_exists( 'lsx_form_submit_button' ) ) : |
|
290 | +if ( ! function_exists('lsx_form_submit_button')) : |
|
291 | 291 | |
292 | 292 | /** |
293 | 293 | * filter the Gravity Forms button type. |
@@ -299,15 +299,15 @@ discard block |
||
299 | 299 | * @param $form Object |
300 | 300 | * @return String |
301 | 301 | */ |
302 | - function lsx_form_submit_button( $button, $form ) { |
|
302 | + function lsx_form_submit_button($button, $form) { |
|
303 | 303 | return "<button class='btn btn-primary' id='gform_submit_button_{$form["id"]}'><span>Submit</span></button>"; |
304 | 304 | } |
305 | 305 | |
306 | 306 | endif; |
307 | 307 | |
308 | -add_filter( 'gform_submit_button', 'lsx_form_submit_button', 10, 2 ); |
|
308 | +add_filter('gform_submit_button', 'lsx_form_submit_button', 10, 2); |
|
309 | 309 | |
310 | -if ( ! function_exists( 'lsx_excerpt_more' ) ) : |
|
310 | +if ( ! function_exists('lsx_excerpt_more')) : |
|
311 | 311 | |
312 | 312 | /** |
313 | 313 | * Replaces the excerpt "more" text by a link. |
@@ -315,15 +315,15 @@ discard block |
||
315 | 315 | * @package lsx |
316 | 316 | * @subpackage extras |
317 | 317 | */ |
318 | - function lsx_excerpt_more( $more ) { |
|
318 | + function lsx_excerpt_more($more) { |
|
319 | 319 | return '...'; |
320 | 320 | } |
321 | 321 | |
322 | 322 | endif; |
323 | 323 | |
324 | -add_filter( 'excerpt_more', 'lsx_excerpt_more' ); |
|
324 | +add_filter('excerpt_more', 'lsx_excerpt_more'); |
|
325 | 325 | |
326 | -if ( ! function_exists( 'lsx_the_excerpt_filter' ) ) : |
|
326 | +if ( ! function_exists('lsx_the_excerpt_filter')) : |
|
327 | 327 | |
328 | 328 | /** |
329 | 329 | * Add a continue reading link to the excerpt. |
@@ -331,7 +331,7 @@ discard block |
||
331 | 331 | * @package lsx |
332 | 332 | * @subpackage extras |
333 | 333 | */ |
334 | - function lsx_the_excerpt_filter( $excerpt ) { |
|
334 | + function lsx_the_excerpt_filter($excerpt) { |
|
335 | 335 | |
336 | 336 | $post_formats = array( |
337 | 337 | 'aside' => 'aside', |
@@ -344,23 +344,23 @@ discard block |
||
344 | 344 | 'audio' => 'audio' |
345 | 345 | ); |
346 | 346 | |
347 | - $show_full_content = has_post_format( apply_filters( 'lsx_the_excerpt_filter_post_types', $post_formats ) ); |
|
347 | + $show_full_content = has_post_format(apply_filters('lsx_the_excerpt_filter_post_types', $post_formats)); |
|
348 | 348 | |
349 | - if ( ! $show_full_content ) { |
|
350 | - if ( '' !== $excerpt && ! stristr( $excerpt, 'moretag' ) ) { |
|
351 | - $pagination = wp_link_pages( array( |
|
349 | + if ( ! $show_full_content) { |
|
350 | + if ('' !== $excerpt && ! stristr($excerpt, 'moretag')) { |
|
351 | + $pagination = wp_link_pages(array( |
|
352 | 352 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
353 | 353 | 'after' => '</div></div>', |
354 | 354 | 'link_before' => '<span>', |
355 | 355 | 'link_after' => '</span>', |
356 | 356 | 'echo' => 0, |
357 | - ) ); |
|
357 | + )); |
|
358 | 358 | |
359 | - if ( ! empty( $pagination ) ) { |
|
359 | + if ( ! empty($pagination)) { |
|
360 | 360 | $excerpt .= $pagination; |
361 | 361 | } else { |
362 | - $excerpt_more = '<p><a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'Continue reading', 'lsx' ) . '</a></p>'; |
|
363 | - $excerpt .= apply_filters( 'excerpt_more_p', $excerpt_more ); |
|
362 | + $excerpt_more = '<p><a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('Continue reading', 'lsx') . '</a></p>'; |
|
363 | + $excerpt .= apply_filters('excerpt_more_p', $excerpt_more); |
|
364 | 364 | } |
365 | 365 | } |
366 | 366 | } |
@@ -370,9 +370,9 @@ discard block |
||
370 | 370 | |
371 | 371 | endif; |
372 | 372 | |
373 | -add_filter( 'the_excerpt', 'lsx_the_excerpt_filter' , 1 , 20 ); |
|
373 | +add_filter('the_excerpt', 'lsx_the_excerpt_filter', 1, 20); |
|
374 | 374 | |
375 | -if ( ! function_exists( 'lsx_custom_wp_trim_excerpt' ) ) : |
|
375 | +if ( ! function_exists('lsx_custom_wp_trim_excerpt')) : |
|
376 | 376 | |
377 | 377 | /** |
378 | 378 | * Allow HTML tags in excerpt. |
@@ -380,12 +380,12 @@ discard block |
||
380 | 380 | * @package lsx |
381 | 381 | * @subpackage extras |
382 | 382 | */ |
383 | - function lsx_custom_wp_trim_excerpt( $wpse_excerpt ) { |
|
383 | + function lsx_custom_wp_trim_excerpt($wpse_excerpt) { |
|
384 | 384 | global $post; |
385 | 385 | $raw_excerpt = $wpse_excerpt; |
386 | 386 | |
387 | - if ( empty( $wpse_excerpt ) ) { |
|
388 | - $wpse_excerpt = get_the_content( '' ); |
|
387 | + if (empty($wpse_excerpt)) { |
|
388 | + $wpse_excerpt = get_the_content(''); |
|
389 | 389 | |
390 | 390 | $post_formats = array( |
391 | 391 | 'aside' => 'aside', |
@@ -398,27 +398,27 @@ discard block |
||
398 | 398 | 'audio' => 'audio' |
399 | 399 | ); |
400 | 400 | |
401 | - $show_full_content = has_post_format( apply_filters( 'lsx_excerpt_read_more_post_formats', $post_formats ) ); |
|
401 | + $show_full_content = has_post_format(apply_filters('lsx_excerpt_read_more_post_formats', $post_formats)); |
|
402 | 402 | |
403 | - if ( ! $show_full_content ) { |
|
404 | - $wpse_excerpt = strip_shortcodes( $wpse_excerpt ); |
|
405 | - $wpse_excerpt = apply_filters( 'the_content', $wpse_excerpt ); |
|
406 | - $wpse_excerpt = str_replace( ']]>', ']]>', $wpse_excerpt ); |
|
407 | - $wpse_excerpt = strip_tags( $wpse_excerpt, apply_filters( 'excerpt_strip_tags', '<h1>,<h2>,<h3>,<h4>,<h5>,<h6>,<a>,<button>,<blockquote>,<p>,<br>,<b>,<strong>,<i>,<u>,<ul>,<ol>,<li>,<span>,<div>' ) ); |
|
403 | + if ( ! $show_full_content) { |
|
404 | + $wpse_excerpt = strip_shortcodes($wpse_excerpt); |
|
405 | + $wpse_excerpt = apply_filters('the_content', $wpse_excerpt); |
|
406 | + $wpse_excerpt = str_replace(']]>', ']]>', $wpse_excerpt); |
|
407 | + $wpse_excerpt = strip_tags($wpse_excerpt, apply_filters('excerpt_strip_tags', '<h1>,<h2>,<h3>,<h4>,<h5>,<h6>,<a>,<button>,<blockquote>,<p>,<br>,<b>,<strong>,<i>,<u>,<ul>,<ol>,<li>,<span>,<div>')); |
|
408 | 408 | |
409 | 409 | $excerpt_word_count = 50; |
410 | - $excerpt_word_count = apply_filters( 'excerpt_length', $excerpt_word_count ); |
|
410 | + $excerpt_word_count = apply_filters('excerpt_length', $excerpt_word_count); |
|
411 | 411 | |
412 | 412 | $tokens = array(); |
413 | 413 | $excerpt_output = ''; |
414 | 414 | $has_more = false; |
415 | 415 | $count = 0; |
416 | 416 | |
417 | - preg_match_all( '/(<[^>]+>|[^<>\s]+)\s*/u', $wpse_excerpt, $tokens ); |
|
417 | + preg_match_all('/(<[^>]+>|[^<>\s]+)\s*/u', $wpse_excerpt, $tokens); |
|
418 | 418 | |
419 | - foreach ( $tokens[0] as $token ) { |
|
420 | - if ( $count >= $excerpt_word_count ) { |
|
421 | - $excerpt_output .= trim( $token ); |
|
419 | + foreach ($tokens[0] as $token) { |
|
420 | + if ($count >= $excerpt_word_count) { |
|
421 | + $excerpt_output .= trim($token); |
|
422 | 422 | $has_more = true; |
423 | 423 | break; |
424 | 424 | } |
@@ -427,41 +427,41 @@ discard block |
||
427 | 427 | $excerpt_output .= $token; |
428 | 428 | } |
429 | 429 | |
430 | - $wpse_excerpt = trim( force_balance_tags( $excerpt_output ) ); |
|
430 | + $wpse_excerpt = trim(force_balance_tags($excerpt_output)); |
|
431 | 431 | |
432 | - if ( $has_more ) { |
|
433 | - $excerpt_end = '<a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'More', 'lsx' ) . '</a>'; |
|
434 | - $excerpt_end = apply_filters( 'excerpt_more', ' ' . $excerpt_end ); |
|
432 | + if ($has_more) { |
|
433 | + $excerpt_end = '<a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('More', 'lsx') . '</a>'; |
|
434 | + $excerpt_end = apply_filters('excerpt_more', ' ' . $excerpt_end); |
|
435 | 435 | |
436 | - $pos = strrpos( $wpse_excerpt, '</' ); |
|
436 | + $pos = strrpos($wpse_excerpt, '</'); |
|
437 | 437 | |
438 | - if ( false !== $pos ) { |
|
438 | + if (false !== $pos) { |
|
439 | 439 | // Inside last HTML tag |
440 | - $wpse_excerpt = substr_replace( $wpse_excerpt, $excerpt_end, $pos, 0 ); /* Add read more next to last word */ |
|
440 | + $wpse_excerpt = substr_replace($wpse_excerpt, $excerpt_end, $pos, 0); /* Add read more next to last word */ |
|
441 | 441 | } else { |
442 | 442 | // After the content |
443 | 443 | $wpse_excerpt .= $excerpt_end; /*Add read more in new paragraph */ |
444 | 444 | } |
445 | 445 | } |
446 | 446 | } else { |
447 | - $wpse_excerpt = apply_filters( 'the_content', $wpse_excerpt ); |
|
448 | - $wpse_excerpt = str_replace( ']]>', ']]>', $wpse_excerpt ); |
|
447 | + $wpse_excerpt = apply_filters('the_content', $wpse_excerpt); |
|
448 | + $wpse_excerpt = str_replace(']]>', ']]>', $wpse_excerpt); |
|
449 | 449 | //$wpse_excerpt = strip_tags( $wpse_excerpt, '<blockquote>,<p>' ); |
450 | - $wpse_excerpt = trim( force_balance_tags( $wpse_excerpt ) ); |
|
450 | + $wpse_excerpt = trim(force_balance_tags($wpse_excerpt)); |
|
451 | 451 | } |
452 | 452 | |
453 | 453 | return $wpse_excerpt; |
454 | 454 | } |
455 | 455 | |
456 | - return apply_filters( 'lsx_custom_wp_trim_excerpt', $wpse_excerpt, $raw_excerpt ); |
|
456 | + return apply_filters('lsx_custom_wp_trim_excerpt', $wpse_excerpt, $raw_excerpt); |
|
457 | 457 | } |
458 | 458 | |
459 | 459 | endif; |
460 | 460 | |
461 | -remove_filter( 'get_the_excerpt', 'wp_trim_excerpt' ); |
|
462 | -add_filter( 'get_the_excerpt', 'lsx_custom_wp_trim_excerpt' ); |
|
461 | +remove_filter('get_the_excerpt', 'wp_trim_excerpt'); |
|
462 | +add_filter('get_the_excerpt', 'lsx_custom_wp_trim_excerpt'); |
|
463 | 463 | |
464 | -if ( ! function_exists( 'lsx_full_width_widget_classes' ) ) : |
|
464 | +if ( ! function_exists('lsx_full_width_widget_classes')) : |
|
465 | 465 | |
466 | 466 | /** |
467 | 467 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -469,8 +469,8 @@ discard block |
||
469 | 469 | * @package lsx |
470 | 470 | * @subpackage extras |
471 | 471 | */ |
472 | - function lsx_full_width_widget_classes( $params ) { |
|
473 | - if ( is_admin() ) { |
|
472 | + function lsx_full_width_widget_classes($params) { |
|
473 | + if (is_admin()) { |
|
474 | 474 | return $params; |
475 | 475 | } |
476 | 476 | |
@@ -479,9 +479,9 @@ discard block |
||
479 | 479 | $widget_id = $params[0]['widget_id']; |
480 | 480 | $widget_name = $params[0]['widget_name']; |
481 | 481 | |
482 | - if ( 'Text' === $widget_name ) { |
|
483 | - $wp_registered_widgets[ $widget_id ]['original_callback'] = $wp_registered_widgets[ $widget_id ]['callback']; |
|
484 | - $wp_registered_widgets[ $widget_id ]['callback'] = 'lsx_full_width_widget_custom_callback'; |
|
482 | + if ('Text' === $widget_name) { |
|
483 | + $wp_registered_widgets[$widget_id]['original_callback'] = $wp_registered_widgets[$widget_id]['callback']; |
|
484 | + $wp_registered_widgets[$widget_id]['callback'] = 'lsx_full_width_widget_custom_callback'; |
|
485 | 485 | } |
486 | 486 | |
487 | 487 | return $params; |
@@ -489,9 +489,9 @@ discard block |
||
489 | 489 | |
490 | 490 | endif; |
491 | 491 | |
492 | -add_filter( 'dynamic_sidebar_params', 'lsx_full_width_widget_classes' ); |
|
492 | +add_filter('dynamic_sidebar_params', 'lsx_full_width_widget_classes'); |
|
493 | 493 | |
494 | -if ( ! function_exists( 'lsx_full_width_widget_custom_callback' ) ) : |
|
494 | +if ( ! function_exists('lsx_full_width_widget_custom_callback')) : |
|
495 | 495 | |
496 | 496 | /** |
497 | 497 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -505,25 +505,25 @@ discard block |
||
505 | 505 | $original_callback_params = func_get_args(); |
506 | 506 | $widget_id = $original_callback_params[0]['widget_id']; |
507 | 507 | |
508 | - $original_callback = $wp_registered_widgets[ $widget_id ]['original_callback']; |
|
509 | - $wp_registered_widgets[ $widget_id ]['callback'] = $original_callback; |
|
508 | + $original_callback = $wp_registered_widgets[$widget_id]['original_callback']; |
|
509 | + $wp_registered_widgets[$widget_id]['callback'] = $original_callback; |
|
510 | 510 | |
511 | - $widget_id_base = $wp_registered_widgets[ $widget_id ]['callback'][0]->id_base; |
|
511 | + $widget_id_base = $wp_registered_widgets[$widget_id]['callback'][0]->id_base; |
|
512 | 512 | |
513 | 513 | $widget_classname = ''; |
514 | 514 | |
515 | - if ( is_callable( $original_callback ) ) { |
|
515 | + if (is_callable($original_callback)) { |
|
516 | 516 | ob_start(); |
517 | - call_user_func_array( $original_callback, $original_callback_params ); |
|
517 | + call_user_func_array($original_callback, $original_callback_params); |
|
518 | 518 | $widget_output = ob_get_clean(); |
519 | 519 | |
520 | - echo wp_kses_post( apply_filters( 'lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id ) ); |
|
520 | + echo wp_kses_post(apply_filters('lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id)); |
|
521 | 521 | } |
522 | 522 | } |
523 | 523 | |
524 | 524 | endif; |
525 | 525 | |
526 | -if ( ! function_exists( 'lsx_full_width_widget_output' ) ) : |
|
526 | +if ( ! function_exists('lsx_full_width_widget_output')) : |
|
527 | 527 | |
528 | 528 | /** |
529 | 529 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -531,12 +531,12 @@ discard block |
||
531 | 531 | * @package lsx |
532 | 532 | * @subpackage extras |
533 | 533 | */ |
534 | - function lsx_full_width_widget_output( $widget_output, $widget_id_base, $widget_id ) { |
|
535 | - if ( 'text' === $widget_id_base ) { |
|
536 | - if ( false !== strpos( $widget_output, '<div class="lsx-full-width-alt">' ) ) { |
|
537 | - $widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output ); |
|
538 | - } elseif ( false !== strpos( $widget_output, '<div class="lsx-full-width">' ) ) { |
|
539 | - $widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output ); |
|
534 | + function lsx_full_width_widget_output($widget_output, $widget_id_base, $widget_id) { |
|
535 | + if ('text' === $widget_id_base) { |
|
536 | + if (false !== strpos($widget_output, '<div class="lsx-full-width-alt">')) { |
|
537 | + $widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output); |
|
538 | + } elseif (false !== strpos($widget_output, '<div class="lsx-full-width">')) { |
|
539 | + $widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output); |
|
540 | 540 | } |
541 | 541 | } |
542 | 542 | |
@@ -545,15 +545,15 @@ discard block |
||
545 | 545 | |
546 | 546 | endif; |
547 | 547 | |
548 | -add_filter( 'lsx_widget_output', 'lsx_full_width_widget_output', 10, 3 ); |
|
548 | +add_filter('lsx_widget_output', 'lsx_full_width_widget_output', 10, 3); |
|
549 | 549 | |
550 | 550 | /** |
551 | 551 | * Check if the content has a restricted post format that needs to show a full excerpt. |
552 | 552 | */ |
553 | 553 | function lsx_post_format_force_content_on_list() { |
554 | - $post_formats = apply_filters( 'lsx_post_format_force_content_on_list', array('video' => 'video', 'audio' => 'audio', 'quote' => 'quote', 'link' => 'link') ); |
|
554 | + $post_formats = apply_filters('lsx_post_format_force_content_on_list', array('video' => 'video', 'audio' => 'audio', 'quote' => 'quote', 'link' => 'link')); |
|
555 | 555 | $return = false; |
556 | - if ( ! has_post_format( $post_formats ) ) { |
|
556 | + if ( ! has_post_format($post_formats)) { |
|
557 | 557 | $return = true; |
558 | 558 | } |
559 | 559 | return $return; |