@@ -7,15 +7,15 @@ discard block |
||
7 | 7 | * @category header-layout |
8 | 8 | */ |
9 | 9 | |
10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
10 | +if ( ! defined('ABSPATH')) { |
|
11 | 11 | exit; |
12 | 12 | } |
13 | 13 | |
14 | -if ( ! class_exists( 'WP_Customize_Control' ) ) { |
|
14 | +if ( ! class_exists('WP_Customize_Control')) { |
|
15 | 15 | return; |
16 | 16 | } |
17 | 17 | |
18 | -if ( ! class_exists( 'LSX_Customize_Header_Layout_Control' ) ) : |
|
18 | +if ( ! class_exists('LSX_Customize_Header_Layout_Control')) : |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * LSX_Customize_Header_Layout_Control Class |
@@ -30,10 +30,10 @@ discard block |
||
30 | 30 | public $statuses; |
31 | 31 | public $layouts = array(); |
32 | 32 | |
33 | - public function __construct( $manager, $id, $args = array() ) { |
|
34 | - parent::__construct( $manager, $id, $args ); |
|
33 | + public function __construct($manager, $id, $args = array()) { |
|
34 | + parent::__construct($manager, $id, $args); |
|
35 | 35 | |
36 | - if ( ! empty( $args['choices'] ) ) { |
|
36 | + if ( ! empty($args['choices'])) { |
|
37 | 37 | $this->layouts = $args['choices']; |
38 | 38 | } |
39 | 39 | } |
@@ -42,35 +42,35 @@ discard block |
||
42 | 42 | * Enqueue scripts/styles for the color picker. |
43 | 43 | */ |
44 | 44 | public function enqueue() { |
45 | - wp_enqueue_script( 'lsx-header-layout-control', get_template_directory_uri() . '/assets/js/admin/customizer-header-layout.js', array( 'jquery' ), LSX_VERSION, true ); |
|
45 | + wp_enqueue_script('lsx-header-layout-control', get_template_directory_uri() . '/assets/js/admin/customizer-header-layout.js', array('jquery'), LSX_VERSION, true); |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | /** |
49 | 49 | * Render output. |
50 | 50 | */ |
51 | 51 | public function render_content() { |
52 | - $post_id = 'customize-control-' . str_replace( '[', '-', str_replace( ']', '', $this->id ) ); |
|
52 | + $post_id = 'customize-control-' . str_replace('[', '-', str_replace(']', '', $this->id)); |
|
53 | 53 | $class = 'customize-control customize-control-' . $this->type; |
54 | 54 | $value = $this->value(); |
55 | 55 | ?> |
56 | 56 | <label> |
57 | - <?php if ( ! empty( $this->label ) ) { ?> |
|
58 | - <span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span> |
|
57 | + <?php if ( ! empty($this->label)) { ?> |
|
58 | + <span class="customize-control-title"><?php echo esc_html($this->label); ?></span> |
|
59 | 59 | <?php } |
60 | - if ( ! empty( $this->description ) ) { ?> |
|
61 | - <span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span> |
|
60 | + if ( ! empty($this->description)) { ?> |
|
61 | + <span class="description customize-control-description"><?php echo esc_html($this->description); ?></span> |
|
62 | 62 | <?php } ?> |
63 | 63 | <div class="header-layouts-selector"> |
64 | 64 | <?php |
65 | - foreach ( $this->layouts as $layout ) { |
|
65 | + foreach ($this->layouts as $layout) { |
|
66 | 66 | $sel = 'border: 1px solid transparent;'; |
67 | - if ( $value === $layout ) { |
|
67 | + if ($value === $layout) { |
|
68 | 68 | $sel = 'border: 1px solid rgb(43, 166, 203);'; |
69 | 69 | } |
70 | - echo '<img class="header-layout-button" style="padding:2px;' . esc_attr( $sel ) . '" src="' . esc_attr( get_template_directory_uri() ) . '/assets/images/admin/header-' . esc_attr( $layout ) . '.png" data-option="' . esc_attr( $layout ) . '">'; |
|
70 | + echo '<img class="header-layout-button" style="padding:2px;' . esc_attr($sel) . '" src="' . esc_attr(get_template_directory_uri()) . '/assets/images/admin/header-' . esc_attr($layout) . '.png" data-option="' . esc_attr($layout) . '">'; |
|
71 | 71 | } |
72 | 72 | ?> |
73 | - <input <?php $this->link(); ?> class="selected-header-layout <?php echo esc_attr( $class ); ?>" id="<?php echo esc_attr( $post_id ); ?>" type="hidden" value="<?php echo esc_attr( $value ); ?>" <?php $this->input_attrs(); ?>> |
|
73 | + <input <?php $this->link(); ?> class="selected-header-layout <?php echo esc_attr($class); ?>" id="<?php echo esc_attr($post_id); ?>" type="hidden" value="<?php echo esc_attr($value); ?>" <?php $this->input_attrs(); ?>> |
|
74 | 74 | </div> |
75 | 75 | </label> |
76 | 76 | <?php |
@@ -11,11 +11,11 @@ |
||
11 | 11 | <main id="main" class="site-main" role="main"> |
12 | 12 | <section class="error-404 not-found"> |
13 | 13 | <header class="page-header"> |
14 | - <h1 class="page-title"><?php esc_html_e( 'Whoops!', 'lsx' ); ?></h1> |
|
14 | + <h1 class="page-title"><?php esc_html_e('Whoops!', 'lsx'); ?></h1> |
|
15 | 15 | </header><!-- .page-header --> |
16 | 16 | |
17 | 17 | <div class="page-content"> |
18 | - <p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try a search?', 'lsx' ); ?></p> |
|
18 | + <p><?php esc_html_e('It looks like nothing was found at this location. Maybe try a search?', 'lsx'); ?></p> |
|
19 | 19 | <?php get_search_form(); ?> |
20 | 20 | </div><!-- .page-content --> |
21 | 21 | </section><!-- .error-404 --> |
@@ -20,11 +20,11 @@ discard block |
||
20 | 20 | |
21 | 21 | <?php lsx_content_top(); ?> |
22 | 22 | |
23 | - <?php if ( have_posts() ) : ?> |
|
23 | + <?php if (have_posts()) : ?> |
|
24 | 24 | |
25 | - <?php while ( have_posts() ) : the_post(); ?> |
|
25 | + <?php while (have_posts()) : the_post(); ?> |
|
26 | 26 | |
27 | - <?php get_template_part( 'partials/content', 'page' ); ?> |
|
27 | + <?php get_template_part('partials/content', 'page'); ?> |
|
28 | 28 | |
29 | 29 | <?php endwhile; ?> |
30 | 30 | |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | <?php lsx_content_bottom(); ?> |
34 | 34 | |
35 | 35 | <?php |
36 | - if ( comments_open() ) { |
|
36 | + if (comments_open()) { |
|
37 | 37 | comments_template(); |
38 | 38 | } |
39 | 39 | ?> |
@@ -20,11 +20,11 @@ discard block |
||
20 | 20 | |
21 | 21 | <?php lsx_content_top(); ?> |
22 | 22 | |
23 | - <?php if ( have_posts() ) : ?> |
|
23 | + <?php if (have_posts()) : ?> |
|
24 | 24 | |
25 | - <?php while ( have_posts() ) : the_post(); ?> |
|
25 | + <?php while (have_posts()) : the_post(); ?> |
|
26 | 26 | |
27 | - <?php get_template_part( 'partials/content', 'page' ); ?> |
|
27 | + <?php get_template_part('partials/content', 'page'); ?> |
|
28 | 28 | |
29 | 29 | <?php endwhile; ?> |
30 | 30 | |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | <?php lsx_content_bottom(); ?> |
34 | 34 | |
35 | 35 | <?php |
36 | - if ( comments_open() ) { |
|
36 | + if (comments_open()) { |
|
37 | 37 | comments_template(); |
38 | 38 | } |
39 | 39 | ?> |
@@ -16,16 +16,16 @@ |
||
16 | 16 | <?php |
17 | 17 | the_content(); |
18 | 18 | |
19 | - wp_link_pages( array( |
|
19 | + wp_link_pages(array( |
|
20 | 20 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
21 | 21 | 'after' => '</div></div>', |
22 | 22 | 'link_before' => '<span>', |
23 | 23 | 'link_after' => '</span>', |
24 | - ) ); |
|
24 | + )); |
|
25 | 25 | ?> |
26 | 26 | </div><!-- .entry-content --> |
27 | 27 | |
28 | - <?php edit_post_link( esc_html__( 'Edit', 'lsx' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' ); ?> |
|
28 | + <?php edit_post_link(esc_html__('Edit', 'lsx'), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>'); ?> |
|
29 | 29 | |
30 | 30 | <?php lsx_entry_bottom(); ?> |
31 | 31 |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | * @subpackage extras |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
@@ -16,10 +16,10 @@ discard block |
||
16 | 16 | * @package lsx |
17 | 17 | * @subpackage extras |
18 | 18 | */ |
19 | -add_filter( 'widget_text', 'shortcode_unautop' ); |
|
20 | -add_filter( 'widget_text', 'do_shortcode' ); |
|
19 | +add_filter('widget_text', 'shortcode_unautop'); |
|
20 | +add_filter('widget_text', 'do_shortcode'); |
|
21 | 21 | |
22 | -if ( ! function_exists( 'lsx_kses_allowed_html' ) ) : |
|
22 | +if ( ! function_exists('lsx_kses_allowed_html')) : |
|
23 | 23 | |
24 | 24 | /** |
25 | 25 | * Enable extra attributes (srcset, sizes) in img tag. |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | * @package lsx |
28 | 28 | * @subpackage extras |
29 | 29 | */ |
30 | - function lsx_kses_allowed_html( $allowedtags, $context ) { |
|
30 | + function lsx_kses_allowed_html($allowedtags, $context) { |
|
31 | 31 | $allowedtags['img']['srcset'] = true; |
32 | 32 | $allowedtags['img']['sizes'] = true; |
33 | 33 | return $allowedtags; |
@@ -35,9 +35,9 @@ discard block |
||
35 | 35 | |
36 | 36 | endif; |
37 | 37 | |
38 | -add_filter( 'wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2 ); |
|
38 | +add_filter('wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2); |
|
39 | 39 | |
40 | -if ( ! function_exists( 'lsx_body_class' ) ) : |
|
40 | +if ( ! function_exists('lsx_body_class')) : |
|
41 | 41 | |
42 | 42 | /** |
43 | 43 | * Add and remove body_class() classes. |
@@ -45,44 +45,44 @@ discard block |
||
45 | 45 | * @package lsx |
46 | 46 | * @subpackage extras |
47 | 47 | */ |
48 | - function lsx_body_class( $classes ) { |
|
48 | + function lsx_body_class($classes) { |
|
49 | 49 | global $post; |
50 | 50 | |
51 | - $header_layout = get_theme_mod( 'lsx_header_layout', 'inline' ); |
|
51 | + $header_layout = get_theme_mod('lsx_header_layout', 'inline'); |
|
52 | 52 | $classes[] = 'header-' . $header_layout; |
53 | 53 | |
54 | - if ( isset( $post ) ) { |
|
54 | + if (isset($post)) { |
|
55 | 55 | $classes[] = $post->post_name; |
56 | 56 | } |
57 | 57 | |
58 | - if ( ! class_exists( 'LSX_Banners' ) || ! empty( apply_filters( 'lsx_banner_plugin_disable', false ) ) ) { |
|
59 | - $post_types = array( 'page', 'post' ); |
|
60 | - $post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types ); |
|
58 | + if ( ! class_exists('LSX_Banners') || ! empty(apply_filters('lsx_banner_plugin_disable', false))) { |
|
59 | + $post_types = array('page', 'post'); |
|
60 | + $post_types = apply_filters('lsx_allowed_post_type_banners', $post_types); |
|
61 | 61 | |
62 | - if ( is_singular( $post_types ) && has_post_thumbnail() ) { |
|
62 | + if (is_singular($post_types) && has_post_thumbnail()) { |
|
63 | 63 | $classes[] = 'page-has-banner'; |
64 | 64 | } |
65 | 65 | } |
66 | 66 | |
67 | - if ( has_nav_menu( 'top-menu' ) || has_nav_menu( 'top-menu-left' ) ) { |
|
67 | + if (has_nav_menu('top-menu') || has_nav_menu('top-menu-left')) { |
|
68 | 68 | $classes[] = 'has-top-menu'; |
69 | 69 | } |
70 | 70 | |
71 | - $fixed_header = get_theme_mod( 'lsx_header_fixed', false ); |
|
71 | + $fixed_header = get_theme_mod('lsx_header_fixed', false); |
|
72 | 72 | |
73 | - if ( false !== $fixed_header ) { |
|
73 | + if (false !== $fixed_header) { |
|
74 | 74 | $classes[] = 'top-menu-fixed'; |
75 | 75 | } |
76 | 76 | |
77 | - $search_form = get_theme_mod( 'lsx_header_search', false ); |
|
77 | + $search_form = get_theme_mod('lsx_header_search', false); |
|
78 | 78 | |
79 | - if ( false !== $search_form ) { |
|
79 | + if (false !== $search_form) { |
|
80 | 80 | $classes[] = 'has-header-search'; |
81 | 81 | } |
82 | 82 | |
83 | - $preloader_content = get_theme_mod( 'lsx_preloader_content_status', false ); |
|
83 | + $preloader_content = get_theme_mod('lsx_preloader_content_status', false); |
|
84 | 84 | |
85 | - if ( false !== $preloader_content ) { |
|
85 | + if (false !== $preloader_content) { |
|
86 | 86 | $classes[] = 'preloader-content-enable'; |
87 | 87 | } |
88 | 88 | |
@@ -91,9 +91,9 @@ discard block |
||
91 | 91 | |
92 | 92 | endif; |
93 | 93 | |
94 | -add_filter( 'body_class', 'lsx_body_class' ); |
|
94 | +add_filter('body_class', 'lsx_body_class'); |
|
95 | 95 | |
96 | -if ( ! function_exists( 'lsx_embed_wrap' ) ) : |
|
96 | +if ( ! function_exists('lsx_embed_wrap')) : |
|
97 | 97 | |
98 | 98 | /** |
99 | 99 | * Wrap embedded media as suggested by Readability. |
@@ -104,8 +104,8 @@ discard block |
||
104 | 104 | * @link https://gist.github.com/965956 |
105 | 105 | * @link http://www.readability.com/publishers/guidelines#publisher |
106 | 106 | */ |
107 | - function lsx_embed_wrap( $cache, $url, $attr = '', $post_id = '' ) { |
|
108 | - if ( false !== strpos( $cache, '<iframe' ) ) { |
|
107 | + function lsx_embed_wrap($cache, $url, $attr = '', $post_id = '') { |
|
108 | + if (false !== strpos($cache, '<iframe')) { |
|
109 | 109 | return '<div class="entry-content-asset">' . $cache . '</div>'; |
110 | 110 | } |
111 | 111 | |
@@ -114,9 +114,9 @@ discard block |
||
114 | 114 | |
115 | 115 | endif; |
116 | 116 | |
117 | -add_filter( 'embed_oembed_html', 'lsx_embed_wrap', 10, 4 ); |
|
117 | +add_filter('embed_oembed_html', 'lsx_embed_wrap', 10, 4); |
|
118 | 118 | |
119 | -if ( ! function_exists( 'lsx_remove_self_closing_tags' ) ) : |
|
119 | +if ( ! function_exists('lsx_remove_self_closing_tags')) : |
|
120 | 120 | |
121 | 121 | /** |
122 | 122 | * Remove unnecessary self-closing tags. |
@@ -124,17 +124,17 @@ discard block |
||
124 | 124 | * @package lsx |
125 | 125 | * @subpackage extras |
126 | 126 | */ |
127 | - function lsx_remove_self_closing_tags( $input ) { |
|
128 | - return str_replace( ' />', '>', $input ); |
|
127 | + function lsx_remove_self_closing_tags($input) { |
|
128 | + return str_replace(' />', '>', $input); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | endif; |
132 | 132 | |
133 | -add_filter( 'get_avatar', 'lsx_remove_self_closing_tags' ); // <img /> |
|
134 | -add_filter( 'comment_id_fields', 'lsx_remove_self_closing_tags' ); // <input /> |
|
135 | -add_filter( 'post_thumbnail_html', 'lsx_remove_self_closing_tags' ); // <img /> |
|
133 | +add_filter('get_avatar', 'lsx_remove_self_closing_tags'); // <img /> |
|
134 | +add_filter('comment_id_fields', 'lsx_remove_self_closing_tags'); // <input /> |
|
135 | +add_filter('post_thumbnail_html', 'lsx_remove_self_closing_tags'); // <img /> |
|
136 | 136 | |
137 | -if ( ! function_exists( 'lsx_is_element_empty' ) ) : |
|
137 | +if ( ! function_exists('lsx_is_element_empty')) : |
|
138 | 138 | |
139 | 139 | /** |
140 | 140 | * Checks if a Nav $element is empty or not. |
@@ -142,14 +142,14 @@ discard block |
||
142 | 142 | * @package lsx |
143 | 143 | * @subpackage extras |
144 | 144 | */ |
145 | - function lsx_is_element_empty( $element ) { |
|
146 | - $element = trim( $element ); |
|
147 | - return empty( $element ) ? false : true; |
|
145 | + function lsx_is_element_empty($element) { |
|
146 | + $element = trim($element); |
|
147 | + return empty($element) ? false : true; |
|
148 | 148 | } |
149 | 149 | |
150 | 150 | endif; |
151 | 151 | |
152 | -if ( ! function_exists( 'lsx_get_thumbnail' ) ) : |
|
152 | +if ( ! function_exists('lsx_get_thumbnail')) : |
|
153 | 153 | |
154 | 154 | /** |
155 | 155 | * return the responsive images. |
@@ -157,49 +157,49 @@ discard block |
||
157 | 157 | * @package lsx |
158 | 158 | * @subpackage extras |
159 | 159 | */ |
160 | - function lsx_get_thumbnail( $size, $image_src = false ) { |
|
161 | - if ( false === $image_src ) { |
|
160 | + function lsx_get_thumbnail($size, $image_src = false) { |
|
161 | + if (false === $image_src) { |
|
162 | 162 | $post_id = get_the_ID(); |
163 | - $post_thumbnail_id = get_post_thumbnail_id( $post_id ); |
|
164 | - } elseif ( false !== $image_src ) { |
|
165 | - if ( is_numeric( $image_src ) ) { |
|
163 | + $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
164 | + } elseif (false !== $image_src) { |
|
165 | + if (is_numeric($image_src)) { |
|
166 | 166 | $post_thumbnail_id = $image_src; |
167 | 167 | } else { |
168 | - $post_thumbnail_id = lsx_get_attachment_id_from_src( $image_src ); |
|
168 | + $post_thumbnail_id = lsx_get_attachment_id_from_src($image_src); |
|
169 | 169 | } |
170 | 170 | } |
171 | 171 | |
172 | - $size = apply_filters( 'lsx_thumbnail_size', $size ); |
|
172 | + $size = apply_filters('lsx_thumbnail_size', $size); |
|
173 | 173 | $img = false; |
174 | 174 | |
175 | - if ( 'lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size ) { |
|
175 | + if ('lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size) { |
|
176 | 176 | $srcset = false; |
177 | - $img = wp_get_attachment_image_src( $post_thumbnail_id, $size ); |
|
177 | + $img = wp_get_attachment_image_src($post_thumbnail_id, $size); |
|
178 | 178 | $img = $img[0]; |
179 | 179 | } else { |
180 | 180 | $srcset = true; |
181 | - $img = wp_get_attachment_image_srcset( $post_thumbnail_id, $size ); |
|
181 | + $img = wp_get_attachment_image_srcset($post_thumbnail_id, $size); |
|
182 | 182 | |
183 | - if ( false === $img ) { |
|
183 | + if (false === $img) { |
|
184 | 184 | $srcset = false; |
185 | - $img = wp_get_attachment_image_src( $post_thumbnail_id, $size ); |
|
185 | + $img = wp_get_attachment_image_src($post_thumbnail_id, $size); |
|
186 | 186 | $img = $img[0]; |
187 | 187 | } |
188 | 188 | } |
189 | 189 | |
190 | - if ( $srcset ) { |
|
191 | - $img = '<img alt="' . the_title_attribute( 'echo=0' ) . '" class="attachment-responsive wp-post-image lsx-responsive" srcset="' . esc_attr( $img ) . '" />'; |
|
190 | + if ($srcset) { |
|
191 | + $img = '<img alt="' . the_title_attribute('echo=0') . '" class="attachment-responsive wp-post-image lsx-responsive" srcset="' . esc_attr($img) . '" />'; |
|
192 | 192 | } else { |
193 | - $img = '<img alt="' . the_title_attribute( 'echo=0' ) . '" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url( $img ) . '" />'; |
|
193 | + $img = '<img alt="' . the_title_attribute('echo=0') . '" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url($img) . '" />'; |
|
194 | 194 | } |
195 | 195 | |
196 | - $img = apply_filters( 'lsx_lazyload_filter_images', $img ); |
|
196 | + $img = apply_filters('lsx_lazyload_filter_images', $img); |
|
197 | 197 | return $img; |
198 | 198 | } |
199 | 199 | |
200 | 200 | endif; |
201 | 201 | |
202 | -if ( ! function_exists( 'lsx_thumbnail' ) ) : |
|
202 | +if ( ! function_exists('lsx_thumbnail')) : |
|
203 | 203 | |
204 | 204 | /** |
205 | 205 | * Output the Resonsive Images. |
@@ -207,13 +207,13 @@ discard block |
||
207 | 207 | * @package lsx |
208 | 208 | * @subpackage extras |
209 | 209 | */ |
210 | - function lsx_thumbnail( $size = 'thumbnail', $image_src = false ) { |
|
211 | - echo wp_kses_post( lsx_get_thumbnail( $size, $image_src ) ); |
|
210 | + function lsx_thumbnail($size = 'thumbnail', $image_src = false) { |
|
211 | + echo wp_kses_post(lsx_get_thumbnail($size, $image_src)); |
|
212 | 212 | } |
213 | 213 | |
214 | 214 | endif; |
215 | 215 | |
216 | -if ( ! function_exists( 'lsx_get_attachment_id_from_src' ) ) : |
|
216 | +if ( ! function_exists('lsx_get_attachment_id_from_src')) : |
|
217 | 217 | |
218 | 218 | /** |
219 | 219 | * Gets the attachments ID from the src. |
@@ -221,13 +221,13 @@ discard block |
||
221 | 221 | * @package lsx |
222 | 222 | * @subpackage extras |
223 | 223 | */ |
224 | - function lsx_get_attachment_id_from_src( $image_src ) { |
|
225 | - $post_id = wp_cache_get( $image_src, 'lsx_get_attachment_id_from_src' ); |
|
224 | + function lsx_get_attachment_id_from_src($image_src) { |
|
225 | + $post_id = wp_cache_get($image_src, 'lsx_get_attachment_id_from_src'); |
|
226 | 226 | |
227 | - if ( false === $post_id ) { |
|
227 | + if (false === $post_id) { |
|
228 | 228 | global $wpdb; |
229 | - $post_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src ) ); |
|
230 | - wp_cache_set( $image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600 ); |
|
229 | + $post_id = $wpdb->get_var($wpdb->prepare("SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src)); |
|
230 | + wp_cache_set($image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600); |
|
231 | 231 | } |
232 | 232 | |
233 | 233 | return $post_id; |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | |
236 | 236 | endif; |
237 | 237 | |
238 | -if ( ! function_exists( 'lsx_page_banner' ) ) : |
|
238 | +if ( ! function_exists('lsx_page_banner')) : |
|
239 | 239 | |
240 | 240 | /** |
241 | 241 | * Add Featured Image as Banner on Single Pages. |
@@ -244,26 +244,26 @@ discard block |
||
244 | 244 | * @subpackage extras |
245 | 245 | */ |
246 | 246 | function lsx_page_banner() { |
247 | - if ( true === apply_filters( 'lsx_page_banner_disable', false ) ) { |
|
247 | + if (true === apply_filters('lsx_page_banner_disable', false)) { |
|
248 | 248 | return; |
249 | 249 | } |
250 | 250 | |
251 | - $post_types = array( 'page', 'post' ); |
|
252 | - $post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types ); |
|
251 | + $post_types = array('page', 'post'); |
|
252 | + $post_types = apply_filters('lsx_allowed_post_type_banners', $post_types); |
|
253 | 253 | |
254 | - if ( is_singular( $post_types ) && has_post_thumbnail() ) : |
|
254 | + if (is_singular($post_types) && has_post_thumbnail()) : |
|
255 | 255 | $bg_image = ''; |
256 | 256 | |
257 | - if ( has_post_thumbnail() ) { |
|
258 | - $bg_image = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'full' ); |
|
257 | + if (has_post_thumbnail()) { |
|
258 | + $bg_image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), 'full'); |
|
259 | 259 | $bg_image = $bg_image[0]; |
260 | 260 | } |
261 | 261 | |
262 | - if ( ! empty( $bg_image ) ) : |
|
262 | + if ( ! empty($bg_image)) : |
|
263 | 263 | ?> |
264 | 264 | <div class="page-banner-wrap"> |
265 | 265 | <div class="page-banner"> |
266 | - <div class="page-banner-image" style="background-image:url(<?php echo esc_attr( $bg_image ); ?>);"></div> |
|
266 | + <div class="page-banner-image" style="background-image:url(<?php echo esc_attr($bg_image); ?>);"></div> |
|
267 | 267 | |
268 | 268 | <div class="container"> |
269 | 269 | <header class="page-header"> |
@@ -282,9 +282,9 @@ discard block |
||
282 | 282 | |
283 | 283 | endif; |
284 | 284 | |
285 | -add_action( 'lsx_header_after', 'lsx_page_banner' ); |
|
285 | +add_action('lsx_header_after', 'lsx_page_banner'); |
|
286 | 286 | |
287 | -if ( ! function_exists( 'lsx_form_submit_button' ) ) : |
|
287 | +if ( ! function_exists('lsx_form_submit_button')) : |
|
288 | 288 | |
289 | 289 | /** |
290 | 290 | * filter the Gravity Forms button type. |
@@ -296,15 +296,15 @@ discard block |
||
296 | 296 | * @param $form Object |
297 | 297 | * @return String |
298 | 298 | */ |
299 | - function lsx_form_submit_button( $button, $form ) { |
|
299 | + function lsx_form_submit_button($button, $form) { |
|
300 | 300 | return "<button class='btn btn-primary' id='gform_submit_button_{$form["id"]}'><span>Submit</span></button>"; |
301 | 301 | } |
302 | 302 | |
303 | 303 | endif; |
304 | 304 | |
305 | -add_filter( 'gform_submit_button', 'lsx_form_submit_button', 10, 2 ); |
|
305 | +add_filter('gform_submit_button', 'lsx_form_submit_button', 10, 2); |
|
306 | 306 | |
307 | -if ( ! function_exists( 'lsx_excerpt_more' ) ) : |
|
307 | +if ( ! function_exists('lsx_excerpt_more')) : |
|
308 | 308 | |
309 | 309 | /** |
310 | 310 | * Replaces the excerpt "more" text by a link. |
@@ -312,15 +312,15 @@ discard block |
||
312 | 312 | * @package lsx |
313 | 313 | * @subpackage extras |
314 | 314 | */ |
315 | - function lsx_excerpt_more( $more ) { |
|
315 | + function lsx_excerpt_more($more) { |
|
316 | 316 | return '...'; |
317 | 317 | } |
318 | 318 | |
319 | 319 | endif; |
320 | 320 | |
321 | -add_filter( 'excerpt_more', 'lsx_excerpt_more' ); |
|
321 | +add_filter('excerpt_more', 'lsx_excerpt_more'); |
|
322 | 322 | |
323 | -if ( ! function_exists( 'lsx_the_excerpt_filter' ) ) : |
|
323 | +if ( ! function_exists('lsx_the_excerpt_filter')) : |
|
324 | 324 | |
325 | 325 | /** |
326 | 326 | * Add a continue reading link to the excerpt. |
@@ -328,24 +328,24 @@ discard block |
||
328 | 328 | * @package lsx |
329 | 329 | * @subpackage extras |
330 | 330 | */ |
331 | - function lsx_the_excerpt_filter( $excerpt ) { |
|
332 | - $show_full_content = has_post_format( apply_filters( 'lsx_the_excerpt_filter_post_types', array( 'aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio' ) ) ); |
|
331 | + function lsx_the_excerpt_filter($excerpt) { |
|
332 | + $show_full_content = has_post_format(apply_filters('lsx_the_excerpt_filter_post_types', array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio'))); |
|
333 | 333 | |
334 | - if ( ! $show_full_content ) { |
|
335 | - if ( '' !== $excerpt && ! stristr( $excerpt, 'moretag' ) ) { |
|
336 | - $pagination = wp_link_pages( array( |
|
334 | + if ( ! $show_full_content) { |
|
335 | + if ('' !== $excerpt && ! stristr($excerpt, 'moretag')) { |
|
336 | + $pagination = wp_link_pages(array( |
|
337 | 337 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
338 | 338 | 'after' => '</div></div>', |
339 | 339 | 'link_before' => '<span>', |
340 | 340 | 'link_after' => '</span>', |
341 | 341 | 'echo' => 0, |
342 | - ) ); |
|
342 | + )); |
|
343 | 343 | |
344 | - if ( ! empty( $pagination ) ) { |
|
344 | + if ( ! empty($pagination)) { |
|
345 | 345 | $excerpt .= $pagination; |
346 | 346 | } else { |
347 | - $excerpt_more = '<p><a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'Continue reading', 'lsx' ) . '</a></p>'; |
|
348 | - $excerpt .= apply_filters( 'excerpt_more_p', $excerpt_more ); |
|
347 | + $excerpt_more = '<p><a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('Continue reading', 'lsx') . '</a></p>'; |
|
348 | + $excerpt .= apply_filters('excerpt_more_p', $excerpt_more); |
|
349 | 349 | } |
350 | 350 | } |
351 | 351 | } |
@@ -355,9 +355,9 @@ discard block |
||
355 | 355 | |
356 | 356 | endif; |
357 | 357 | |
358 | -add_filter( 'the_excerpt', 'lsx_the_excerpt_filter' , 1 , 20 ); |
|
358 | +add_filter('the_excerpt', 'lsx_the_excerpt_filter', 1, 20); |
|
359 | 359 | |
360 | -if ( ! function_exists( 'lsx_custom_wp_trim_excerpt' ) ) : |
|
360 | +if ( ! function_exists('lsx_custom_wp_trim_excerpt')) : |
|
361 | 361 | |
362 | 362 | /** |
363 | 363 | * Allow HTML tags in excerpt. |
@@ -365,33 +365,33 @@ discard block |
||
365 | 365 | * @package lsx |
366 | 366 | * @subpackage extras |
367 | 367 | */ |
368 | - function lsx_custom_wp_trim_excerpt( $wpse_excerpt ) { |
|
368 | + function lsx_custom_wp_trim_excerpt($wpse_excerpt) { |
|
369 | 369 | global $post; |
370 | 370 | $raw_excerpt = $wpse_excerpt; |
371 | 371 | |
372 | - if ( empty( $wpse_excerpt ) ) { |
|
373 | - $wpse_excerpt = get_the_content( '' ); |
|
374 | - $show_full_content = has_post_format( array( 'aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio' ) ); |
|
372 | + if (empty($wpse_excerpt)) { |
|
373 | + $wpse_excerpt = get_the_content(''); |
|
374 | + $show_full_content = has_post_format(array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio')); |
|
375 | 375 | |
376 | - if ( ! $show_full_content ) { |
|
377 | - $wpse_excerpt = strip_shortcodes( $wpse_excerpt ); |
|
378 | - $wpse_excerpt = apply_filters( 'the_content', $wpse_excerpt ); |
|
379 | - $wpse_excerpt = str_replace( ']]>', ']]>', $wpse_excerpt ); |
|
380 | - $wpse_excerpt = strip_tags( $wpse_excerpt, apply_filters( 'excerpt_strip_tags', '<h1>,<h2>,<h3>,<h4>,<h5>,<h6>,<a>,<button>,<blockquote>,<p>,<br>,<b>,<strong>,<i>,<u>,<ul>,<ol>,<li>,<span>,<div>' ) ); |
|
376 | + if ( ! $show_full_content) { |
|
377 | + $wpse_excerpt = strip_shortcodes($wpse_excerpt); |
|
378 | + $wpse_excerpt = apply_filters('the_content', $wpse_excerpt); |
|
379 | + $wpse_excerpt = str_replace(']]>', ']]>', $wpse_excerpt); |
|
380 | + $wpse_excerpt = strip_tags($wpse_excerpt, apply_filters('excerpt_strip_tags', '<h1>,<h2>,<h3>,<h4>,<h5>,<h6>,<a>,<button>,<blockquote>,<p>,<br>,<b>,<strong>,<i>,<u>,<ul>,<ol>,<li>,<span>,<div>')); |
|
381 | 381 | |
382 | 382 | $excerpt_word_count = 50; |
383 | - $excerpt_word_count = apply_filters( 'excerpt_length', $excerpt_word_count ); |
|
383 | + $excerpt_word_count = apply_filters('excerpt_length', $excerpt_word_count); |
|
384 | 384 | |
385 | 385 | $tokens = array(); |
386 | 386 | $excerpt_output = ''; |
387 | 387 | $has_more = false; |
388 | 388 | $count = 0; |
389 | 389 | |
390 | - preg_match_all( '/(<[^>]+>|[^<>\s]+)\s*/u', $wpse_excerpt, $tokens ); |
|
390 | + preg_match_all('/(<[^>]+>|[^<>\s]+)\s*/u', $wpse_excerpt, $tokens); |
|
391 | 391 | |
392 | - foreach ( $tokens[0] as $token ) { |
|
393 | - if ( $count >= $excerpt_word_count ) { |
|
394 | - $excerpt_output .= trim( $token ); |
|
392 | + foreach ($tokens[0] as $token) { |
|
393 | + if ($count >= $excerpt_word_count) { |
|
394 | + $excerpt_output .= trim($token); |
|
395 | 395 | $has_more = true; |
396 | 396 | break; |
397 | 397 | } |
@@ -400,41 +400,41 @@ discard block |
||
400 | 400 | $excerpt_output .= $token; |
401 | 401 | } |
402 | 402 | |
403 | - $wpse_excerpt = trim( force_balance_tags( $excerpt_output ) ); |
|
403 | + $wpse_excerpt = trim(force_balance_tags($excerpt_output)); |
|
404 | 404 | |
405 | - if ( $has_more ) { |
|
406 | - $excerpt_end = '<a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'More', 'lsx' ) . '</a>'; |
|
407 | - $excerpt_end = apply_filters( 'excerpt_more', ' ' . $excerpt_end ); |
|
405 | + if ($has_more) { |
|
406 | + $excerpt_end = '<a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('More', 'lsx') . '</a>'; |
|
407 | + $excerpt_end = apply_filters('excerpt_more', ' ' . $excerpt_end); |
|
408 | 408 | |
409 | - $pos = strrpos( $wpse_excerpt, '</' ); |
|
409 | + $pos = strrpos($wpse_excerpt, '</'); |
|
410 | 410 | |
411 | - if ( false !== $pos ) { |
|
411 | + if (false !== $pos) { |
|
412 | 412 | // Inside last HTML tag |
413 | - $wpse_excerpt = substr_replace( $wpse_excerpt, $excerpt_end, $pos, 0 ); /* Add read more next to last word */ |
|
413 | + $wpse_excerpt = substr_replace($wpse_excerpt, $excerpt_end, $pos, 0); /* Add read more next to last word */ |
|
414 | 414 | } else { |
415 | 415 | // After the content |
416 | 416 | $wpse_excerpt .= $excerpt_end; /*Add read more in new paragraph */ |
417 | 417 | } |
418 | 418 | } |
419 | 419 | } else { |
420 | - $wpse_excerpt = apply_filters( 'the_content', $wpse_excerpt ); |
|
421 | - $wpse_excerpt = str_replace( ']]>', ']]>', $wpse_excerpt ); |
|
420 | + $wpse_excerpt = apply_filters('the_content', $wpse_excerpt); |
|
421 | + $wpse_excerpt = str_replace(']]>', ']]>', $wpse_excerpt); |
|
422 | 422 | //$wpse_excerpt = strip_tags( $wpse_excerpt, '<blockquote>,<p>' ); |
423 | - $wpse_excerpt = trim( force_balance_tags( $wpse_excerpt ) ); |
|
423 | + $wpse_excerpt = trim(force_balance_tags($wpse_excerpt)); |
|
424 | 424 | } |
425 | 425 | |
426 | 426 | return $wpse_excerpt; |
427 | 427 | } |
428 | 428 | |
429 | - return apply_filters( 'lsx_custom_wp_trim_excerpt', $wpse_excerpt, $raw_excerpt ); |
|
429 | + return apply_filters('lsx_custom_wp_trim_excerpt', $wpse_excerpt, $raw_excerpt); |
|
430 | 430 | } |
431 | 431 | |
432 | 432 | endif; |
433 | 433 | |
434 | -remove_filter( 'get_the_excerpt', 'wp_trim_excerpt' ); |
|
435 | -add_filter( 'get_the_excerpt', 'lsx_custom_wp_trim_excerpt' ); |
|
434 | +remove_filter('get_the_excerpt', 'wp_trim_excerpt'); |
|
435 | +add_filter('get_the_excerpt', 'lsx_custom_wp_trim_excerpt'); |
|
436 | 436 | |
437 | -if ( ! function_exists( 'lsx_full_width_widget_classes' ) ) : |
|
437 | +if ( ! function_exists('lsx_full_width_widget_classes')) : |
|
438 | 438 | |
439 | 439 | /** |
440 | 440 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -442,8 +442,8 @@ discard block |
||
442 | 442 | * @package lsx |
443 | 443 | * @subpackage extras |
444 | 444 | */ |
445 | - function lsx_full_width_widget_classes( $params ) { |
|
446 | - if ( is_admin() ) { |
|
445 | + function lsx_full_width_widget_classes($params) { |
|
446 | + if (is_admin()) { |
|
447 | 447 | return $params; |
448 | 448 | } |
449 | 449 | |
@@ -452,9 +452,9 @@ discard block |
||
452 | 452 | $widget_id = $params[0]['widget_id']; |
453 | 453 | $widget_name = $params[0]['widget_name']; |
454 | 454 | |
455 | - if ( 'Text' === $widget_name ) { |
|
456 | - $wp_registered_widgets[ $widget_id ]['original_callback'] = $wp_registered_widgets[ $widget_id ]['callback']; |
|
457 | - $wp_registered_widgets[ $widget_id ]['callback'] = 'lsx_full_width_widget_custom_callback'; |
|
455 | + if ('Text' === $widget_name) { |
|
456 | + $wp_registered_widgets[$widget_id]['original_callback'] = $wp_registered_widgets[$widget_id]['callback']; |
|
457 | + $wp_registered_widgets[$widget_id]['callback'] = 'lsx_full_width_widget_custom_callback'; |
|
458 | 458 | } |
459 | 459 | |
460 | 460 | return $params; |
@@ -462,9 +462,9 @@ discard block |
||
462 | 462 | |
463 | 463 | endif; |
464 | 464 | |
465 | -add_filter( 'dynamic_sidebar_params', 'lsx_full_width_widget_classes' ); |
|
465 | +add_filter('dynamic_sidebar_params', 'lsx_full_width_widget_classes'); |
|
466 | 466 | |
467 | -if ( ! function_exists( 'lsx_full_width_widget_custom_callback' ) ) : |
|
467 | +if ( ! function_exists('lsx_full_width_widget_custom_callback')) : |
|
468 | 468 | |
469 | 469 | /** |
470 | 470 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -478,25 +478,25 @@ discard block |
||
478 | 478 | $original_callback_params = func_get_args(); |
479 | 479 | $widget_id = $original_callback_params[0]['widget_id']; |
480 | 480 | |
481 | - $original_callback = $wp_registered_widgets[ $widget_id ]['original_callback']; |
|
482 | - $wp_registered_widgets[ $widget_id ]['callback'] = $original_callback; |
|
481 | + $original_callback = $wp_registered_widgets[$widget_id]['original_callback']; |
|
482 | + $wp_registered_widgets[$widget_id]['callback'] = $original_callback; |
|
483 | 483 | |
484 | - $widget_id_base = $wp_registered_widgets[ $widget_id ]['callback'][0]->id_base; |
|
484 | + $widget_id_base = $wp_registered_widgets[$widget_id]['callback'][0]->id_base; |
|
485 | 485 | |
486 | 486 | $widget_classname = ''; |
487 | 487 | |
488 | - if ( is_callable( $original_callback ) ) { |
|
488 | + if (is_callable($original_callback)) { |
|
489 | 489 | ob_start(); |
490 | - call_user_func_array( $original_callback, $original_callback_params ); |
|
490 | + call_user_func_array($original_callback, $original_callback_params); |
|
491 | 491 | $widget_output = ob_get_clean(); |
492 | 492 | |
493 | - echo wp_kses_post( apply_filters( 'lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id ) ); |
|
493 | + echo wp_kses_post(apply_filters('lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id)); |
|
494 | 494 | } |
495 | 495 | } |
496 | 496 | |
497 | 497 | endif; |
498 | 498 | |
499 | -if ( ! function_exists( 'lsx_full_width_widget_output' ) ) : |
|
499 | +if ( ! function_exists('lsx_full_width_widget_output')) : |
|
500 | 500 | |
501 | 501 | /** |
502 | 502 | * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget. |
@@ -504,12 +504,12 @@ discard block |
||
504 | 504 | * @package lsx |
505 | 505 | * @subpackage extras |
506 | 506 | */ |
507 | - function lsx_full_width_widget_output( $widget_output, $widget_id_base, $widget_id ) { |
|
508 | - if ( 'text' === $widget_id_base ) { |
|
509 | - if ( false !== strpos( $widget_output, '<div class="lsx-full-width-alt">' ) ) { |
|
510 | - $widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output ); |
|
511 | - } elseif ( false !== strpos( $widget_output, '<div class="lsx-full-width">' ) ) { |
|
512 | - $widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output ); |
|
507 | + function lsx_full_width_widget_output($widget_output, $widget_id_base, $widget_id) { |
|
508 | + if ('text' === $widget_id_base) { |
|
509 | + if (false !== strpos($widget_output, '<div class="lsx-full-width-alt">')) { |
|
510 | + $widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output); |
|
511 | + } elseif (false !== strpos($widget_output, '<div class="lsx-full-width">')) { |
|
512 | + $widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output); |
|
513 | 513 | } |
514 | 514 | } |
515 | 515 | |
@@ -518,4 +518,4 @@ discard block |
||
518 | 518 | |
519 | 519 | endif; |
520 | 520 | |
521 | -add_filter( 'lsx_widget_output', 'lsx_full_width_widget_output', 10, 3 ); |
|
521 | +add_filter('lsx_widget_output', 'lsx_full_width_widget_output', 10, 3); |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage layout |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! function_exists( 'lsx_wc_support' ) ) : |
|
13 | +if ( ! function_exists('lsx_wc_support')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * WooCommerce support. |
@@ -19,14 +19,14 @@ discard block |
||
19 | 19 | * @subpackage woocommerce |
20 | 20 | */ |
21 | 21 | function lsx_wc_support() { |
22 | - add_theme_support( 'woocommerce' ); |
|
22 | + add_theme_support('woocommerce'); |
|
23 | 23 | } |
24 | 24 | |
25 | - add_action( 'after_setup_theme', 'lsx_wc_support' ); |
|
25 | + add_action('after_setup_theme', 'lsx_wc_support'); |
|
26 | 26 | |
27 | 27 | endif; |
28 | 28 | |
29 | -if ( ! function_exists( 'lsx_wc_scripts_add_styles' ) ) : |
|
29 | +if ( ! function_exists('lsx_wc_scripts_add_styles')) : |
|
30 | 30 | |
31 | 31 | /** |
32 | 32 | * WooCommerce enqueue styles. |
@@ -35,25 +35,25 @@ discard block |
||
35 | 35 | * @subpackage woocommerce |
36 | 36 | */ |
37 | 37 | function lsx_wc_scripts_add_styles() { |
38 | - wp_enqueue_style( 'woocommerce-lsx', get_template_directory_uri() . '/assets/css/woocommerce.css', array( 'lsx_main' ), LSX_VERSION ); |
|
39 | - wp_style_add_data( 'woocommerce-lsx', 'rtl', 'replace' ); |
|
38 | + wp_enqueue_style('woocommerce-lsx', get_template_directory_uri() . '/assets/css/woocommerce.css', array('lsx_main'), LSX_VERSION); |
|
39 | + wp_style_add_data('woocommerce-lsx', 'rtl', 'replace'); |
|
40 | 40 | |
41 | 41 | // Remove select2 added by WooCommerce |
42 | 42 | |
43 | - if ( ! is_admin() ) { |
|
44 | - wp_dequeue_style( 'select2' ); |
|
45 | - wp_deregister_style( 'select2' ); |
|
43 | + if ( ! is_admin()) { |
|
44 | + wp_dequeue_style('select2'); |
|
45 | + wp_deregister_style('select2'); |
|
46 | 46 | |
47 | - wp_dequeue_script( 'select2' ); |
|
48 | - wp_deregister_script( 'select2' ); |
|
47 | + wp_dequeue_script('select2'); |
|
48 | + wp_deregister_script('select2'); |
|
49 | 49 | } |
50 | 50 | } |
51 | 51 | |
52 | - add_action( 'wp_enqueue_scripts', 'lsx_wc_scripts_add_styles' ); |
|
52 | + add_action('wp_enqueue_scripts', 'lsx_wc_scripts_add_styles'); |
|
53 | 53 | |
54 | 54 | endif; |
55 | 55 | |
56 | -if ( ! function_exists( 'lsx_wc_form_field_args' ) ) : |
|
56 | +if ( ! function_exists('lsx_wc_form_field_args')) : |
|
57 | 57 | |
58 | 58 | /** |
59 | 59 | * WooCommerce form fields. |
@@ -61,17 +61,17 @@ discard block |
||
61 | 61 | * @package lsx |
62 | 62 | * @subpackage woocommerce |
63 | 63 | */ |
64 | - function lsx_wc_form_field_args( $args, $key, $value ) { |
|
64 | + function lsx_wc_form_field_args($args, $key, $value) { |
|
65 | 65 | $args['input_class'][] = 'form-control'; |
66 | 66 | |
67 | 67 | return $args; |
68 | 68 | } |
69 | 69 | |
70 | - add_action( 'woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3 ); |
|
70 | + add_action('woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3); |
|
71 | 71 | |
72 | 72 | endif; |
73 | 73 | |
74 | -if ( ! function_exists( 'lsx_wc_theme_wrapper_start' ) ) : |
|
74 | +if ( ! function_exists('lsx_wc_theme_wrapper_start')) : |
|
75 | 75 | |
76 | 76 | /** |
77 | 77 | * WooCommerce wrapper start. |
@@ -87,12 +87,12 @@ discard block |
||
87 | 87 | lsx_content_top(); |
88 | 88 | } |
89 | 89 | |
90 | - remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 ); |
|
91 | - add_action( 'woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start' ); |
|
90 | + remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10); |
|
91 | + add_action('woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start'); |
|
92 | 92 | |
93 | 93 | endif; |
94 | 94 | |
95 | -if ( ! function_exists( 'lsx_wc_theme_wrapper_end' ) ) : |
|
95 | +if ( ! function_exists('lsx_wc_theme_wrapper_end')) : |
|
96 | 96 | |
97 | 97 | /** |
98 | 98 | * WooCommerce wrapper end. |
@@ -108,12 +108,12 @@ discard block |
||
108 | 108 | lsx_content_wrap_after(); |
109 | 109 | } |
110 | 110 | |
111 | - remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 ); |
|
112 | - add_action( 'woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end' ); |
|
111 | + remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10); |
|
112 | + add_action('woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end'); |
|
113 | 113 | |
114 | 114 | endif; |
115 | 115 | |
116 | -if ( ! function_exists( 'lsx_wc_disable_lsx_banner_plugin' ) ) : |
|
116 | +if ( ! function_exists('lsx_wc_disable_lsx_banner_plugin')) : |
|
117 | 117 | |
118 | 118 | /** |
119 | 119 | * Disable LSX Banners plugin in some WC pages. |
@@ -121,19 +121,19 @@ discard block |
||
121 | 121 | * @package lsx |
122 | 122 | * @subpackage woocommerce |
123 | 123 | */ |
124 | - function lsx_wc_disable_lsx_banner_plugin( $disabled ) { |
|
125 | - if ( is_cart() || is_checkout() || is_account_page() ) { |
|
124 | + function lsx_wc_disable_lsx_banner_plugin($disabled) { |
|
125 | + if (is_cart() || is_checkout() || is_account_page()) { |
|
126 | 126 | $disabled = true; |
127 | 127 | } |
128 | 128 | |
129 | 129 | return $disabled; |
130 | 130 | } |
131 | 131 | |
132 | - add_filter( 'lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin' ); |
|
132 | + add_filter('lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin'); |
|
133 | 133 | |
134 | 134 | endif; |
135 | 135 | |
136 | -if ( ! function_exists( 'lsx_wc_disable_lsx_banner' ) ) : |
|
136 | +if ( ! function_exists('lsx_wc_disable_lsx_banner')) : |
|
137 | 137 | |
138 | 138 | /** |
139 | 139 | * Disable LSX Banners banner in some WC pages. |
@@ -141,19 +141,19 @@ discard block |
||
141 | 141 | * @package lsx |
142 | 142 | * @subpackage woocommerce |
143 | 143 | */ |
144 | - function lsx_wc_disable_lsx_banner( $disabled ) { |
|
145 | - if ( is_shop() || is_product_category() || is_product_tag() || is_product() ) { |
|
144 | + function lsx_wc_disable_lsx_banner($disabled) { |
|
145 | + if (is_shop() || is_product_category() || is_product_tag() || is_product()) { |
|
146 | 146 | $disabled = true; |
147 | 147 | } |
148 | 148 | |
149 | 149 | return $disabled; |
150 | 150 | } |
151 | 151 | |
152 | - add_filter( 'lsx_banner_disable', 'lsx_wc_disable_lsx_banner' ); |
|
152 | + add_filter('lsx_banner_disable', 'lsx_wc_disable_lsx_banner'); |
|
153 | 153 | |
154 | 154 | endif; |
155 | 155 | |
156 | -if ( ! function_exists( 'lsx_wc_add_cart' ) ) : |
|
156 | +if ( ! function_exists('lsx_wc_add_cart')) : |
|
157 | 157 | |
158 | 158 | /** |
159 | 159 | * Adds WC cart to the header. |
@@ -161,25 +161,25 @@ discard block |
||
161 | 161 | * @package lsx |
162 | 162 | * @subpackage template-tags |
163 | 163 | */ |
164 | - function lsx_wc_add_cart( $items, $args ) { |
|
165 | - if ( 'primary' === $args->theme_location ) { |
|
166 | - $customizer_option = get_theme_mod( 'lsx_header_wc_cart', false ); |
|
164 | + function lsx_wc_add_cart($items, $args) { |
|
165 | + if ('primary' === $args->theme_location) { |
|
166 | + $customizer_option = get_theme_mod('lsx_header_wc_cart', false); |
|
167 | 167 | |
168 | - if ( ! empty( $customizer_option ) ) { |
|
168 | + if ( ! empty($customizer_option)) { |
|
169 | 169 | ob_start(); |
170 | - the_widget( 'WC_Widget_Cart', 'title=' ); |
|
170 | + the_widget('WC_Widget_Cart', 'title='); |
|
171 | 171 | $widget = ob_get_clean(); |
172 | 172 | |
173 | - if ( is_cart() ) { |
|
173 | + if (is_cart()) { |
|
174 | 174 | $class = 'current-menu-item'; |
175 | 175 | } else { |
176 | 176 | $class = ''; |
177 | 177 | } |
178 | 178 | |
179 | 179 | $item = '<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children dropdown lsx-wc-cart-menu-item ' . $class . '">' . |
180 | - '<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">' . |
|
180 | + '<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">' . |
|
181 | 181 | /* Translators: %s: items quantity */ |
182 | - '<span class="lsx-wc-cart-amount">' . wp_kses_data( WC()->cart->get_cart_subtotal() ) . '</span> <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>' . |
|
182 | + '<span class="lsx-wc-cart-amount">' . wp_kses_data(WC()->cart->get_cart_subtotal()) . '</span> <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>' . |
|
183 | 183 | '</a>' . |
184 | 184 | '<ul role="menu" class=" dropdown-menu lsx-wc-cart-sub-menu">' . |
185 | 185 | '<li>' . |
@@ -195,11 +195,11 @@ discard block |
||
195 | 195 | return $items; |
196 | 196 | } |
197 | 197 | |
198 | - add_filter( 'wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2 ); |
|
198 | + add_filter('wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2); |
|
199 | 199 | |
200 | 200 | endif; |
201 | 201 | |
202 | -if ( ! function_exists( 'lsx_wc_products_widget_wrapper_before' ) ) : |
|
202 | +if ( ! function_exists('lsx_wc_products_widget_wrapper_before')) : |
|
203 | 203 | |
204 | 204 | /** |
205 | 205 | * Change WC products widget wrapper (before). |
@@ -207,16 +207,16 @@ discard block |
||
207 | 207 | * @package lsx |
208 | 208 | * @subpackage woocommerce |
209 | 209 | */ |
210 | - function lsx_wc_products_widget_wrapper_before( $html ) { |
|
210 | + function lsx_wc_products_widget_wrapper_before($html) { |
|
211 | 211 | $html = '<div class="lsx-woocommerce-slider lsx-woocommerce-shortcode">'; |
212 | 212 | return $html; |
213 | 213 | } |
214 | 214 | |
215 | - add_filter( 'woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15 ); |
|
215 | + add_filter('woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15); |
|
216 | 216 | |
217 | 217 | endif; |
218 | 218 | |
219 | -if ( ! function_exists( 'lsx_wc_products_widget_wrapper_after' ) ) : |
|
219 | +if ( ! function_exists('lsx_wc_products_widget_wrapper_after')) : |
|
220 | 220 | |
221 | 221 | /** |
222 | 222 | * Change WC products widget wrapper (after). |
@@ -224,16 +224,16 @@ discard block |
||
224 | 224 | * @package lsx |
225 | 225 | * @subpackage woocommerce |
226 | 226 | */ |
227 | - function lsx_wc_products_widget_wrapper_after( $html ) { |
|
227 | + function lsx_wc_products_widget_wrapper_after($html) { |
|
228 | 228 | $html = '</div>'; |
229 | 229 | return $html; |
230 | 230 | } |
231 | 231 | |
232 | - add_filter( 'woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15 ); |
|
232 | + add_filter('woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15); |
|
233 | 233 | |
234 | 234 | endif; |
235 | 235 | |
236 | -if ( ! function_exists( 'lsx_wc_reviews_widget_override' ) ) : |
|
236 | +if ( ! function_exists('lsx_wc_reviews_widget_override')) : |
|
237 | 237 | |
238 | 238 | /** |
239 | 239 | * Override WC ewviews widget. |
@@ -242,18 +242,18 @@ discard block |
||
242 | 242 | * @subpackage woocommerce |
243 | 243 | */ |
244 | 244 | function lsx_wc_reviews_widget_override() { |
245 | - if ( class_exists( 'WC_Widget_Recent_Reviews' ) ) { |
|
246 | - unregister_widget( 'WC_Widget_Recent_Reviews' ); |
|
245 | + if (class_exists('WC_Widget_Recent_Reviews')) { |
|
246 | + unregister_widget('WC_Widget_Recent_Reviews'); |
|
247 | 247 | require get_template_directory() . '/includes/classes/class-lsx-wc-widget-recent-reviews.php'; |
248 | - register_widget( 'LSX_WC_Widget_Recent_Reviews' ); |
|
248 | + register_widget('LSX_WC_Widget_Recent_Reviews'); |
|
249 | 249 | } |
250 | 250 | } |
251 | 251 | |
252 | - add_action( 'widgets_init', 'lsx_wc_reviews_widget_override', 15 ); |
|
252 | + add_action('widgets_init', 'lsx_wc_reviews_widget_override', 15); |
|
253 | 253 | |
254 | 254 | endif; |
255 | 255 | |
256 | -if ( ! function_exists( 'lsx_wc_change_price_html' ) ) : |
|
256 | +if ( ! function_exists('lsx_wc_change_price_html')) : |
|
257 | 257 | |
258 | 258 | /** |
259 | 259 | * Change WC ZERO price to "free". |
@@ -261,28 +261,28 @@ discard block |
||
261 | 261 | * @package lsx |
262 | 262 | * @subpackage woocommerce |
263 | 263 | */ |
264 | - function lsx_wc_change_price_html( $price, $product ) { |
|
265 | - if ( empty( $product->get_price() ) ) { |
|
266 | - if ( $product->is_on_sale() && $product->get_regular_price() ) { |
|
267 | - $regular_price = wc_get_price_to_display( $product, array( |
|
264 | + function lsx_wc_change_price_html($price, $product) { |
|
265 | + if (empty($product->get_price())) { |
|
266 | + if ($product->is_on_sale() && $product->get_regular_price()) { |
|
267 | + $regular_price = wc_get_price_to_display($product, array( |
|
268 | 268 | 'qty' => 1, |
269 | 269 | 'price' => $product->get_regular_price(), |
270 | - ) ); |
|
270 | + )); |
|
271 | 271 | |
272 | - $price = wc_format_price_range( $regular_price, esc_html__( 'Free!', 'lsx' ) ); |
|
272 | + $price = wc_format_price_range($regular_price, esc_html__('Free!', 'lsx')); |
|
273 | 273 | } else { |
274 | - $price = '<span class="amount">' . esc_html__( 'Free!', 'lsx' ) . '</span>'; |
|
274 | + $price = '<span class="amount">' . esc_html__('Free!', 'lsx') . '</span>'; |
|
275 | 275 | } |
276 | 276 | } |
277 | 277 | |
278 | 278 | return $price; |
279 | 279 | } |
280 | 280 | |
281 | - add_filter( 'woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2 ); |
|
281 | + add_filter('woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2); |
|
282 | 282 | |
283 | 283 | endif; |
284 | 284 | |
285 | -if ( ! function_exists( 'lsx_wc_cart_link_fragment' ) ) : |
|
285 | +if ( ! function_exists('lsx_wc_cart_link_fragment')) : |
|
286 | 286 | |
287 | 287 | /** |
288 | 288 | * Cart Fragments. |
@@ -291,7 +291,7 @@ discard block |
||
291 | 291 | * @package lsx |
292 | 292 | * @subpackage woocommerce |
293 | 293 | */ |
294 | - function lsx_wc_cart_link_fragment( $fragments ) { |
|
294 | + function lsx_wc_cart_link_fragment($fragments) { |
|
295 | 295 | global $woocommerce; |
296 | 296 | |
297 | 297 | ob_start(); |
@@ -303,7 +303,7 @@ discard block |
||
303 | 303 | |
304 | 304 | endif; |
305 | 305 | |
306 | -if ( ! function_exists( 'lsx_wc_cart_link' ) ) : |
|
306 | +if ( ! function_exists('lsx_wc_cart_link')) : |
|
307 | 307 | |
308 | 308 | /** |
309 | 309 | * Cart Link. |
@@ -314,16 +314,16 @@ discard block |
||
314 | 314 | */ |
315 | 315 | function lsx_wc_cart_link() { |
316 | 316 | ?> |
317 | - <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"> |
|
317 | + <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"> |
|
318 | 318 | <?php /* Translators: %s: items quantity */ ?> |
319 | - <span class="lsx-wc-cart-amount"><?php echo wp_kses_data( WC()->cart->get_cart_subtotal() ); ?></span> <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> |
|
319 | + <span class="lsx-wc-cart-amount"><?php echo wp_kses_data(WC()->cart->get_cart_subtotal()); ?></span> <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> |
|
320 | 320 | </a> |
321 | 321 | <?php |
322 | 322 | } |
323 | 323 | |
324 | 324 | endif; |
325 | 325 | |
326 | -if ( ! function_exists( 'lsx_wc_loop_shop_per_page' ) ) : |
|
326 | +if ( ! function_exists('lsx_wc_loop_shop_per_page')) : |
|
327 | 327 | |
328 | 328 | /** |
329 | 329 | * Changes the number of products to display on shop. |
@@ -331,16 +331,16 @@ discard block |
||
331 | 331 | * @package lsx |
332 | 332 | * @subpackage woocommerce |
333 | 333 | */ |
334 | - function lsx_wc_loop_shop_per_page( $items ) { |
|
334 | + function lsx_wc_loop_shop_per_page($items) { |
|
335 | 335 | $items = 20; |
336 | 336 | return $items; |
337 | 337 | } |
338 | 338 | |
339 | - add_filter( 'loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20 ); |
|
339 | + add_filter('loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20); |
|
340 | 340 | |
341 | 341 | endif; |
342 | 342 | |
343 | -if ( ! function_exists( 'lsx_wc_add_to_cart_message_html' ) ) : |
|
343 | +if ( ! function_exists('lsx_wc_add_to_cart_message_html')) : |
|
344 | 344 | |
345 | 345 | /** |
346 | 346 | * Changes the "added to cart" message HTML. |
@@ -348,39 +348,39 @@ discard block |
||
348 | 348 | * @package lsx |
349 | 349 | * @subpackage woocommerce |
350 | 350 | */ |
351 | - function lsx_wc_add_to_cart_message_html( $message, $products ) { |
|
351 | + function lsx_wc_add_to_cart_message_html($message, $products) { |
|
352 | 352 | $message = '<div class="woocommerce-message-added-to-cart">' . $message . '</div>'; |
353 | 353 | return $message; |
354 | 354 | } |
355 | 355 | |
356 | - add_filter( 'wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2 ); |
|
356 | + add_filter('wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2); |
|
357 | 357 | |
358 | 358 | endif; |
359 | 359 | |
360 | -if ( defined( 'WC_VERSION' ) && version_compare( WC_VERSION, '2.3', '>=' ) ) { |
|
361 | - add_filter( 'woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment' ); |
|
360 | +if (defined('WC_VERSION') && version_compare(WC_VERSION, '2.3', '>=')) { |
|
361 | + add_filter('woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment'); |
|
362 | 362 | } else { |
363 | - add_filter( 'add_to_cart_fragments', 'lsx_wc_cart_link_fragment' ); |
|
363 | + add_filter('add_to_cart_fragments', 'lsx_wc_cart_link_fragment'); |
|
364 | 364 | } |
365 | 365 | |
366 | -remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 ); |
|
366 | +remove_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 10); |
|
367 | 367 | |
368 | -add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9 ); |
|
369 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10 ); |
|
370 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_result_count', 20 ); |
|
371 | -add_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 30 ); |
|
372 | -add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 ); |
|
368 | +add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9); |
|
369 | +add_action('woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10); |
|
370 | +add_action('woocommerce_after_shop_loop', 'woocommerce_result_count', 20); |
|
371 | +add_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 30); |
|
372 | +add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31); |
|
373 | 373 | |
374 | -remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); |
|
375 | -remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 ); |
|
374 | +remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20); |
|
375 | +remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30); |
|
376 | 376 | |
377 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9 ); |
|
378 | -add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10 ); |
|
379 | -add_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); |
|
380 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30 ); |
|
381 | -add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 ); |
|
377 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9); |
|
378 | +add_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10); |
|
379 | +add_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20); |
|
380 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30); |
|
381 | +add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31); |
|
382 | 382 | |
383 | -if ( ! function_exists( 'lsx_wc_sorting_wrapper' ) ) : |
|
383 | +if ( ! function_exists('lsx_wc_sorting_wrapper')) : |
|
384 | 384 | |
385 | 385 | /** |
386 | 386 | * Sorting wrapper. |
@@ -394,7 +394,7 @@ discard block |
||
394 | 394 | |
395 | 395 | endif; |
396 | 396 | |
397 | -if ( ! function_exists( 'lsx_wc_sorting_wrapper_close' ) ) : |
|
397 | +if ( ! function_exists('lsx_wc_sorting_wrapper_close')) : |
|
398 | 398 | |
399 | 399 | /** |
400 | 400 | * Sorting wrapper close. |
@@ -408,7 +408,7 @@ discard block |
||
408 | 408 | |
409 | 409 | endif; |
410 | 410 | |
411 | -if ( ! function_exists( 'lsx_wc_product_columns_wrapper_close' ) ) : |
|
411 | +if ( ! function_exists('lsx_wc_product_columns_wrapper_close')) : |
|
412 | 412 | |
413 | 413 | /** |
414 | 414 | * Product columns wrapper close. |
@@ -422,7 +422,7 @@ discard block |
||
422 | 422 | |
423 | 423 | endif; |
424 | 424 | |
425 | -if ( ! function_exists( 'lsx_wc_woocommerce_pagination' ) ) : |
|
425 | +if ( ! function_exists('lsx_wc_woocommerce_pagination')) : |
|
426 | 426 | |
427 | 427 | /** |
428 | 428 | * LSX WooCommerce Pagination |
@@ -434,7 +434,7 @@ discard block |
||
434 | 434 | * @subpackage woocommerce |
435 | 435 | */ |
436 | 436 | function lsx_wc_woocommerce_pagination() { |
437 | - if ( woocommerce_products_will_display() ) { |
|
437 | + if (woocommerce_products_will_display()) { |
|
438 | 438 | woocommerce_pagination(); |
439 | 439 | } |
440 | 440 | } |
@@ -10,28 +10,28 @@ discard block |
||
10 | 10 | <div class="row"> |
11 | 11 | <div class="col-md-12"> |
12 | 12 | <div class="box enhance"> |
13 | - <h2><?php esc_html_e( 'Enhance LSX', 'lsx' ); ?></h2> |
|
14 | - <p><?php esc_html_e( 'Take a look at our range of extensions that add to the already rich functionality of the LSX WordPress theme.', 'lsx' ); ?></p> |
|
13 | + <h2><?php esc_html_e('Enhance LSX', 'lsx'); ?></h2> |
|
14 | + <p><?php esc_html_e('Take a look at our range of extensions that add to the already rich functionality of the LSX WordPress theme.', 'lsx'); ?></p> |
|
15 | 15 | |
16 | 16 | <div class="row"> |
17 | 17 | <div class="col-md-4"> |
18 | 18 | <div class="box-clean"> |
19 | - <a href="https://www.lsdev.biz/product/lsx-banners/" target="_blank"><?php esc_html_e( 'Banners', 'lsx' ); ?> - <span class="price">Price from $39.00</span></a> |
|
20 | - <p><?php esc_html_e( 'The LSX Banners extension adds advanced banner configuration options to your WordPress site running LSX theme.', 'lsx' ); ?></p> |
|
19 | + <a href="https://www.lsdev.biz/product/lsx-banners/" target="_blank"><?php esc_html_e('Banners', 'lsx'); ?> - <span class="price">Price from $39.00</span></a> |
|
20 | + <p><?php esc_html_e('The LSX Banners extension adds advanced banner configuration options to your WordPress site running LSX theme.', 'lsx'); ?></p> |
|
21 | 21 | </div> |
22 | 22 | </div> |
23 | 23 | |
24 | 24 | <div class="col-md-4"> |
25 | 25 | <div class="box-clean"> |
26 | - <a href="https://www.lsdev.biz/product/lsx-currencies/" target="_blank"><?php esc_html_e( 'Currencies', 'lsx' ); ?> - <span class="price">Price from $29.00</span></a> |
|
27 | - <p><?php esc_html_e( 'The LSX Currencies extension adds currency selection functionality to sites, allowing users to view your products in whatever currencies you choose to sell in.', 'lsx' ); ?></p> |
|
26 | + <a href="https://www.lsdev.biz/product/lsx-currencies/" target="_blank"><?php esc_html_e('Currencies', 'lsx'); ?> - <span class="price">Price from $29.00</span></a> |
|
27 | + <p><?php esc_html_e('The LSX Currencies extension adds currency selection functionality to sites, allowing users to view your products in whatever currencies you choose to sell in.', 'lsx'); ?></p> |
|
28 | 28 | </div> |
29 | 29 | </div> |
30 | 30 | |
31 | 31 | <div class="col-md-4"> |
32 | 32 | <div class="box-clean"> |
33 | - <a href="https://www.lsdev.biz/product/lsx-blog-customizer/" target="_blank"><?php esc_html_e( 'Blog Customizer', 'lsx' ); ?> - <span class="price">Price from $29.00</span></a> |
|
34 | - <p><?php esc_html_e( 'It allows you it to customize various aspects of the the appearance of your blog, posts widgets, archive pages and single posts so they looks exactly how you want.', 'lsx' ); ?></p> |
|
33 | + <a href="https://www.lsdev.biz/product/lsx-blog-customizer/" target="_blank"><?php esc_html_e('Blog Customizer', 'lsx'); ?> - <span class="price">Price from $29.00</span></a> |
|
34 | + <p><?php esc_html_e('It allows you it to customize various aspects of the the appearance of your blog, posts widgets, archive pages and single posts so they looks exactly how you want.', 'lsx'); ?></p> |
|
35 | 35 | </div> |
36 | 36 | </div> |
37 | 37 | </div> |
@@ -39,22 +39,22 @@ discard block |
||
39 | 39 | <div class="row"> |
40 | 40 | <div class="col-md-4"> |
41 | 41 | <div class="box-clean"> |
42 | - <a href="https://www.lsdev.biz/product/lsx-customizer/" target="_blank"><?php esc_html_e( 'Customizer', 'lsx' ); ?> - <span class="price">Price from $49.00</span></a> |
|
43 | - <p><?php esc_html_e( 'You\'ve installed LSX, so now why not make it all yours? Whether it\'s a small CSS tweak or changing the entire layout of pages, posts or archives, please make use of the Theme Customizer plugin.', 'lsx' ); ?></p> |
|
42 | + <a href="https://www.lsdev.biz/product/lsx-customizer/" target="_blank"><?php esc_html_e('Customizer', 'lsx'); ?> - <span class="price">Price from $49.00</span></a> |
|
43 | + <p><?php esc_html_e('You\'ve installed LSX, so now why not make it all yours? Whether it\'s a small CSS tweak or changing the entire layout of pages, posts or archives, please make use of the Theme Customizer plugin.', 'lsx'); ?></p> |
|
44 | 44 | </div> |
45 | 45 | </div> |
46 | 46 | |
47 | 47 | <div class="col-md-4"> |
48 | 48 | <div class="box-clean"> |
49 | - <a href="https://www.lsdev.biz/product/lsx-login/" target="_blank"><?php esc_html_e( 'Login', 'lsx' ); ?> - <span class="price">Price from $39.00</span></a> |
|
50 | - <p><?php esc_html_e( 'The LSX Login extension allows users to log into a dashboard and then see configurable content based on which users can access which content.', 'lsx' ); ?></p> |
|
49 | + <a href="https://www.lsdev.biz/product/lsx-login/" target="_blank"><?php esc_html_e('Login', 'lsx'); ?> - <span class="price">Price from $39.00</span></a> |
|
50 | + <p><?php esc_html_e('The LSX Login extension allows users to log into a dashboard and then see configurable content based on which users can access which content.', 'lsx'); ?></p> |
|
51 | 51 | </div> |
52 | 52 | </div> |
53 | 53 | |
54 | 54 | <div class="col-md-4"> |
55 | 55 | <div class="box-clean"> |
56 | - <a href="https://www.lsdev.biz/product/lsx-mega-menus/" target="_blank"><?php esc_html_e( 'Mega Menus', 'lsx' ); ?> - <span class="price">Price from $39.00</span></a> |
|
57 | - <p><?php esc_html_e( 'Create custom, full-width dropdown menus that contain images, widgets and more that seamlessly tie into your LSX WordPress site.', 'lsx' ); ?></p> |
|
56 | + <a href="https://www.lsdev.biz/product/lsx-mega-menus/" target="_blank"><?php esc_html_e('Mega Menus', 'lsx'); ?> - <span class="price">Price from $39.00</span></a> |
|
57 | + <p><?php esc_html_e('Create custom, full-width dropdown menus that contain images, widgets and more that seamlessly tie into your LSX WordPress site.', 'lsx'); ?></p> |
|
58 | 58 | </div> |
59 | 59 | </div> |
60 | 60 | </div> |
@@ -62,22 +62,22 @@ discard block |
||
62 | 62 | <div class="row"> |
63 | 63 | <div class="col-md-4"> |
64 | 64 | <div class="box-clean"> |
65 | - <a href="https://www.lsdev.biz/product/lsx-team/" target="_blank"><?php esc_html_e( 'Team', 'lsx' ); ?> - <span class="price">Price from $29.00</span></a> |
|
66 | - <p><?php esc_html_e( 'The LSX Team Extension provides a custom post type that allows you to easily show off the people that make up your business.', 'lsx' ); ?></p> |
|
65 | + <a href="https://www.lsdev.biz/product/lsx-team/" target="_blank"><?php esc_html_e('Team', 'lsx'); ?> - <span class="price">Price from $29.00</span></a> |
|
66 | + <p><?php esc_html_e('The LSX Team Extension provides a custom post type that allows you to easily show off the people that make up your business.', 'lsx'); ?></p> |
|
67 | 67 | </div> |
68 | 68 | </div> |
69 | 69 | |
70 | 70 | <div class="col-md-4"> |
71 | 71 | <div class="box-clean"> |
72 | - <a href="https://www.lsdev.biz/product/lsx-testimonials/" target="_blank"><?php esc_html_e( 'Testimonials', 'lsx' ); ?> - <span class="price">Price from $29.00</span></a> |
|
73 | - <p><?php esc_html_e( 'The LSX Testimonials extension adds the "Testimonials" post type, which you can display front-and-centre on your site.', 'lsx' ); ?></p> |
|
72 | + <a href="https://www.lsdev.biz/product/lsx-testimonials/" target="_blank"><?php esc_html_e('Testimonials', 'lsx'); ?> - <span class="price">Price from $29.00</span></a> |
|
73 | + <p><?php esc_html_e('The LSX Testimonials extension adds the "Testimonials" post type, which you can display front-and-centre on your site.', 'lsx'); ?></p> |
|
74 | 74 | </div> |
75 | 75 | </div> |
76 | 76 | |
77 | 77 | <div class="col-md-4"> |
78 | 78 | <div class="box-clean"> |
79 | - <a href="https://www.lsdev.biz/product/lsx-geo-content/" target="_blank"><?php esc_html_e( 'Geo Content', 'lsx' ); ?> - <span class="price">Price from $59.00</span></a> |
|
80 | - <p><?php esc_html_e( 'LSX Geo Content allows you to serve different content to users based on their automatically-detected IP address.', 'lsx' ); ?></p> |
|
79 | + <a href="https://www.lsdev.biz/product/lsx-geo-content/" target="_blank"><?php esc_html_e('Geo Content', 'lsx'); ?> - <span class="price">Price from $59.00</span></a> |
|
80 | + <p><?php esc_html_e('LSX Geo Content allows you to serve different content to users based on their automatically-detected IP address.', 'lsx'); ?></p> |
|
81 | 81 | </div> |
82 | 82 | </div> |
83 | 83 | </div> |
@@ -85,41 +85,41 @@ discard block |
||
85 | 85 | <div class="row"> |
86 | 86 | <div class="col-md-4"> |
87 | 87 | <div class="box-clean"> |
88 | - <a href="https://www.lsdev.biz/product/lsx-services/" target="_blank"><?php esc_html_e( 'Services', 'lsx' ); ?> - <span class="price">Price from $29.00</span></a> |
|
89 | - <p><?php esc_html_e( 'Adds the "Service" post type to your LSX website which allows you to display and categorize the services your business provides.', 'lsx' ); ?></p> |
|
88 | + <a href="https://www.lsdev.biz/product/lsx-services/" target="_blank"><?php esc_html_e('Services', 'lsx'); ?> - <span class="price">Price from $29.00</span></a> |
|
89 | + <p><?php esc_html_e('Adds the "Service" post type to your LSX website which allows you to display and categorize the services your business provides.', 'lsx'); ?></p> |
|
90 | 90 | </div> |
91 | 91 | </div> |
92 | 92 | |
93 | 93 | <div class="col-md-4"> |
94 | 94 | <div class="box-clean"> |
95 | - <a href="https://www.lsdev.biz/product/lsx-projects/" target="_blank"><?php esc_html_e( 'Projects', 'lsx' ); ?> - <span class="price">Price from $29.00</span></a> |
|
96 | - <p><?php esc_html_e( 'Show off your finest work with the LSX Projects Extension! It adds a "Project" post type, allowing you to categorize and display your Projects on your LSX website.', 'lsx' ); ?></p> |
|
95 | + <a href="https://www.lsdev.biz/product/lsx-projects/" target="_blank"><?php esc_html_e('Projects', 'lsx'); ?> - <span class="price">Price from $29.00</span></a> |
|
96 | + <p><?php esc_html_e('Show off your finest work with the LSX Projects Extension! It adds a "Project" post type, allowing you to categorize and display your Projects on your LSX website.', 'lsx'); ?></p> |
|
97 | 97 | </div> |
98 | 98 | </div> |
99 | 99 | |
100 | 100 | <div class="col-md-4"> |
101 | 101 | <div class="box-clean"> |
102 | - <a href="https://www.lsdev.biz/product/lsx-sharing/" target="_blank"><?php esc_html_e( 'Sharing', 'lsx' ); ?> - <span class="price">Price from $29.00</span></a> |
|
103 | - <p><?php esc_html_e( 'LSX Sharing adds buttons to your posts that your readers can use to share your content on Facebook, Twitter and Pinterest.', 'lsx' ); ?></p> |
|
102 | + <a href="https://www.lsdev.biz/product/lsx-sharing/" target="_blank"><?php esc_html_e('Sharing', 'lsx'); ?> - <span class="price">Price from $29.00</span></a> |
|
103 | + <p><?php esc_html_e('LSX Sharing adds buttons to your posts that your readers can use to share your content on Facebook, Twitter and Pinterest.', 'lsx'); ?></p> |
|
104 | 104 | </div> |
105 | 105 | </div> |
106 | 106 | </div> |
107 | 107 | |
108 | - <h2><?php esc_html_e( 'LSX extensions bundles', 'lsx' ); ?></h2> |
|
109 | - <p><?php esc_html_e( 'We\'ve created two bundles to help you to get the most out of LSX Theme.', 'lsx' ); ?></p> |
|
108 | + <h2><?php esc_html_e('LSX extensions bundles', 'lsx'); ?></h2> |
|
109 | + <p><?php esc_html_e('We\'ve created two bundles to help you to get the most out of LSX Theme.', 'lsx'); ?></p> |
|
110 | 110 | |
111 | 111 | <div class="row"> |
112 | 112 | <div class="col-md-4"> |
113 | 113 | <div class="box-clean"> |
114 | - <a href="https://www.lsdev.biz/product/lsx-essentials-bundle/" target="_blank"><?php esc_html_e( 'LSX Essentials', 'lsx' ); ?> - <span class="price">Price from $99.00</span></a> |
|
115 | - <p><?php esc_html_e( 'A collection of essential LSX extensions giving you more functionality, additional content types and greater control over the styling of your theme.', 'lsx' ); ?></p> |
|
114 | + <a href="https://www.lsdev.biz/product/lsx-essentials-bundle/" target="_blank"><?php esc_html_e('LSX Essentials', 'lsx'); ?> - <span class="price">Price from $99.00</span></a> |
|
115 | + <p><?php esc_html_e('A collection of essential LSX extensions giving you more functionality, additional content types and greater control over the styling of your theme.', 'lsx'); ?></p> |
|
116 | 116 | </div> |
117 | 117 | </div> |
118 | 118 | |
119 | 119 | <div class="col-md-4"> |
120 | 120 | <div class="box-clean"> |
121 | - <a href="https://www.lsdev.biz/product/lsx-complete-bundle/" target="_blank"><?php esc_html_e( 'LSX Complete', 'lsx' ); ?> - <span class="price">Price from $199.00</span></a> |
|
122 | - <p><?php esc_html_e( 'A full set of LSX extensions giving you all the functionality, content types and customization tools you may need!', 'lsx' ); ?></p> |
|
121 | + <a href="https://www.lsdev.biz/product/lsx-complete-bundle/" target="_blank"><?php esc_html_e('LSX Complete', 'lsx'); ?> - <span class="price">Price from $199.00</span></a> |
|
122 | + <p><?php esc_html_e('A full set of LSX extensions giving you all the functionality, content types and customization tools you may need!', 'lsx'); ?></p> |
|
123 | 123 | </div> |
124 | 124 | </div> |
125 | 125 | </div> |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage welcome-page |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! function_exists( 'lsx_activation_admin_notice_dismiss' ) ) : |
|
13 | +if ( ! function_exists('lsx_activation_admin_notice_dismiss')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Dismiss the admin notice (successful activation). |
@@ -19,15 +19,15 @@ discard block |
||
19 | 19 | * @subpackage welcome-page |
20 | 20 | */ |
21 | 21 | function lsx_activation_admin_notice_dismiss() { |
22 | - update_option( 'lsx-notice-dismissed', '1' ); |
|
22 | + update_option('lsx-notice-dismissed', '1'); |
|
23 | 23 | wp_die(); |
24 | 24 | } |
25 | 25 | |
26 | 26 | endif; |
27 | 27 | |
28 | -add_action( 'wp_ajax_lsx_dismiss_theme_notice', 'lsx_activation_admin_notice_dismiss' ); |
|
28 | +add_action('wp_ajax_lsx_dismiss_theme_notice', 'lsx_activation_admin_notice_dismiss'); |
|
29 | 29 | |
30 | -if ( ! function_exists( 'lsx_activation_admin_notice' ) ) : |
|
30 | +if ( ! function_exists('lsx_activation_admin_notice')) : |
|
31 | 31 | |
32 | 32 | /** |
33 | 33 | * Adds an admin notice upon successful activation. |
@@ -36,16 +36,16 @@ discard block |
||
36 | 36 | * @subpackage welcome-page |
37 | 37 | */ |
38 | 38 | function lsx_activation_admin_notice() { |
39 | - if ( empty( get_option( 'lsx-notice-dismissed' ) ) ) { |
|
40 | - add_action( 'admin_notices', 'lsx_welcome_admin_notice', 99 ); |
|
39 | + if (empty(get_option('lsx-notice-dismissed'))) { |
|
40 | + add_action('admin_notices', 'lsx_welcome_admin_notice', 99); |
|
41 | 41 | } |
42 | 42 | } |
43 | 43 | |
44 | 44 | endif; |
45 | 45 | |
46 | -add_action( 'admin_notices', 'lsx_activation_admin_notice' ); |
|
46 | +add_action('admin_notices', 'lsx_activation_admin_notice'); |
|
47 | 47 | |
48 | -if ( ! function_exists( 'lsx_welcome_admin_notice' ) ) : |
|
48 | +if ( ! function_exists('lsx_welcome_admin_notice')) : |
|
49 | 49 | |
50 | 50 | /** |
51 | 51 | * Display an admin notice linking to the welcome screen. |
@@ -60,20 +60,20 @@ discard block |
||
60 | 60 | <?php |
61 | 61 | printf( |
62 | 62 | /* Translators: 1: HTML open tag link, 2: HTML close tag link */ |
63 | - esc_html__( 'Thanks for choosing LSX! You can read hints and tips on how get the most out of your new theme on the %1$swelcome screen%2$s.', 'lsx' ), |
|
64 | - '<a href="' . esc_url( admin_url( 'themes.php?page=lsx-welcome' ) ) . '">', |
|
63 | + esc_html__('Thanks for choosing LSX! You can read hints and tips on how get the most out of your new theme on the %1$swelcome screen%2$s.', 'lsx'), |
|
64 | + '<a href="' . esc_url(admin_url('themes.php?page=lsx-welcome')) . '">', |
|
65 | 65 | '</a>' |
66 | 66 | ); |
67 | 67 | ?> |
68 | 68 | </p> |
69 | - <p><a href="<?php echo esc_url( admin_url( 'themes.php?page=lsx-welcome' ) ); ?>" class="button" style="text-decoration: none;"><?php esc_attr_e( 'Get started with LSX', 'lsx' ); ?></a></p> |
|
69 | + <p><a href="<?php echo esc_url(admin_url('themes.php?page=lsx-welcome')); ?>" class="button" style="text-decoration: none;"><?php esc_attr_e('Get started with LSX', 'lsx'); ?></a></p> |
|
70 | 70 | </div> |
71 | 71 | <?php |
72 | 72 | } |
73 | 73 | |
74 | 74 | endif; |
75 | 75 | |
76 | -if ( ! function_exists( 'lsx_welcome_style' ) ) : |
|
76 | +if ( ! function_exists('lsx_welcome_style')) : |
|
77 | 77 | |
78 | 78 | /** |
79 | 79 | * Load welcome screen css. |
@@ -83,19 +83,19 @@ discard block |
||
83 | 83 | * |
84 | 84 | * @param string $hook_suffix the current page hook suffix. |
85 | 85 | */ |
86 | - function lsx_welcome_style( $hook_suffix ) { |
|
87 | - if ( 'appearance_page_lsx-welcome' === $hook_suffix ) { |
|
88 | - wp_enqueue_style( 'lsx-welcome-screen-mailchimp', '//cdn-images.mailchimp.com/embedcode/classic-10_7.css', array(), LSX_VERSION ); |
|
89 | - wp_enqueue_style( 'lsx-welcome-screen', get_template_directory_uri() . '/assets/css/admin/welcome.css', array( 'lsx-welcome-screen-mailchimp' ), LSX_VERSION ); |
|
90 | - wp_style_add_data( 'lsx-welcome-screen', 'rtl', 'replace' ); |
|
86 | + function lsx_welcome_style($hook_suffix) { |
|
87 | + if ('appearance_page_lsx-welcome' === $hook_suffix) { |
|
88 | + wp_enqueue_style('lsx-welcome-screen-mailchimp', '//cdn-images.mailchimp.com/embedcode/classic-10_7.css', array(), LSX_VERSION); |
|
89 | + wp_enqueue_style('lsx-welcome-screen', get_template_directory_uri() . '/assets/css/admin/welcome.css', array('lsx-welcome-screen-mailchimp'), LSX_VERSION); |
|
90 | + wp_style_add_data('lsx-welcome-screen', 'rtl', 'replace'); |
|
91 | 91 | } |
92 | 92 | } |
93 | 93 | |
94 | 94 | endif; |
95 | 95 | |
96 | -add_action( 'admin_enqueue_scripts', 'lsx_welcome_style' ); |
|
96 | +add_action('admin_enqueue_scripts', 'lsx_welcome_style'); |
|
97 | 97 | |
98 | -if ( ! function_exists( 'lsx_welcome_register_menu' ) ) : |
|
98 | +if ( ! function_exists('lsx_welcome_register_menu')) : |
|
99 | 99 | |
100 | 100 | /** |
101 | 101 | * Creates the dashboard page. |
@@ -104,14 +104,14 @@ discard block |
||
104 | 104 | * @subpackage welcome-page |
105 | 105 | */ |
106 | 106 | function lsx_welcome_register_menu() { |
107 | - add_theme_page( 'LSX', 'LSX', 'activate_plugins', 'lsx-welcome', 'lsx_welcome_screen' ); |
|
107 | + add_theme_page('LSX', 'LSX', 'activate_plugins', 'lsx-welcome', 'lsx_welcome_screen'); |
|
108 | 108 | } |
109 | 109 | |
110 | 110 | endif; |
111 | 111 | |
112 | -add_action( 'admin_menu', 'lsx_welcome_register_menu' ); |
|
112 | +add_action('admin_menu', 'lsx_welcome_register_menu'); |
|
113 | 113 | |
114 | -if ( ! function_exists( 'lsx_welcome_screen' ) ) : |
|
114 | +if ( ! function_exists('lsx_welcome_screen')) : |
|
115 | 115 | |
116 | 116 | /** |
117 | 117 | * The welcome screen. |
@@ -120,9 +120,9 @@ discard block |
||
120 | 120 | * @subpackage welcome-page |
121 | 121 | */ |
122 | 122 | function lsx_welcome_screen() { |
123 | - require_once( ABSPATH . 'wp-load.php' ); |
|
124 | - require_once( ABSPATH . 'wp-admin/admin.php' ); |
|
125 | - require_once( ABSPATH . 'wp-admin/admin-header.php' ); |
|
123 | + require_once(ABSPATH . 'wp-load.php'); |
|
124 | + require_once(ABSPATH . 'wp-admin/admin.php'); |
|
125 | + require_once(ABSPATH . 'wp-admin/admin-header.php'); |
|
126 | 126 | ?> |
127 | 127 | <div class="wrap about-wrap"> |
128 | 128 | <?php |
@@ -133,14 +133,14 @@ discard block |
||
133 | 133 | * @hooked lsx_welcome_enhance - 20 |
134 | 134 | * @hooked lsx_welcome_footer - 30 |
135 | 135 | */ |
136 | - do_action( 'lsx_welcome' ); ?> |
|
136 | + do_action('lsx_welcome'); ?> |
|
137 | 137 | </div> |
138 | 138 | <?php |
139 | 139 | } |
140 | 140 | |
141 | 141 | endif; |
142 | 142 | |
143 | -if ( ! function_exists( 'lsx_welcome_header' ) ) : |
|
143 | +if ( ! function_exists('lsx_welcome_header')) : |
|
144 | 144 | |
145 | 145 | /** |
146 | 146 | * Welcome screen intro. |
@@ -149,14 +149,14 @@ discard block |
||
149 | 149 | * @subpackage welcome-page |
150 | 150 | */ |
151 | 151 | function lsx_welcome_header() { |
152 | - require_once( get_template_directory() . '/includes/admin/welcome-screen/component-header.php' ); |
|
152 | + require_once(get_template_directory() . '/includes/admin/welcome-screen/component-header.php'); |
|
153 | 153 | } |
154 | 154 | |
155 | 155 | endif; |
156 | 156 | |
157 | -add_action( 'lsx_welcome', 'lsx_welcome_header', 10 ); |
|
157 | +add_action('lsx_welcome', 'lsx_welcome_header', 10); |
|
158 | 158 | |
159 | -if ( ! function_exists( 'lsx_welcome_enhance' ) ) : |
|
159 | +if ( ! function_exists('lsx_welcome_enhance')) : |
|
160 | 160 | |
161 | 161 | /** |
162 | 162 | * Welcome screen enhance section. |
@@ -165,14 +165,14 @@ discard block |
||
165 | 165 | * @subpackage welcome-page |
166 | 166 | */ |
167 | 167 | function lsx_welcome_enhance() { |
168 | - require_once( get_template_directory() . '/includes/admin/welcome-screen/component-enhance.php' ); |
|
168 | + require_once(get_template_directory() . '/includes/admin/welcome-screen/component-enhance.php'); |
|
169 | 169 | } |
170 | 170 | |
171 | 171 | endif; |
172 | 172 | |
173 | -add_action( 'lsx_welcome', 'lsx_welcome_enhance', 20 ); |
|
173 | +add_action('lsx_welcome', 'lsx_welcome_enhance', 20); |
|
174 | 174 | |
175 | -if ( ! function_exists( 'lsx_welcome_footer' ) ) : |
|
175 | +if ( ! function_exists('lsx_welcome_footer')) : |
|
176 | 176 | |
177 | 177 | /** |
178 | 178 | * Welcome screen contribute section. |
@@ -181,9 +181,9 @@ discard block |
||
181 | 181 | * @subpackage welcome-page |
182 | 182 | */ |
183 | 183 | function lsx_welcome_footer() { |
184 | - require_once( get_template_directory() . '/includes/admin/welcome-screen/component-footer.php' ); |
|
184 | + require_once(get_template_directory() . '/includes/admin/welcome-screen/component-footer.php'); |
|
185 | 185 | } |
186 | 186 | |
187 | 187 | endif; |
188 | 188 | |
189 | -add_action( 'lsx_welcome', 'lsx_welcome_footer', 30 ); |
|
189 | +add_action('lsx_welcome', 'lsx_welcome_footer', 30); |