@@ -7,13 +7,13 @@ discard block |
||
7 | 7 | * @category bootstrap-walker |
8 | 8 | */ |
9 | 9 | |
10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
10 | +if ( ! defined('ABSPATH')) { |
|
11 | 11 | exit; |
12 | 12 | } |
13 | 13 | |
14 | -add_filter( 'nav_menu_item_id', '__return_null' ); |
|
14 | +add_filter('nav_menu_item_id', '__return_null'); |
|
15 | 15 | |
16 | -if ( ! function_exists( 'lsx_nav_menu_css_class' ) ) : |
|
16 | +if ( ! function_exists('lsx_nav_menu_css_class')) : |
|
17 | 17 | |
18 | 18 | /** |
19 | 19 | * Remove the id="" on nav menu items. |
@@ -23,22 +23,22 @@ discard block |
||
23 | 23 | * @subpackage navigation |
24 | 24 | * @category bootstrap-walker |
25 | 25 | */ |
26 | - function lsx_nav_menu_css_class( $classes, $item ) { |
|
27 | - $slug = sanitize_title( $item->title ); |
|
28 | - $classes = preg_replace( '/(current(-menu-|[-_]page[-_])(item|parent|ancestor))/', 'active', $classes ); |
|
29 | - $classes = preg_replace( '/^((menu|page)[-_\w+]+)+/', '', $classes ); |
|
26 | + function lsx_nav_menu_css_class($classes, $item) { |
|
27 | + $slug = sanitize_title($item->title); |
|
28 | + $classes = preg_replace('/(current(-menu-|[-_]page[-_])(item|parent|ancestor))/', 'active', $classes); |
|
29 | + $classes = preg_replace('/^((menu|page)[-_\w+]+)+/', '', $classes); |
|
30 | 30 | |
31 | 31 | $classes[] = 'menu-' . $slug; |
32 | - $classes = array_unique( $classes ); |
|
32 | + $classes = array_unique($classes); |
|
33 | 33 | |
34 | - return array_filter( $classes, 'lsx_is_element_empty' ); |
|
34 | + return array_filter($classes, 'lsx_is_element_empty'); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | endif; |
38 | 38 | |
39 | -add_filter( 'nav_menu_css_class', 'lsx_nav_menu_css_class', 10, 2 ); |
|
39 | +add_filter('nav_menu_css_class', 'lsx_nav_menu_css_class', 10, 2); |
|
40 | 40 | |
41 | -if ( ! function_exists( 'lsx_nav_menu_args' ) ) : |
|
41 | +if ( ! function_exists('lsx_nav_menu_args')) : |
|
42 | 42 | |
43 | 43 | /** |
44 | 44 | * Clean up wp_nav_menu_args. |
@@ -50,24 +50,24 @@ discard block |
||
50 | 50 | * @subpackage navigation |
51 | 51 | * @category bootstrap-walker |
52 | 52 | */ |
53 | - function lsx_nav_menu_args( $args = '' ) { |
|
53 | + function lsx_nav_menu_args($args = '') { |
|
54 | 54 | $roots_nav_menu_args['container'] = false; |
55 | 55 | |
56 | - if ( ! $args['items_wrap'] ) { |
|
56 | + if ( ! $args['items_wrap']) { |
|
57 | 57 | $roots_nav_menu_args['items_wrap'] = '<ul class="%2$s">%3$s</ul>'; |
58 | 58 | } |
59 | 59 | |
60 | - if ( current_theme_supports( 'bootstrap-top-navbar' ) && ! $args['depth'] ) { |
|
60 | + if (current_theme_supports('bootstrap-top-navbar') && ! $args['depth']) { |
|
61 | 61 | $roots_nav_menu_args['depth'] = 2; |
62 | 62 | } |
63 | 63 | |
64 | - if ( ! $args['walker'] ) { |
|
64 | + if ( ! $args['walker']) { |
|
65 | 65 | $roots_nav_menu_args['walker'] = new LSX_Nav_Walker(); |
66 | 66 | } |
67 | 67 | |
68 | - return array_merge( $args, $roots_nav_menu_args ); |
|
68 | + return array_merge($args, $roots_nav_menu_args); |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | endif; |
72 | 72 | |
73 | -add_filter( 'wp_nav_menu_args', 'lsx_nav_menu_args' ); |
|
73 | +add_filter('wp_nav_menu_args', 'lsx_nav_menu_args'); |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage config |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! function_exists( 'lsx_setup' ) ) : |
|
13 | +if ( ! function_exists('lsx_setup')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Theme after_setup_theme action. |
@@ -22,58 +22,58 @@ discard block |
||
22 | 22 | global $content_width; |
23 | 23 | $content_width = 1140; |
24 | 24 | |
25 | - load_theme_textdomain( 'lsx', get_template_directory() . '/languages' ); |
|
25 | + load_theme_textdomain('lsx', get_template_directory() . '/languages'); |
|
26 | 26 | |
27 | - add_image_size( 'lsx-thumbnail-wide', 350, 230, true ); |
|
28 | - add_image_size( 'lsx-thumbnail-square', 350, 350, true ); |
|
29 | - add_image_size( 'lsx-thumbnail-single', 750, 350, true ); |
|
30 | - add_image_size( 'lsx-banner', 1920, 600, true ); |
|
27 | + add_image_size('lsx-thumbnail-wide', 350, 230, true); |
|
28 | + add_image_size('lsx-thumbnail-square', 350, 350, true); |
|
29 | + add_image_size('lsx-thumbnail-single', 750, 350, true); |
|
30 | + add_image_size('lsx-banner', 1920, 600, true); |
|
31 | 31 | |
32 | - register_nav_menus( array( |
|
33 | - 'primary' => esc_html__( 'Primary Menu', 'lsx' ), |
|
34 | - 'top-menu' => esc_html__( 'Top Menu (right)' , 'lsx' ), |
|
35 | - 'top-menu-left' => esc_html__( 'Top Menu (left)' , 'lsx' ), |
|
36 | - 'social' => esc_html__( 'Social Menu' , 'lsx' ), |
|
37 | - 'footer' => esc_html__( 'Footer Menu' , 'lsx' ), |
|
38 | - ) ); |
|
32 | + register_nav_menus(array( |
|
33 | + 'primary' => esc_html__('Primary Menu', 'lsx'), |
|
34 | + 'top-menu' => esc_html__('Top Menu (right)', 'lsx'), |
|
35 | + 'top-menu-left' => esc_html__('Top Menu (left)', 'lsx'), |
|
36 | + 'social' => esc_html__('Social Menu', 'lsx'), |
|
37 | + 'footer' => esc_html__('Footer Menu', 'lsx'), |
|
38 | + )); |
|
39 | 39 | |
40 | - add_theme_support( 'automatic-feed-links' ); |
|
41 | - add_theme_support( 'custom-background' ); |
|
40 | + add_theme_support('automatic-feed-links'); |
|
41 | + add_theme_support('custom-background'); |
|
42 | 42 | |
43 | - add_theme_support( 'custom-logo', array( |
|
43 | + add_theme_support('custom-logo', array( |
|
44 | 44 | 'height' => 50, |
45 | 45 | 'width' => 160, |
46 | 46 | 'flex-width' => true, |
47 | 47 | 'flex-height' => true, |
48 | - ) ); |
|
48 | + )); |
|
49 | 49 | |
50 | - add_theme_support( 'html5', array( 'caption' ) ); |
|
50 | + add_theme_support('html5', array('caption')); |
|
51 | 51 | |
52 | - add_theme_support( 'post-formats', array( |
|
52 | + add_theme_support('post-formats', array( |
|
53 | 53 | 'image', |
54 | 54 | 'video', |
55 | 55 | 'gallery', |
56 | 56 | 'audio', |
57 | 57 | 'quote', |
58 | - ) ); |
|
58 | + )); |
|
59 | 59 | |
60 | - add_theme_support( 'post-thumbnails' ); |
|
61 | - add_theme_support( 'sensei' ); |
|
60 | + add_theme_support('post-thumbnails'); |
|
61 | + add_theme_support('sensei'); |
|
62 | 62 | |
63 | - add_theme_support( 'site-logo', array( |
|
63 | + add_theme_support('site-logo', array( |
|
64 | 64 | 'header-text' => array( |
65 | 65 | 'site-title', |
66 | 66 | 'site-description', |
67 | 67 | ), |
68 | 68 | 'size' => 'medium', |
69 | - ) ); |
|
69 | + )); |
|
70 | 70 | |
71 | - add_theme_support( 'title-tag' ); |
|
71 | + add_theme_support('title-tag'); |
|
72 | 72 | |
73 | 73 | /* @TODO - Necessary to test it */ |
74 | 74 | // add_theme_support( 'woocommerce' ); |
75 | 75 | |
76 | - add_theme_support( 'starter-content', array( |
|
76 | + add_theme_support('starter-content', array( |
|
77 | 77 | 'widgets' => array( |
78 | 78 | 'sidebar-home' => array( |
79 | 79 | 'custom_widget_1' => array( |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | |
82 | 82 | array( |
83 | 83 | 'title' => '', |
84 | - 'text' => wp_kses_post( '<div class="row"><div class="col-sm-12 text-center"><h3>Build your perfect website <small>with the LSX theme</small></h3></div></div><div class="row"><div class="col-sm-4 text-center"><h4>Fast</h4><p>"Quick" isn\'t a word most people use when describing their website building experience.</p></div><div class="col-sm-4 text-center"><h4>Easy</h4><p>We\'ve built websites for countless clients, and we know what kind of back-end makes sense easily.</p></div><div class="col-sm-4 text-center"><h4>Comprehensive</h4><p>The LSX extensions come with features out the box that are essential.</p></div></div>' ), |
|
84 | + 'text' => wp_kses_post('<div class="row"><div class="col-sm-12 text-center"><h3>Build your perfect website <small>with the LSX theme</small></h3></div></div><div class="row"><div class="col-sm-4 text-center"><h4>Fast</h4><p>"Quick" isn\'t a word most people use when describing their website building experience.</p></div><div class="col-sm-4 text-center"><h4>Easy</h4><p>We\'ve built websites for countless clients, and we know what kind of back-end makes sense easily.</p></div><div class="col-sm-4 text-center"><h4>Comprehensive</h4><p>The LSX extensions come with features out the box that are essential.</p></div></div>'), |
|
85 | 85 | ), |
86 | 86 | ), |
87 | 87 | |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | |
91 | 91 | array( |
92 | 92 | 'title' => '', |
93 | - 'text' => wp_kses_post( '<div class="lsx-full-width-alt"><div class="row"><div class="col-xs-12"><h3>A big CTA title</h3><p class="text-center"><a class="btn cta-btn" href="http://www.lsdeb.biz/" target="_blank">Hire Us</a><p></div></div></div>' ), |
|
93 | + 'text' => wp_kses_post('<div class="lsx-full-width-alt"><div class="row"><div class="col-xs-12"><h3>A big CTA title</h3><p class="text-center"><a class="btn cta-btn" href="http://www.lsdeb.biz/" target="_blank">Hire Us</a><p></div></div></div>'), |
|
94 | 94 | ), |
95 | 95 | ), |
96 | 96 | |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | |
100 | 100 | array( |
101 | 101 | 'title' => '', |
102 | - 'text' => wp_kses_post( '<div class="row"><div class="col-xs-12"><h3>Homepage Widget</h3><p>Lorem ipsum dolor sit amet, <a href="#">consectetuer adipiscing elit</a>. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.</p></div></div>' ), |
|
102 | + 'text' => wp_kses_post('<div class="row"><div class="col-xs-12"><h3>Homepage Widget</h3><p>Lorem ipsum dolor sit amet, <a href="#">consectetuer adipiscing elit</a>. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.</p></div></div>'), |
|
103 | 103 | ), |
104 | 104 | ), |
105 | 105 | ), |
@@ -109,8 +109,8 @@ discard block |
||
109 | 109 | 'text', |
110 | 110 | |
111 | 111 | array( |
112 | - 'title' => esc_html__( 'Space for Footer Widgets', 'lsx' ), |
|
113 | - 'text' => esc_html__( 'This is here to showcase some footer widgets. You can decide what to add and what to hide. Nam nostrum evertitur ad, ut pri nibh veniam, urbanitas definitionem eum ex.', 'lsx' ), |
|
112 | + 'title' => esc_html__('Space for Footer Widgets', 'lsx'), |
|
113 | + 'text' => esc_html__('This is here to showcase some footer widgets. You can decide what to add and what to hide. Nam nostrum evertitur ad, ut pri nibh veniam, urbanitas definitionem eum ex.', 'lsx'), |
|
114 | 114 | ), |
115 | 115 | ), |
116 | 116 | |
@@ -118,8 +118,8 @@ discard block |
||
118 | 118 | 'text', |
119 | 119 | |
120 | 120 | array( |
121 | - 'title' => esc_html__( 'Space for Footer Widgets', 'lsx' ), |
|
122 | - 'text' => esc_html__( 'This is here to showcase some footer widgets. You can decide what to add and what to hide. Nam nostrum evertitur ad, ut pri nibh veniam, urbanitas definitionem eum ex.', 'lsx' ), |
|
121 | + 'title' => esc_html__('Space for Footer Widgets', 'lsx'), |
|
122 | + 'text' => esc_html__('This is here to showcase some footer widgets. You can decide what to add and what to hide. Nam nostrum evertitur ad, ut pri nibh veniam, urbanitas definitionem eum ex.', 'lsx'), |
|
123 | 123 | ), |
124 | 124 | ), |
125 | 125 | |
@@ -127,8 +127,8 @@ discard block |
||
127 | 127 | 'text', |
128 | 128 | |
129 | 129 | array( |
130 | - 'title' => esc_html__( 'Contact us:', 'lsx' ), |
|
131 | - 'text' => wp_kses_post( '<a href="mailto:[email protected]><i class="fa fa-envelope fa-fw"></i> [email protected]</a><br><a href="tel:+27214489843"><i class="fa fa-phone fa-fw"></i> +27 21 448 9843</a><br><i class="fa fa-skype fa-fw"></i> /lightspeeddevelopment' ), |
|
130 | + 'title' => esc_html__('Contact us:', 'lsx'), |
|
131 | + 'text' => wp_kses_post('<a href="mailto:[email protected]><i class="fa fa-envelope fa-fw"></i> [email protected]</a><br><a href="tel:+27214489843"><i class="fa fa-phone fa-fw"></i> +27 21 448 9843</a><br><i class="fa fa-skype fa-fw"></i> /lightspeeddevelopment'), |
|
132 | 132 | ), |
133 | 133 | ), |
134 | 134 | ), |
@@ -138,8 +138,8 @@ discard block |
||
138 | 138 | 'text', |
139 | 139 | |
140 | 140 | array( |
141 | - 'title' => esc_html__( 'A Footer Call to Action', 'lsx' ), |
|
142 | - 'text' => esc_html__( 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'lsx' ), |
|
141 | + 'title' => esc_html__('A Footer Call to Action', 'lsx'), |
|
142 | + 'text' => esc_html__('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'lsx'), |
|
143 | 143 | ), |
144 | 144 | ), |
145 | 145 | ), |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | 'home' => array( |
150 | 150 | 'template' => 'page-templates/template-front-page.php', |
151 | 151 | 'thumbnail' => '{{image-banner-example-01}}', |
152 | - 'post_title' => esc_html__( 'LSX is a free WordPress theme', 'lsx' ), |
|
152 | + 'post_title' => esc_html__('LSX is a free WordPress theme', 'lsx'), |
|
153 | 153 | 'post_content' => '', |
154 | 154 | ), |
155 | 155 | |
@@ -166,17 +166,17 @@ discard block |
||
166 | 166 | |
167 | 167 | 'attachments' => array( |
168 | 168 | 'image-banner-example-01' => array( |
169 | - 'post_title' => esc_html_x( 'Banner Example 01', 'Theme starter content', 'lsx' ), |
|
169 | + 'post_title' => esc_html_x('Banner Example 01', 'Theme starter content', 'lsx'), |
|
170 | 170 | 'file' => 'assets/images/admin/banner-example-01.jpg', |
171 | 171 | ), |
172 | 172 | |
173 | 173 | 'image-banner-example-02' => array( |
174 | - 'post_title' => esc_html_x( 'Banner Example 02', 'Theme starter content', 'lsx' ), |
|
174 | + 'post_title' => esc_html_x('Banner Example 02', 'Theme starter content', 'lsx'), |
|
175 | 175 | 'file' => 'assets/images/admin/banner-example-02.jpg', |
176 | 176 | ), |
177 | 177 | |
178 | 178 | 'image-banner-example-03' => array( |
179 | - 'post_title' => esc_html_x( 'Banner Example 03', 'Theme starter content', 'lsx' ), |
|
179 | + 'post_title' => esc_html_x('Banner Example 03', 'Theme starter content', 'lsx'), |
|
180 | 180 | 'file' => 'assets/images/admin/banner-example-03.jpg', |
181 | 181 | ), |
182 | 182 | ), |
@@ -185,12 +185,12 @@ discard block |
||
185 | 185 | 'show_on_front' => 'page', |
186 | 186 | 'page_on_front' => '{{home}}', |
187 | 187 | 'page_for_posts' => '{{blog}}', |
188 | - 'blogdescription' => esc_html__( 'LSX starter content example', 'lsx' ), |
|
188 | + 'blogdescription' => esc_html__('LSX starter content example', 'lsx'), |
|
189 | 189 | ), |
190 | 190 | |
191 | 191 | 'nav_menus' => array( |
192 | 192 | 'primary' => array( |
193 | - 'name' => esc_html__( 'Primary Menu', 'lsx' ), |
|
193 | + 'name' => esc_html__('Primary Menu', 'lsx'), |
|
194 | 194 | |
195 | 195 | 'items' => array( |
196 | 196 | 'page_home', |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | ), |
202 | 202 | |
203 | 203 | 'top-menu' => array( |
204 | - 'name' => esc_html__( 'Top Menu', 'lsx' ), |
|
204 | + 'name' => esc_html__('Top Menu', 'lsx'), |
|
205 | 205 | |
206 | 206 | 'items' => array( |
207 | 207 | 'custom_link_1' => array( |
@@ -229,7 +229,7 @@ discard block |
||
229 | 229 | ), |
230 | 230 | |
231 | 231 | 'social' => array( |
232 | - 'name' => esc_html__( 'Social Menu', 'lsx' ), |
|
232 | + 'name' => esc_html__('Social Menu', 'lsx'), |
|
233 | 233 | |
234 | 234 | 'items' => array( |
235 | 235 | 'link_facebook', |
@@ -244,7 +244,7 @@ discard block |
||
244 | 244 | ), |
245 | 245 | |
246 | 246 | 'footer' => array( |
247 | - 'name' => esc_html__( 'Footer Menu', 'lsx' ), |
|
247 | + 'name' => esc_html__('Footer Menu', 'lsx'), |
|
248 | 248 | |
249 | 249 | 'items' => array( |
250 | 250 | 'page_about', |
@@ -258,14 +258,14 @@ discard block |
||
258 | 258 | 'lsx_header_search' => false, |
259 | 259 | 'lsx_layout' => '1c', |
260 | 260 | ), |
261 | - ) ); |
|
261 | + )); |
|
262 | 262 | } |
263 | 263 | |
264 | 264 | endif; |
265 | 265 | |
266 | -add_action( 'after_setup_theme', 'lsx_setup' ); |
|
266 | +add_action('after_setup_theme', 'lsx_setup'); |
|
267 | 267 | |
268 | -if ( ! function_exists( 'lsx_init' ) ) : |
|
268 | +if ( ! function_exists('lsx_init')) : |
|
269 | 269 | |
270 | 270 | /** |
271 | 271 | * Theme init action. |
@@ -274,18 +274,18 @@ discard block |
||
274 | 274 | * @subpackage config |
275 | 275 | */ |
276 | 276 | function lsx_init() { |
277 | - add_post_type_support( 'page', 'excerpt' ); |
|
277 | + add_post_type_support('page', 'excerpt'); |
|
278 | 278 | |
279 | - if ( class_exists( 'WooCommerce' ) ) { |
|
280 | - remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 ); |
|
279 | + if (class_exists('WooCommerce')) { |
|
280 | + remove_action('woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0); |
|
281 | 281 | } |
282 | 282 | } |
283 | 283 | |
284 | 284 | endif; |
285 | 285 | |
286 | -add_action( 'init', 'lsx_init', 100 ); |
|
286 | +add_action('init', 'lsx_init', 100); |
|
287 | 287 | |
288 | -if ( ! function_exists( 'lsx_process_content_width' ) ) : |
|
288 | +if ( ! function_exists('lsx_process_content_width')) : |
|
289 | 289 | |
290 | 290 | /** |
291 | 291 | * Overwrite the $content_width var, based on the layout of the page. |
@@ -297,8 +297,8 @@ discard block |
||
297 | 297 | global $content_width; |
298 | 298 | |
299 | 299 | if ( |
300 | - is_page_template( 'page-templates/template-front-page.php' ) || |
|
301 | - is_page_template( 'page-templates/template-full-width.php' ) |
|
300 | + is_page_template('page-templates/template-front-page.php') || |
|
301 | + is_page_template('page-templates/template-full-width.php') |
|
302 | 302 | ) { |
303 | 303 | $content_width = 1140; |
304 | 304 | } |
@@ -306,9 +306,9 @@ discard block |
||
306 | 306 | |
307 | 307 | endif; |
308 | 308 | |
309 | -add_action( 'wp_head', 'lsx_process_content_width' ); |
|
309 | +add_action('wp_head', 'lsx_process_content_width'); |
|
310 | 310 | |
311 | -if ( ! function_exists( 'lsx_file_get_contents' ) ) : |
|
311 | +if ( ! function_exists('lsx_file_get_contents')) : |
|
312 | 312 | |
313 | 313 | /** |
314 | 314 | * Get file contents. |
@@ -316,19 +316,19 @@ discard block |
||
316 | 316 | * @package lsx |
317 | 317 | * @subpackage config |
318 | 318 | */ |
319 | - function lsx_file_get_contents( $file ) { |
|
320 | - if ( file_exists( $file ) ) { |
|
319 | + function lsx_file_get_contents($file) { |
|
320 | + if (file_exists($file)) { |
|
321 | 321 | global $wp_filesystem; |
322 | 322 | |
323 | - if ( empty( $wp_filesystem ) ) { |
|
324 | - require_once( ABSPATH . 'wp-admin/includes/file.php' ); |
|
323 | + if (empty($wp_filesystem)) { |
|
324 | + require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
325 | 325 | WP_Filesystem(); |
326 | 326 | } |
327 | 327 | |
328 | - if ( $wp_filesystem ) { |
|
329 | - $contents = $wp_filesystem->get_contents( $file ); |
|
328 | + if ($wp_filesystem) { |
|
329 | + $contents = $wp_filesystem->get_contents($file); |
|
330 | 330 | |
331 | - if ( ! empty( $contents ) ) { |
|
331 | + if ( ! empty($contents)) { |
|
332 | 332 | return $contents; |
333 | 333 | } |
334 | 334 | } |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage comment-walker |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! function_exists( 'lsx_get_avatar' ) ) : |
|
13 | +if ( ! function_exists('lsx_get_avatar')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Comment Form Field Filter. |
@@ -18,25 +18,25 @@ discard block |
||
18 | 18 | * @package lsx |
19 | 19 | * @subpackage comment-walker |
20 | 20 | */ |
21 | - function lsx_get_avatar( $avatar ) { |
|
22 | - $avatar = str_replace( "class='avatar", "class='avatar pull-left media-object ", $avatar ); |
|
23 | - $avatar = str_replace( 'class="avatar', 'class="avatar pull-left media-object ', $avatar ); |
|
21 | + function lsx_get_avatar($avatar) { |
|
22 | + $avatar = str_replace("class='avatar", "class='avatar pull-left media-object ", $avatar); |
|
23 | + $avatar = str_replace('class="avatar', 'class="avatar pull-left media-object ', $avatar); |
|
24 | 24 | return $avatar; |
25 | 25 | } |
26 | 26 | |
27 | 27 | endif; |
28 | 28 | |
29 | -add_filter( 'get_avatar', 'lsx_get_avatar' ); |
|
29 | +add_filter('get_avatar', 'lsx_get_avatar'); |
|
30 | 30 | |
31 | -add_action( 'admin_bar_menu', function() { |
|
32 | - remove_filter( 'get_avatar', 'lsx_get_avatar' ); |
|
33 | -}, 0 ); |
|
31 | +add_action('admin_bar_menu', function() { |
|
32 | + remove_filter('get_avatar', 'lsx_get_avatar'); |
|
33 | +}, 0); |
|
34 | 34 | |
35 | -add_action( 'wp_after_admin_bar_render', function() { |
|
36 | - add_filter( 'get_avatar','lsx_get_avatar' ); |
|
35 | +add_action('wp_after_admin_bar_render', function() { |
|
36 | + add_filter('get_avatar', 'lsx_get_avatar'); |
|
37 | 37 | } ); |
38 | 38 | |
39 | -if ( ! function_exists( 'lsx_comment_form_fields_filter' ) ) : |
|
39 | +if ( ! function_exists('lsx_comment_form_fields_filter')) : |
|
40 | 40 | |
41 | 41 | /** |
42 | 42 | * Comment Form Field Filter. |
@@ -44,12 +44,12 @@ discard block |
||
44 | 44 | * @package lsx |
45 | 45 | * @subpackage comment-walker |
46 | 46 | */ |
47 | - function lsx_comment_form_fields_filter( $fields ) { |
|
48 | - foreach ( $fields as &$field ) { |
|
49 | - if ( stristr( 'class=', $field ) ) { |
|
50 | - $field = str_replace( 'class="', 'class="form-control ', $field ); |
|
47 | + function lsx_comment_form_fields_filter($fields) { |
|
48 | + foreach ($fields as &$field) { |
|
49 | + if (stristr('class=', $field)) { |
|
50 | + $field = str_replace('class="', 'class="form-control ', $field); |
|
51 | 51 | } else { |
52 | - $field = str_replace( '<input', '<input class="form-control" ', $field ); |
|
52 | + $field = str_replace('<input', '<input class="form-control" ', $field); |
|
53 | 53 | } |
54 | 54 | } |
55 | 55 | |
@@ -58,4 +58,4 @@ discard block |
||
58 | 58 | |
59 | 59 | endif; |
60 | 60 | |
61 | -add_filter( 'comment_form_default_fields', 'lsx_comment_form_fields_filter' ); |
|
61 | +add_filter('comment_form_default_fields', 'lsx_comment_form_fields_filter'); |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage widgets |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! function_exists( 'lsx_widget_area_init' ) ) : |
|
13 | +if ( ! function_exists('lsx_widget_area_init')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Register widgetized area and update sidebar with default widgets. |
@@ -19,48 +19,48 @@ discard block |
||
19 | 19 | * @subpackage widgets |
20 | 20 | */ |
21 | 21 | function lsx_widget_area_init() { |
22 | - register_sidebar( array( |
|
23 | - 'name' => esc_html__( 'Home', 'lsx' ), |
|
22 | + register_sidebar(array( |
|
23 | + 'name' => esc_html__('Home', 'lsx'), |
|
24 | 24 | 'id' => 'sidebar-home', |
25 | 25 | 'before_widget' => '<aside id="%1$s" class="widget %2$s">', |
26 | 26 | 'after_widget' => '</aside>', |
27 | 27 | 'before_title' => '<h3 class="widget-title">', |
28 | 28 | 'after_title' => '</h3>', |
29 | - ) ); |
|
29 | + )); |
|
30 | 30 | |
31 | - register_sidebar( array( |
|
32 | - 'name' => esc_html__( 'Sidebar', 'lsx' ), |
|
31 | + register_sidebar(array( |
|
32 | + 'name' => esc_html__('Sidebar', 'lsx'), |
|
33 | 33 | 'id' => 'sidebar-1', |
34 | 34 | 'before_widget' => '<aside id="%1$s" class="widget %2$s">', |
35 | 35 | 'after_widget' => '</aside>', |
36 | 36 | 'before_title' => '<h3 class="widget-title">', |
37 | 37 | 'after_title' => '</h3>', |
38 | - ) ); |
|
38 | + )); |
|
39 | 39 | |
40 | - register_sidebar( array( |
|
41 | - 'name' => esc_html__( 'Footer', 'lsx' ), |
|
40 | + register_sidebar(array( |
|
41 | + 'name' => esc_html__('Footer', 'lsx'), |
|
42 | 42 | 'id' => 'sidebar-footer', |
43 | 43 | 'before_widget' => '<div class="styler"><aside id="%1$s" class="widget %2$s">', |
44 | 44 | 'after_widget' => '</aside></div>', |
45 | 45 | 'before_title' => '<h3 class="widget-title">', |
46 | 46 | 'after_title' => '</h3>', |
47 | - ) ); |
|
47 | + )); |
|
48 | 48 | |
49 | - register_sidebar( array( |
|
50 | - 'name' => esc_html__( 'Footer Call to Action', 'lsx' ), |
|
49 | + register_sidebar(array( |
|
50 | + 'name' => esc_html__('Footer Call to Action', 'lsx'), |
|
51 | 51 | 'id' => 'sidebar-footer-cta', |
52 | 52 | 'before_widget' => '<aside id="%1$s" class="widget %2$s">', |
53 | 53 | 'after_widget' => '</aside>', |
54 | 54 | 'before_title' => '<h3 class="widget-title">', |
55 | 55 | 'after_title' => '</h3>', |
56 | - ) ); |
|
56 | + )); |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | endif; |
60 | 60 | |
61 | -add_action( 'widgets_init', 'lsx_widget_area_init' ); |
|
61 | +add_action('widgets_init', 'lsx_widget_area_init'); |
|
62 | 62 | |
63 | -if ( ! function_exists( 'lsx_sidebar_footer_params' ) ) : |
|
63 | +if ( ! function_exists('lsx_sidebar_footer_params')) : |
|
64 | 64 | |
65 | 65 | /** |
66 | 66 | * Register widgetized area and update sidebar with default widgets. |
@@ -68,13 +68,13 @@ discard block |
||
68 | 68 | * @package lsx |
69 | 69 | * @subpackage widgets |
70 | 70 | */ |
71 | - function lsx_sidebar_footer_params( $params ) { |
|
71 | + function lsx_sidebar_footer_params($params) { |
|
72 | 72 | $sidebar_id = $params[0]['id']; |
73 | 73 | |
74 | - if ( 'sidebar-footer' === $sidebar_id ) { |
|
74 | + if ('sidebar-footer' === $sidebar_id) { |
|
75 | 75 | $total_widgets = wp_get_sidebars_widgets(); |
76 | - $sidebar_widgets = count( $total_widgets[ $sidebar_id ] ); |
|
77 | - $params[0]['before_widget'] = str_replace( 'class="styler', 'class="col-md-' . floor( 12 / $sidebar_widgets ), $params[0]['before_widget'] ); |
|
76 | + $sidebar_widgets = count($total_widgets[$sidebar_id]); |
|
77 | + $params[0]['before_widget'] = str_replace('class="styler', 'class="col-md-' . floor(12 / $sidebar_widgets), $params[0]['before_widget']); |
|
78 | 78 | } |
79 | 79 | |
80 | 80 | return $params; |
@@ -82,4 +82,4 @@ discard block |
||
82 | 82 | |
83 | 83 | endif; |
84 | 84 | |
85 | -add_filter( 'dynamic_sidebar_params', 'lsx_sidebar_footer_params' ); |
|
85 | +add_filter('dynamic_sidebar_params', 'lsx_sidebar_footer_params'); |
@@ -6,15 +6,15 @@ discard block |
||
6 | 6 | * @subpackage comment |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! class_exists( 'Walker_Comment' ) ) { |
|
13 | +if ( ! class_exists('Walker_Comment')) { |
|
14 | 14 | return; |
15 | 15 | } |
16 | 16 | |
17 | -if ( ! class_exists( 'LSX_Walker_Comment' ) ) : |
|
17 | +if ( ! class_exists('LSX_Walker_Comment')) : |
|
18 | 18 | |
19 | 19 | /** |
20 | 20 | * Use Bootstrap's media object for listing comments. |
@@ -26,35 +26,35 @@ discard block |
||
26 | 26 | */ |
27 | 27 | class LSX_Walker_Comment extends Walker_Comment { |
28 | 28 | |
29 | - function start_lvl( &$output, $depth = 0, $args = array() ) { |
|
29 | + function start_lvl(&$output, $depth = 0, $args = array()) { |
|
30 | 30 | $GLOBALS['comment_depth'] = $depth + 1; ?> |
31 | - <ul <?php comment_class( 'media media-reply unstyled list-unstyled comment-' . get_comment_ID() ); ?>> |
|
31 | + <ul <?php comment_class('media media-reply unstyled list-unstyled comment-' . get_comment_ID()); ?>> |
|
32 | 32 | <?php |
33 | 33 | } |
34 | 34 | |
35 | - function end_lvl( &$output, $depth = 0, $args = array() ) { |
|
35 | + function end_lvl(&$output, $depth = 0, $args = array()) { |
|
36 | 36 | $GLOBALS['comment_depth'] = $depth + 1; |
37 | 37 | echo '</ul>'; |
38 | 38 | } |
39 | 39 | |
40 | - function start_el( &$output, $comment, $depth = 0, $args = array(), $id = 0 ) { |
|
40 | + function start_el(&$output, $comment, $depth = 0, $args = array(), $id = 0) { |
|
41 | 41 | $depth++; |
42 | 42 | $GLOBALS['comment_depth'] = $depth; |
43 | 43 | $GLOBALS['comment'] = $comment; |
44 | 44 | |
45 | - if ( ! empty( $args['callback'] ) ) { |
|
46 | - call_user_func( $args['callback'], $comment, $args, $depth ); |
|
45 | + if ( ! empty($args['callback'])) { |
|
46 | + call_user_func($args['callback'], $comment, $args, $depth); |
|
47 | 47 | return; |
48 | 48 | }?> |
49 | 49 | |
50 | - <li id="comment-<?php comment_ID(); ?>" <?php comment_class( 'media comment-' . get_comment_ID() ); ?>> |
|
51 | - <?php get_template_part( 'comment' ); ?> |
|
50 | + <li id="comment-<?php comment_ID(); ?>" <?php comment_class('media comment-' . get_comment_ID()); ?>> |
|
51 | + <?php get_template_part('comment'); ?> |
|
52 | 52 | <?php |
53 | 53 | } |
54 | 54 | |
55 | - function end_el( &$output, $comment, $depth = 0, $args = array() ) { |
|
56 | - if ( ! empty( $args['end-callback'] ) ) { |
|
57 | - call_user_func( $args['end-callback'], $comment, $args, $depth ); |
|
55 | + function end_el(&$output, $comment, $depth = 0, $args = array()) { |
|
56 | + if ( ! empty($args['end-callback'])) { |
|
57 | + call_user_func($args['end-callback'], $comment, $args, $depth); |
|
58 | 58 | return; |
59 | 59 | } |
60 | 60 |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage customizer |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! class_exists( 'LSX_Theme_Customizer' ) ) : |
|
13 | +if ( ! class_exists('LSX_Theme_Customizer')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Customizer Configuration File |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | /** |
27 | 27 | * Initialize the plugin by setting localization and loading public scripts and styles. |
28 | 28 | */ |
29 | - public function __construct( $controls ) { |
|
29 | + public function __construct($controls) { |
|
30 | 30 | require get_template_directory() . '/includes/classes/class-lsx-customize-core-control.php'; |
31 | 31 | require get_template_directory() . '/includes/classes/class-lsx-customize-layout-control.php'; |
32 | 32 | require get_template_directory() . '/includes/classes/class-lsx-customize-font-control.php'; |
@@ -34,83 +34,83 @@ discard block |
||
34 | 34 | |
35 | 35 | $this->controls = $controls; |
36 | 36 | |
37 | - add_action( 'customize_preview_init', array( $this, 'customize_preview_js' ), 20 ); |
|
38 | - add_action( 'customize_register', array( $this, 'customizer' ), 11 ); |
|
37 | + add_action('customize_preview_init', array($this, 'customize_preview_js'), 20); |
|
38 | + add_action('customize_register', array($this, 'customizer'), 11); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
42 | 42 | * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. |
43 | 43 | */ |
44 | 44 | public function customize_preview_js() { |
45 | - wp_enqueue_script( 'lsx_customizer', get_template_directory_uri() . '/assets/js/admin/customizer.js', array( 'customize-preview' ), LSX_VERSION, true ); |
|
45 | + wp_enqueue_script('lsx_customizer', get_template_directory_uri() . '/assets/js/admin/customizer.js', array('customize-preview'), LSX_VERSION, true); |
|
46 | 46 | |
47 | - wp_localize_script( 'lsx_customizer', 'lsx_customizer_params', array( |
|
47 | + wp_localize_script('lsx_customizer', 'lsx_customizer_params', array( |
|
48 | 48 | 'template_directory' => get_template_directory_uri(), |
49 | - ) ); |
|
49 | + )); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | /** |
53 | 53 | * Create customiser controls. |
54 | 54 | */ |
55 | - public function customizer( $wp_customize ) { |
|
55 | + public function customizer($wp_customize) { |
|
56 | 56 | // Start panels |
57 | - if ( ! empty( $this->controls['panels'] ) ) { |
|
58 | - foreach ( $this->controls['panels'] as $panel_slug => $args ) { |
|
59 | - $this->add_panel( $panel_slug, $args, $wp_customize ); |
|
57 | + if ( ! empty($this->controls['panels'])) { |
|
58 | + foreach ($this->controls['panels'] as $panel_slug => $args) { |
|
59 | + $this->add_panel($panel_slug, $args, $wp_customize); |
|
60 | 60 | } |
61 | 61 | } |
62 | 62 | |
63 | 63 | // Start sections |
64 | - if ( ! empty( $this->controls['sections'] ) ) { |
|
65 | - foreach ( $this->controls['sections'] as $section_slug => $args ) { |
|
66 | - $this->add_section( $section_slug, $args, $wp_customize ); |
|
64 | + if ( ! empty($this->controls['sections'])) { |
|
65 | + foreach ($this->controls['sections'] as $section_slug => $args) { |
|
66 | + $this->add_section($section_slug, $args, $wp_customize); |
|
67 | 67 | } |
68 | 68 | } |
69 | 69 | |
70 | 70 | // Start settings |
71 | - if ( ! empty( $this->controls['settings'] ) ) { |
|
72 | - foreach ( $this->controls['settings'] as $settings_slug => $args ) { |
|
73 | - $this->add_setting( $settings_slug, $args, $wp_customize ); |
|
71 | + if ( ! empty($this->controls['settings'])) { |
|
72 | + foreach ($this->controls['settings'] as $settings_slug => $args) { |
|
73 | + $this->add_setting($settings_slug, $args, $wp_customize); |
|
74 | 74 | } |
75 | 75 | } |
76 | 76 | |
77 | 77 | // Start fields |
78 | - if ( ! empty( $this->controls['fields'] ) ) { |
|
79 | - foreach ( $this->controls['fields'] as $field_slug => $args ) { |
|
80 | - $this->add_control( $field_slug, $args, $wp_customize ); |
|
78 | + if ( ! empty($this->controls['fields'])) { |
|
79 | + foreach ($this->controls['fields'] as $field_slug => $args) { |
|
80 | + $this->add_control($field_slug, $args, $wp_customize); |
|
81 | 81 | } |
82 | 82 | } |
83 | 83 | |
84 | 84 | // Start selective refresh |
85 | - if ( ! empty( $this->controls['selective_refresh'] ) ) { |
|
86 | - foreach ( $this->controls['selective_refresh'] as $field_slug => $args ) { |
|
87 | - $this->add_selective_refresh( $field_slug, $args, $wp_customize ); |
|
85 | + if ( ! empty($this->controls['selective_refresh'])) { |
|
86 | + foreach ($this->controls['selective_refresh'] as $field_slug => $args) { |
|
87 | + $this->add_selective_refresh($field_slug, $args, $wp_customize); |
|
88 | 88 | } |
89 | 89 | } |
90 | 90 | |
91 | - $wp_customize->get_setting( 'blogname' )->transport = 'postMessage'; |
|
92 | - $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; |
|
93 | - $wp_customize->get_setting( 'background_color' )->transport = 'postMessage'; |
|
91 | + $wp_customize->get_setting('blogname')->transport = 'postMessage'; |
|
92 | + $wp_customize->get_setting('blogdescription')->transport = 'postMessage'; |
|
93 | + $wp_customize->get_setting('background_color')->transport = 'postMessage'; |
|
94 | 94 | |
95 | - $wp_customize->selective_refresh->add_partial( 'blogname', array( |
|
95 | + $wp_customize->selective_refresh->add_partial('blogname', array( |
|
96 | 96 | 'selector' => 'h1.site-title a', |
97 | 97 | 'render_callback' => function() { |
98 | - bloginfo( 'name' ); |
|
98 | + bloginfo('name'); |
|
99 | 99 | }, |
100 | - ) ); |
|
100 | + )); |
|
101 | 101 | |
102 | - $wp_customize->selective_refresh->add_partial( 'blogdescription', array( |
|
102 | + $wp_customize->selective_refresh->add_partial('blogdescription', array( |
|
103 | 103 | 'selector' => '.site-description', |
104 | 104 | 'render_callback' => function() { |
105 | - bloginfo( 'description' ); |
|
105 | + bloginfo('description'); |
|
106 | 106 | }, |
107 | - ) ); |
|
107 | + )); |
|
108 | 108 | } |
109 | 109 | |
110 | 110 | /** |
111 | 111 | * Create a panel. |
112 | 112 | */ |
113 | - private function add_panel( $slug, $args, $wp_customize ) { |
|
113 | + private function add_panel($slug, $args, $wp_customize) { |
|
114 | 114 | $default_args = array( |
115 | 115 | 'title' => null, |
116 | 116 | 'description' => null, |
@@ -118,57 +118,57 @@ discard block |
||
118 | 118 | |
119 | 119 | $wp_customize->add_panel( |
120 | 120 | $slug, |
121 | - array_merge( $default_args, $args ) |
|
121 | + array_merge($default_args, $args) |
|
122 | 122 | ); |
123 | 123 | } |
124 | 124 | |
125 | 125 | /** |
126 | 126 | * Create a section. |
127 | 127 | */ |
128 | - private function add_section( $slug, $args, $wp_customize ) { |
|
128 | + private function add_section($slug, $args, $wp_customize) { |
|
129 | 129 | $default_args = array( |
130 | 130 | 'capability' => 'edit_theme_options', |
131 | 131 | 'description' => null, |
132 | 132 | ); |
133 | 133 | |
134 | - $wp_customize->add_section( $slug, array_merge( $default_args, $args ) ); |
|
134 | + $wp_customize->add_section($slug, array_merge($default_args, $args)); |
|
135 | 135 | } |
136 | 136 | |
137 | 137 | /** |
138 | 138 | * Create a setting. |
139 | 139 | */ |
140 | - private function add_setting( $slug, $args, $wp_customize ) { |
|
141 | - $wp_customize->add_setting( $slug, |
|
142 | - array_merge( array( |
|
140 | + private function add_setting($slug, $args, $wp_customize) { |
|
141 | + $wp_customize->add_setting($slug, |
|
142 | + array_merge(array( |
|
143 | 143 | 'default' => null, |
144 | 144 | 'type' => 'theme_mod', |
145 | 145 | 'capability' => 'edit_theme_options', |
146 | 146 | 'transport' => 'postMessage', |
147 | 147 | 'sanitize_callback' => 'lsx_sanitize_choices', |
148 | - ), $args ) |
|
148 | + ), $args) |
|
149 | 149 | ); |
150 | 150 | } |
151 | 151 | |
152 | 152 | /** |
153 | 153 | * Create a control. |
154 | 154 | */ |
155 | - private function add_control( $slug, $args, $wp_customize ) { |
|
155 | + private function add_control($slug, $args, $wp_customize) { |
|
156 | 156 | $default_args = array(); |
157 | 157 | |
158 | - if ( isset( $args['control'] ) && class_exists( $args['control'] ) ) { |
|
158 | + if (isset($args['control']) && class_exists($args['control'])) { |
|
159 | 159 | $control_class = $args['control']; |
160 | - unset( $args['control'] ); |
|
160 | + unset($args['control']); |
|
161 | 161 | |
162 | - $control = new $control_class( $wp_customize, $slug, array_merge( $default_args, $args ) ); |
|
163 | - $wp_customize->add_control( $control ); |
|
162 | + $control = new $control_class($wp_customize, $slug, array_merge($default_args, $args)); |
|
163 | + $wp_customize->add_control($control); |
|
164 | 164 | } else { |
165 | - if ( isset( $args['control'] ) ) { |
|
166 | - unset( $args['control'] ); |
|
165 | + if (isset($args['control'])) { |
|
166 | + unset($args['control']); |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | $wp_customize->add_control( |
170 | 170 | $slug, |
171 | - array_merge( $default_args, $args ) |
|
171 | + array_merge($default_args, $args) |
|
172 | 172 | ); |
173 | 173 | } |
174 | 174 | } |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | /** |
177 | 177 | * Create a selective refresh. |
178 | 178 | */ |
179 | - private function add_selective_refresh( $slug, $args, $wp_customize ) { |
|
179 | + private function add_selective_refresh($slug, $args, $wp_customize) { |
|
180 | 180 | $default_args = array( |
181 | 181 | 'selector' => null, |
182 | 182 | 'render_callback' => null, |
@@ -184,23 +184,23 @@ discard block |
||
184 | 184 | |
185 | 185 | $wp_customize->selective_refresh->add_partial( |
186 | 186 | $slug, |
187 | - array_merge( $default_args, $args ) |
|
187 | + array_merge($default_args, $args) |
|
188 | 188 | ); |
189 | 189 | } |
190 | 190 | |
191 | 191 | /** |
192 | 192 | * Returns a registered field. |
193 | 193 | */ |
194 | - public function get_control( $id ) { |
|
195 | - $field = $this->controls['fields'][ $id ]; |
|
194 | + public function get_control($id) { |
|
195 | + $field = $this->controls['fields'][$id]; |
|
196 | 196 | return $field; |
197 | 197 | } |
198 | 198 | |
199 | 199 | /** |
200 | 200 | * Returns a registered setting. |
201 | 201 | */ |
202 | - public function get_setting( $id ) { |
|
203 | - $setting = $this->controls['settings'][ $id ]; |
|
202 | + public function get_setting($id) { |
|
203 | + $setting = $this->controls['settings'][$id]; |
|
204 | 204 | return $setting; |
205 | 205 | } |
206 | 206 |
@@ -7,15 +7,15 @@ discard block |
||
7 | 7 | * @category core |
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_Core_Control' ) ) : |
|
18 | +if ( ! class_exists('LSX_Customize_Core_Control')) : |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * LSX_Customize_Core_Control Class |
@@ -34,13 +34,13 @@ discard block |
||
34 | 34 | public function render_content() { |
35 | 35 | ?> |
36 | 36 | <label> |
37 | - <?php if ( ! empty( $this->label ) ) { ?> |
|
38 | - <span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span> |
|
37 | + <?php if ( ! empty($this->label)) { ?> |
|
38 | + <span class="customize-control-title"><?php echo esc_html($this->label); ?></span> |
|
39 | 39 | <?php } |
40 | - if ( ! empty( $this->description ) ) { ?> |
|
41 | - <span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span> |
|
40 | + if ( ! empty($this->description)) { ?> |
|
41 | + <span class="description customize-control-description"><?php echo esc_html($this->description); ?></span> |
|
42 | 42 | <?php } ?> |
43 | - <input <?php $this->link(); ?> type="checkbox" value="<?php echo esc_attr( $this->value() ); ?>" <?php $this->input_attrs(); ?>> |
|
43 | + <input <?php $this->link(); ?> type="checkbox" value="<?php echo esc_attr($this->value()); ?>" <?php $this->input_attrs(); ?>> |
|
44 | 44 | </label> |
45 | 45 | <?php |
46 | 46 | } |
@@ -7,15 +7,15 @@ discard block |
||
7 | 7 | * @category font |
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_Font_Control' ) ) : |
|
18 | +if ( ! class_exists('LSX_Customize_Font_Control')) : |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * LSX_Customize_Font_Control Class |
@@ -31,37 +31,37 @@ discard block |
||
31 | 31 | /** |
32 | 32 | * Constructor. |
33 | 33 | */ |
34 | - public function __construct( $manager, $id, $args ) { |
|
35 | - parent::__construct( $manager, $id, $args ); |
|
34 | + public function __construct($manager, $id, $args) { |
|
35 | + parent::__construct($manager, $id, $args); |
|
36 | 36 | |
37 | - add_action( 'after_switch_theme', array( $this, 'set_theme_mod' ) ); |
|
38 | - add_action( 'customize_save_after', array( $this, 'set_theme_mod' ) ); |
|
37 | + add_action('after_switch_theme', array($this, 'set_theme_mod')); |
|
38 | + add_action('customize_save_after', array($this, 'set_theme_mod')); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
42 | 42 | * Enqueue the styles and scripts. |
43 | 43 | */ |
44 | 44 | public function enqueue() { |
45 | - wp_enqueue_style( 'lsx-font-picker-custom-control', get_template_directory_uri() . '/assets/css/admin/customizer-font.css', array(), LSX_VERSION ); |
|
46 | - wp_style_add_data( 'lsx-font-picker-custom-control', 'rtl', 'replace' ); |
|
45 | + wp_enqueue_style('lsx-font-picker-custom-control', get_template_directory_uri() . '/assets/css/admin/customizer-font.css', array(), LSX_VERSION); |
|
46 | + wp_style_add_data('lsx-font-picker-custom-control', 'rtl', 'replace'); |
|
47 | 47 | |
48 | - wp_enqueue_script( 'lsx-font-picker-custom-control', get_template_directory_uri() . '/assets/js/admin/customizer-font.js', array(), LSX_VERSION ); |
|
48 | + wp_enqueue_script('lsx-font-picker-custom-control', get_template_directory_uri() . '/assets/js/admin/customizer-font.js', array(), LSX_VERSION); |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | /** |
52 | 52 | * Render the content on the theme customizer page. |
53 | 53 | */ |
54 | 54 | public function render_content() { |
55 | - if ( empty( $this->choices ) ) { |
|
55 | + if (empty($this->choices)) { |
|
56 | 56 | return; |
57 | 57 | } |
58 | 58 | |
59 | 59 | $fonts = array(); |
60 | 60 | |
61 | - foreach ( $this->choices as $slug => $font ) { |
|
61 | + foreach ($this->choices as $slug => $font) { |
|
62 | 62 | $fonts[] = $font['header']; |
63 | 63 | $fonts[] = $font['body']; |
64 | - $this->choices[ $slug ] = $font; |
|
64 | + $this->choices[$slug] = $font; |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | $saved_value = $this->value(); |
@@ -69,25 +69,25 @@ discard block |
||
69 | 69 | <div class="fontPickerCustomControl"> |
70 | 70 | <select <?php $this->link(); ?>> |
71 | 71 | <?php |
72 | - foreach ( $this->choices as $value => $conf ) { |
|
73 | - echo '<option value="' . esc_attr( $value ) . '">' . esc_html( $value ) . '</option>'; |
|
72 | + foreach ($this->choices as $value => $conf) { |
|
73 | + echo '<option value="' . esc_attr($value) . '">' . esc_html($value) . '</option>'; |
|
74 | 74 | } |
75 | 75 | ?> |
76 | 76 | </select> |
77 | 77 | <div class="fancyDisplay"> |
78 | 78 | <ul> |
79 | 79 | <?php |
80 | - foreach ( $this->choices as $key => $font ) { |
|
80 | + foreach ($this->choices as $key => $font) { |
|
81 | 81 | $class = null; |
82 | 82 | |
83 | - if ( $key === $saved_value ) { |
|
83 | + if ($key === $saved_value) { |
|
84 | 84 | $class = ' selected'; |
85 | 85 | } |
86 | 86 | |
87 | 87 | ?> |
88 | - <li class="font-choice <?php echo esc_attr( $class ); ?>"> |
|
89 | - <div class="<?php echo esc_attr( $font['header']['cssClass'] ); ?>"><?php echo esc_html( $font['header']['title'] ); ?></div> |
|
90 | - <small class="<?php echo esc_attr( $font['body']['cssClass'] ); ?>"><?php echo esc_html( $font['body']['title'] ); ?></small> |
|
88 | + <li class="font-choice <?php echo esc_attr($class); ?>"> |
|
89 | + <div class="<?php echo esc_attr($font['header']['cssClass']); ?>"><?php echo esc_html($font['header']['title']); ?></div> |
|
90 | + <small class="<?php echo esc_attr($font['body']['cssClass']); ?>"><?php echo esc_html($font['body']['title']); ?></small> |
|
91 | 91 | </li> |
92 | 92 | <?php |
93 | 93 | } |
@@ -109,12 +109,12 @@ discard block |
||
109 | 109 | public function set_theme_mod() { |
110 | 110 | $saved_value = $this->value(); |
111 | 111 | |
112 | - foreach ( $this->choices as $key => $font ) { |
|
113 | - if ( $key === $saved_value ) { |
|
114 | - $font_styles = $this->get_css( $font['header']['cssDeclaration'], $font['body']['cssDeclaration'] ); |
|
112 | + foreach ($this->choices as $key => $font) { |
|
113 | + if ($key === $saved_value) { |
|
114 | + $font_styles = $this->get_css($font['header']['cssDeclaration'], $font['body']['cssDeclaration']); |
|
115 | 115 | |
116 | - if ( ! empty( $font_styles ) ) { |
|
117 | - set_transient( 'lsx_font_styles', $font_styles, ( 24 * 60 * 60 ) ); |
|
116 | + if ( ! empty($font_styles)) { |
|
117 | + set_transient('lsx_font_styles', $font_styles, (24 * 60 * 60)); |
|
118 | 118 | } |
119 | 119 | } |
120 | 120 | } |
@@ -123,15 +123,15 @@ discard block |
||
123 | 123 | /** |
124 | 124 | * Returns CSS. |
125 | 125 | */ |
126 | - public function get_css( $font_header, $font_body ) { |
|
126 | + public function get_css($font_header, $font_body) { |
|
127 | 127 | $css_fonts_file = get_template_directory() . '/assets/css/lsx-fonts.css'; |
128 | - $css_fonts = lsx_file_get_contents( $css_fonts_file ); |
|
129 | - $css_fonts = apply_filters( 'lsx_fonts_css', $css_fonts ); |
|
128 | + $css_fonts = lsx_file_get_contents($css_fonts_file); |
|
129 | + $css_fonts = apply_filters('lsx_fonts_css', $css_fonts); |
|
130 | 130 | |
131 | - if ( ! empty( $css_fonts ) ) { |
|
132 | - $css_fonts = str_replace( '[font-family-headings]', $font_header, $css_fonts ); |
|
133 | - $css_fonts = str_replace( '[font-family-body]', $font_body, $css_fonts ); |
|
134 | - $css_fonts = preg_replace( '/(\/\*# ).+( \*\/)/', '', $css_fonts ); |
|
131 | + if ( ! empty($css_fonts)) { |
|
132 | + $css_fonts = str_replace('[font-family-headings]', $font_header, $css_fonts); |
|
133 | + $css_fonts = str_replace('[font-family-body]', $font_body, $css_fonts); |
|
134 | + $css_fonts = preg_replace('/(\/\*# ).+( \*\/)/', '', $css_fonts); |
|
135 | 135 | return $css_fonts; |
136 | 136 | } |
137 | 137 |
@@ -7,15 +7,15 @@ discard block |
||
7 | 7 | * @category 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_Layout_Control' ) ) : |
|
18 | +if ( ! class_exists('LSX_Customize_Layout_Control')) : |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * LSX_Customize_Layout_Control Class. |
@@ -30,9 +30,9 @@ 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 ); |
|
35 | - if ( ! empty( $args['choices'] ) ) { |
|
33 | + public function __construct($manager, $id, $args = array()) { |
|
34 | + parent::__construct($manager, $id, $args); |
|
35 | + if ( ! empty($args['choices'])) { |
|
36 | 36 | $this->layouts = $args['choices']; |
37 | 37 | } |
38 | 38 | } |
@@ -41,35 +41,35 @@ discard block |
||
41 | 41 | * Enqueue scripts/styles for the color picker. |
42 | 42 | */ |
43 | 43 | public function enqueue() { |
44 | - wp_enqueue_script( 'lsx-layout-control', get_template_directory_uri() . '/assets/js/admin/customizer-layout.js', array( 'jquery' ), LSX_VERSION, true ); |
|
44 | + wp_enqueue_script('lsx-layout-control', get_template_directory_uri() . '/assets/js/admin/customizer-layout.js', array('jquery'), LSX_VERSION, true); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | /** |
48 | 48 | * Render output. |
49 | 49 | */ |
50 | 50 | public function render_content() { |
51 | - $post_id = 'customize-control-' . str_replace( '[', '-', str_replace( ']', '', $this->id ) ); |
|
51 | + $post_id = 'customize-control-' . str_replace('[', '-', str_replace(']', '', $this->id)); |
|
52 | 52 | $class = 'customize-control customize-control-' . $this->type; |
53 | 53 | $value = $this->value(); |
54 | 54 | ?> |
55 | 55 | <label> |
56 | - <?php if ( ! empty( $this->label ) ) { ?> |
|
57 | - <span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span> |
|
56 | + <?php if ( ! empty($this->label)) { ?> |
|
57 | + <span class="customize-control-title"><?php echo esc_html($this->label); ?></span> |
|
58 | 58 | <?php } |
59 | - if ( ! empty( $this->description ) ) { ?> |
|
60 | - <span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span> |
|
59 | + if ( ! empty($this->description)) { ?> |
|
60 | + <span class="description customize-control-description"><?php echo esc_html($this->description); ?></span> |
|
61 | 61 | <?php } ?> |
62 | 62 | <div class="layouts-selector"> |
63 | 63 | <?php |
64 | - foreach ( $this->layouts as $layout ) { |
|
64 | + foreach ($this->layouts as $layout) { |
|
65 | 65 | $sel = 'border: 1px solid transparent;'; |
66 | - if ( $value === $layout ) { |
|
66 | + if ($value === $layout) { |
|
67 | 67 | $sel = 'border: 1px solid rgb(43, 166, 203);'; |
68 | 68 | } |
69 | - echo '<img class="layout-button" style="padding:2px;' . esc_attr( $sel ) . '" src="' . esc_attr( get_template_directory_uri() ) . '/assets/images/admin/' . esc_attr( $layout ) . '.png" data-option="' . esc_attr( $layout ) . '">'; |
|
69 | + echo '<img class="layout-button" style="padding:2px;' . esc_attr($sel) . '" src="' . esc_attr(get_template_directory_uri()) . '/assets/images/admin/' . esc_attr($layout) . '.png" data-option="' . esc_attr($layout) . '">'; |
|
70 | 70 | } |
71 | 71 | ?> |
72 | - <input <?php $this->link(); ?> class="selected-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(); ?>> |
|
72 | + <input <?php $this->link(); ?> class="selected-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 | 73 | </div> |
74 | 74 | </label> |
75 | 75 | <?php |