@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly |
|
2 | +if ( ! defined('ABSPATH')) return; // Exit if accessed directly |
|
3 | 3 | |
4 | 4 | /** |
5 | 5 | * Enqueue scripts and styles. |
@@ -10,12 +10,12 @@ discard block |
||
10 | 10 | function lsx_scripts() { |
11 | 11 | global $content_width; |
12 | 12 | |
13 | - wp_enqueue_style('lsx_main_style', get_stylesheet_uri() , false, '23a2bd43791de3fa3cab2d2af5fec6a2'); |
|
13 | + wp_enqueue_style('lsx_main_style', get_stylesheet_uri(), false, '23a2bd43791de3fa3cab2d2af5fec6a2'); |
|
14 | 14 | |
15 | 15 | wp_enqueue_style('lsx_main', get_template_directory_uri() . '/css/app.css', false, '48a2bd26791de3fa7cab2d2af5fec6a2'); |
16 | 16 | |
17 | - if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { |
|
18 | - wp_enqueue_script( 'comment-reply' ); |
|
17 | + if (is_singular() && comments_open() && get_option('thread_comments')) { |
|
18 | + wp_enqueue_script('comment-reply'); |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | wp_enqueue_script('bootstrap', get_template_directory_uri() . '/js/vendor/bootstrap.min.js', array('jquery'), 'c9f983e2965b9c7888dac272e56c4f4b', false); |
@@ -26,38 +26,38 @@ discard block |
||
26 | 26 | wp_enqueue_script('picturefill', get_template_directory_uri() . '/js/vendor/picturefill.min.js', array(), null, false); |
27 | 27 | |
28 | 28 | wp_enqueue_script('masonry'); |
29 | - wp_enqueue_script('imagesLoaded', get_template_directory_uri().'/js/vendor/imagesloaded.pkgd.min.js', array('jquery','masonry')); |
|
30 | - if(defined('WP_DEBUG') && true === WP_DEBUG){ |
|
29 | + wp_enqueue_script('imagesLoaded', get_template_directory_uri() . '/js/vendor/imagesloaded.pkgd.min.js', array('jquery', 'masonry')); |
|
30 | + if (defined('WP_DEBUG') && true === WP_DEBUG) { |
|
31 | 31 | wp_enqueue_script('lsx_script', get_template_directory_uri() . '/js/lsx-script.js', array('masonry'), null, false); |
32 | - }else{ |
|
32 | + } else { |
|
33 | 33 | wp_enqueue_script('lsx_script', get_template_directory_uri() . '/js/lsx-script.min.js', array('masonry'), null, false); |
34 | 34 | } |
35 | 35 | |
36 | 36 | //Set some parameters that we can use in the JS |
37 | 37 | $is_portfolio = false; |
38 | - if(is_post_type_archive('jetpack-portfolio') || is_tax('jetpack-portfolio-type') || is_tax('jetpack-portfolio-tag') || is_page_template('page-templates/template-portfolio.php')){ |
|
38 | + if (is_post_type_archive('jetpack-portfolio') || is_tax('jetpack-portfolio-type') || is_tax('jetpack-portfolio-tag') || is_page_template('page-templates/template-portfolio.php')) { |
|
39 | 39 | $is_portfolio = true; |
40 | 40 | } |
41 | 41 | $param_array = array( |
42 | 42 | 'is_portfolio' => $is_portfolio |
43 | 43 | ); |
44 | 44 | //Set the columns for the archives |
45 | - $param_array['columns'] = apply_filters('lsx_archive_column_number',3); |
|
46 | - wp_localize_script( 'lsx_script', 'lsx_params', $param_array ); |
|
45 | + $param_array['columns'] = apply_filters('lsx_archive_column_number', 3); |
|
46 | + wp_localize_script('lsx_script', 'lsx_params', $param_array); |
|
47 | 47 | |
48 | 48 | |
49 | - wp_enqueue_style( 'fontawesome', get_template_directory_uri() . '/css/font-awesome.min.css'); |
|
49 | + wp_enqueue_style('fontawesome', get_template_directory_uri() . '/css/font-awesome.min.css'); |
|
50 | 50 | |
51 | 51 | |
52 | - if(is_child_theme() && file_exists(get_stylesheet_directory() . '/custom.css')) { |
|
53 | - wp_enqueue_style( 'child-css', get_stylesheet_directory_uri() . '/custom.css' ); |
|
52 | + if (is_child_theme() && file_exists(get_stylesheet_directory() . '/custom.css')) { |
|
53 | + wp_enqueue_style('child-css', get_stylesheet_directory_uri() . '/custom.css'); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | wp_enqueue_style('medium-break', get_template_directory_uri() . '/css/medium-nav-break.css', false); |
57 | 57 | |
58 | 58 | |
59 | - $font = get_theme_mod('lsx_font','raleway_open_sans'); |
|
60 | - switch($font){ |
|
59 | + $font = get_theme_mod('lsx_font', 'raleway_open_sans'); |
|
60 | + switch ($font) { |
|
61 | 61 | case 'raleway_open_sans': |
62 | 62 | $header_font_location = 'Raleway'; |
63 | 63 | $body_font_location = 'Open+Sans'; |
@@ -86,18 +86,18 @@ discard block |
||
86 | 86 | } |
87 | 87 | |
88 | 88 | $http_var = 'http'; |
89 | - if(is_ssl()){ $http_var .= 's'; } |
|
89 | + if (is_ssl()) { $http_var .= 's'; } |
|
90 | 90 | |
91 | 91 | //Call the Google Fonts and then Enque them. |
92 | - wp_register_style('lsx-header-font', $http_var.'://fonts.googleapis.com/css?family='.$header_font_location); |
|
93 | - wp_register_style('lsx-body-font', $http_var.'://fonts.googleapis.com/css?family='.$body_font_location); |
|
94 | - wp_enqueue_style( 'lsx-header-font'); |
|
95 | - wp_enqueue_style( 'lsx-body-font'); |
|
92 | + wp_register_style('lsx-header-font', $http_var . '://fonts.googleapis.com/css?family=' . $header_font_location); |
|
93 | + wp_register_style('lsx-body-font', $http_var . '://fonts.googleapis.com/css?family=' . $body_font_location); |
|
94 | + wp_enqueue_style('lsx-header-font'); |
|
95 | + wp_enqueue_style('lsx-body-font'); |
|
96 | 96 | |
97 | - wp_enqueue_style('lsx_font_scheme', esc_url( get_template_directory_uri() . '/css/'.$font.'.css'), false, '48a2bd26791de3fa7cab2d2af5fec6a4'); |
|
97 | + wp_enqueue_style('lsx_font_scheme', esc_url(get_template_directory_uri() . '/css/' . $font . '.css'), false, '48a2bd26791de3fa7cab2d2af5fec6a4'); |
|
98 | 98 | |
99 | 99 | } |
100 | -add_action( 'wp_enqueue_scripts', 'lsx_scripts' ); |
|
100 | +add_action('wp_enqueue_scripts', 'lsx_scripts'); |
|
101 | 101 | |
102 | 102 | /** |
103 | 103 | * Defer JavaScript |
@@ -105,14 +105,14 @@ discard block |
||
105 | 105 | * @package lsx |
106 | 106 | * @subpackage scripts |
107 | 107 | */ |
108 | -function lsx_scripts_defer_parsing( $url ) { |
|
109 | - if ( ! ( is_admin() ) ) { |
|
110 | - if ( FALSE === strpos( $url, '.js' ) ) return $url; |
|
111 | - if ( strpos( $url, 'jquery.js' ) ) return $url; |
|
112 | - if ( strpos( $url, ' defer ' ) ) return $url; |
|
108 | +function lsx_scripts_defer_parsing($url) { |
|
109 | + if ( ! (is_admin())) { |
|
110 | + if (FALSE === strpos($url, '.js')) return $url; |
|
111 | + if (strpos($url, 'jquery.js')) return $url; |
|
112 | + if (strpos($url, ' defer ')) return $url; |
|
113 | 113 | return "$url' defer onload='"; |
114 | 114 | } |
115 | 115 | |
116 | 116 | return $url; |
117 | 117 | } |
118 | -add_filter( 'clean_url', 'lsx_scripts_defer_parsing', 11, 1 ); |
|
118 | +add_filter('clean_url', 'lsx_scripts_defer_parsing', 11, 1); |
@@ -1,5 +1,8 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly |
|
2 | +if ( ! defined( 'ABSPATH' ) ) { |
|
3 | + return; |
|
4 | +} |
|
5 | +// Exit if accessed directly |
|
3 | 6 | |
4 | 7 | /** |
5 | 8 | * Enqueue scripts and styles. |
@@ -29,7 +32,7 @@ discard block |
||
29 | 32 | wp_enqueue_script('imagesLoaded', get_template_directory_uri().'/js/vendor/imagesloaded.pkgd.min.js', array('jquery','masonry')); |
30 | 33 | if(defined('WP_DEBUG') && true === WP_DEBUG){ |
31 | 34 | wp_enqueue_script('lsx_script', get_template_directory_uri() . '/js/lsx-script.js', array('masonry'), null, false); |
32 | - }else{ |
|
35 | + } else{ |
|
33 | 36 | wp_enqueue_script('lsx_script', get_template_directory_uri() . '/js/lsx-script.min.js', array('masonry'), null, false); |
34 | 37 | } |
35 | 38 | |
@@ -107,9 +110,15 @@ discard block |
||
107 | 110 | */ |
108 | 111 | function lsx_scripts_defer_parsing( $url ) { |
109 | 112 | if ( ! ( is_admin() ) ) { |
110 | - if ( FALSE === strpos( $url, '.js' ) ) return $url; |
|
111 | - if ( strpos( $url, 'jquery.js' ) ) return $url; |
|
112 | - if ( strpos( $url, ' defer ' ) ) return $url; |
|
113 | + if ( FALSE === strpos( $url, '.js' ) ) { |
|
114 | + return $url; |
|
115 | + } |
|
116 | + if ( strpos( $url, 'jquery.js' ) ) { |
|
117 | + return $url; |
|
118 | + } |
|
119 | + if ( strpos( $url, ' defer ' ) ) { |
|
120 | + return $url; |
|
121 | + } |
|
113 | 122 | return "$url' defer onload='"; |
114 | 123 | } |
115 | 124 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly |
|
2 | +if ( ! defined('ABSPATH')) return; // Exit if accessed directly |
|
3 | 3 | |
4 | 4 | /** |
5 | 5 | * Customizer Configuration File |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | * @author [email protected] <lsdev.biz> |
10 | 10 | * |
11 | 11 | */ |
12 | -if ( ! class_exists( 'LSX_Theme_Customizer' ) ) { |
|
12 | +if ( ! class_exists('LSX_Theme_Customizer')) { |
|
13 | 13 | |
14 | 14 | class LSX_Theme_Customizer { |
15 | 15 | |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | * |
30 | 30 | * @since 1.0.0 |
31 | 31 | */ |
32 | - public function __construct( $controls ) { |
|
32 | + public function __construct($controls) { |
|
33 | 33 | require get_template_directory() . '/inc/google-font.php'; |
34 | 34 | require get_template_directory() . '/inc/google-font-collection.php'; |
35 | 35 | require get_template_directory() . '/inc/customizer-core.php'; |
@@ -40,19 +40,19 @@ discard block |
||
40 | 40 | |
41 | 41 | $this->controls = $controls; |
42 | 42 | |
43 | - add_action( 'customize_preview_init', array($this,'customize_preview_js' ),20); |
|
44 | - add_action( 'customize_register', array($this,'customizer'), 11 ); |
|
43 | + add_action('customize_preview_init', array($this, 'customize_preview_js'), 20); |
|
44 | + add_action('customize_register', array($this, 'customizer'), 11); |
|
45 | 45 | |
46 | - add_action( 'wp_ajax_customizer_site_title', array($this,'ajax_site_title') ); |
|
47 | - add_action( 'wp_ajax_nopriv_customizer_site_title', array($this,'ajax_site_title') ); |
|
46 | + add_action('wp_ajax_customizer_site_title', array($this, 'ajax_site_title')); |
|
47 | + add_action('wp_ajax_nopriv_customizer_site_title', array($this, 'ajax_site_title')); |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | /** |
51 | 51 | * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. |
52 | 52 | */ |
53 | 53 | function customize_preview_js() { |
54 | - wp_enqueue_script( 'lsx_customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ) , wp_get_theme()->Version, true ); |
|
55 | - wp_localize_script( 'lsx_customizer', 'lsx_customizer_params', array( 'template_directory' => get_template_directory_uri() ) ); |
|
54 | + wp_enqueue_script('lsx_customizer', get_template_directory_uri() . '/js/customizer.js', array('customize-preview'), wp_get_theme()->Version, true); |
|
55 | + wp_localize_script('lsx_customizer', 'lsx_customizer_params', array('template_directory' => get_template_directory_uri())); |
|
56 | 56 | } |
57 | 57 | |
58 | 58 | /** |
@@ -60,40 +60,40 @@ discard block |
||
60 | 60 | * |
61 | 61 | * @since 1.0.0 |
62 | 62 | */ |
63 | - public function customizer( $wp_customize ) { |
|
63 | + public function customizer($wp_customize) { |
|
64 | 64 | // start panels |
65 | - if( !empty( $this->controls['panels'] ) ){ |
|
66 | - foreach( $this->controls['panels'] as $panel_slug => $args ){ |
|
67 | - $this->add_panel( $panel_slug, $args, $wp_customize ); |
|
65 | + if ( ! empty($this->controls['panels'])) { |
|
66 | + foreach ($this->controls['panels'] as $panel_slug => $args) { |
|
67 | + $this->add_panel($panel_slug, $args, $wp_customize); |
|
68 | 68 | } |
69 | 69 | } |
70 | 70 | |
71 | 71 | // start sections |
72 | - if( !empty( $this->controls['sections'] ) ){ |
|
73 | - foreach( $this->controls['sections'] as $section_slug => $args ){ |
|
74 | - $this->add_section( $section_slug, $args, $wp_customize ); |
|
72 | + if ( ! empty($this->controls['sections'])) { |
|
73 | + foreach ($this->controls['sections'] as $section_slug => $args) { |
|
74 | + $this->add_section($section_slug, $args, $wp_customize); |
|
75 | 75 | } |
76 | 76 | } |
77 | 77 | |
78 | 78 | // start settings |
79 | - if( !empty( $this->controls['settings'] ) ){ |
|
80 | - foreach( $this->controls['settings'] as $settings_slug => $args ){ |
|
81 | - $this->add_setting( $settings_slug, $args, $wp_customize ); |
|
79 | + if ( ! empty($this->controls['settings'])) { |
|
80 | + foreach ($this->controls['settings'] as $settings_slug => $args) { |
|
81 | + $this->add_setting($settings_slug, $args, $wp_customize); |
|
82 | 82 | } |
83 | 83 | } |
84 | 84 | |
85 | 85 | // start fields |
86 | - if( !empty( $this->controls['fields'] ) ){ |
|
87 | - foreach( $this->controls['fields'] as $field_slug => $args ){ |
|
88 | - $this->add_control( $field_slug, $args, $wp_customize ); |
|
86 | + if ( ! empty($this->controls['fields'])) { |
|
87 | + foreach ($this->controls['fields'] as $field_slug => $args) { |
|
88 | + $this->add_control($field_slug, $args, $wp_customize); |
|
89 | 89 | } |
90 | 90 | } |
91 | 91 | |
92 | - $wp_customize->get_setting( 'blogname' )->transport = 'postMessage'; |
|
93 | - $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; |
|
94 | - $wp_customize->get_setting( 'background_color' )->transport = 'postMessage'; |
|
92 | + $wp_customize->get_setting('blogname')->transport = 'postMessage'; |
|
93 | + $wp_customize->get_setting('blogdescription')->transport = 'postMessage'; |
|
94 | + $wp_customize->get_setting('background_color')->transport = 'postMessage'; |
|
95 | 95 | |
96 | - $wp_customize->remove_control( 'background_color' ); |
|
96 | + $wp_customize->remove_control('background_color'); |
|
97 | 97 | } |
98 | 98 | |
99 | 99 | /** |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | * |
102 | 102 | * @since 1.0.0 |
103 | 103 | */ |
104 | - private function add_panel( $slug, $args, $wp_customize ) { |
|
104 | + private function add_panel($slug, $args, $wp_customize) { |
|
105 | 105 | $default_args = array( |
106 | 106 | 'title' => null, |
107 | 107 | 'description' => null, |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | |
110 | 110 | $wp_customize->add_panel( |
111 | 111 | $slug, |
112 | - array_merge( $default_args, $args ) |
|
112 | + array_merge($default_args, $args) |
|
113 | 113 | ); |
114 | 114 | } |
115 | 115 | |
@@ -118,14 +118,14 @@ discard block |
||
118 | 118 | * |
119 | 119 | * @since 1.0.0 |
120 | 120 | */ |
121 | - private function add_section( $slug, $args, $wp_customize ) { |
|
121 | + private function add_section($slug, $args, $wp_customize) { |
|
122 | 122 | $default_args = array( |
123 | 123 | 'capability' => 'edit_theme_options', //Capability needed to tweak |
124 | 124 | 'description' => null, //Descriptive tooltip |
125 | 125 | ); |
126 | 126 | |
127 | - $wp_customize->add_section( $slug, |
|
128 | - array_merge( $default_args, $args ) |
|
127 | + $wp_customize->add_section($slug, |
|
128 | + array_merge($default_args, $args) |
|
129 | 129 | ); |
130 | 130 | } |
131 | 131 | |
@@ -134,15 +134,15 @@ discard block |
||
134 | 134 | * |
135 | 135 | * @since 1.0.0 |
136 | 136 | */ |
137 | - private function add_setting( $slug, $args, $wp_customize ) { |
|
138 | - $wp_customize->add_setting( $slug, //No need to use a SERIALIZED name, as `theme_mod` settings already live under one db record |
|
139 | - array_merge( array( |
|
137 | + private function add_setting($slug, $args, $wp_customize) { |
|
138 | + $wp_customize->add_setting($slug, //No need to use a SERIALIZED name, as `theme_mod` settings already live under one db record |
|
139 | + array_merge(array( |
|
140 | 140 | 'default' => null, //Default setting/value to save |
141 | 141 | 'type' => 'theme_mod', //Is this an 'option' or a 'theme_mod'? |
142 | 142 | 'capability' => 'edit_theme_options', //Optional. Special permissions for accessing this setting. |
143 | 143 | 'transport' => 'postMessage', //What triggers a refresh of the setting? 'refresh' or 'postMessage' (instant)? |
144 | 144 | 'sanitize_callback' => 'lsx_sanitize_choices' |
145 | - ), $args ) |
|
145 | + ), $args) |
|
146 | 146 | ); |
147 | 147 | } |
148 | 148 | |
@@ -151,28 +151,28 @@ discard block |
||
151 | 151 | * |
152 | 152 | * @since 1.0.0 |
153 | 153 | */ |
154 | - private function add_control( $slug, $args, $wp_customize ) { |
|
154 | + private function add_control($slug, $args, $wp_customize) { |
|
155 | 155 | $default_args = array( |
156 | 156 | |
157 | 157 | ); |
158 | 158 | |
159 | - if( isset( $args['control'] ) && class_exists( $args['control'] )){ |
|
159 | + if (isset($args['control']) && class_exists($args['control'])) { |
|
160 | 160 | |
161 | 161 | $control_class = $args['control']; |
162 | - unset( $args['control'] ); |
|
162 | + unset($args['control']); |
|
163 | 163 | |
164 | - $control = new $control_class( $wp_customize, $slug, array_merge( $default_args, $args ) ); |
|
165 | - $wp_customize->add_control( $control ); |
|
164 | + $control = new $control_class($wp_customize, $slug, array_merge($default_args, $args)); |
|
165 | + $wp_customize->add_control($control); |
|
166 | 166 | |
167 | - }else{ |
|
167 | + } else { |
|
168 | 168 | |
169 | - if( isset( $args['control'] ) ){ |
|
170 | - unset( $args['control'] ); |
|
169 | + if (isset($args['control'])) { |
|
170 | + unset($args['control']); |
|
171 | 171 | } |
172 | 172 | |
173 | 173 | $wp_customize->add_control( |
174 | 174 | $slug, |
175 | - array_merge( $default_args, $args ) |
|
175 | + array_merge($default_args, $args) |
|
176 | 176 | ); |
177 | 177 | } |
178 | 178 | } |
@@ -1,5 +1,8 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly |
|
2 | +if ( ! defined( 'ABSPATH' ) ) { |
|
3 | + return; |
|
4 | +} |
|
5 | +// Exit if accessed directly |
|
3 | 6 | |
4 | 7 | /** |
5 | 8 | * Customizer Configuration File |
@@ -164,7 +167,7 @@ discard block |
||
164 | 167 | $control = new $control_class( $wp_customize, $slug, array_merge( $default_args, $args ) ); |
165 | 168 | $wp_customize->add_control( $control ); |
166 | 169 | |
167 | - }else{ |
|
170 | + } else{ |
|
168 | 171 | |
169 | 172 | if( isset( $args['control'] ) ){ |
170 | 173 | unset( $args['control'] ); |
@@ -18,7 +18,7 @@ |
||
18 | 18 | */ |
19 | 19 | |
20 | 20 | function lsx_events_styles() { |
21 | - wp_enqueue_style( 'events', get_template_directory_uri() . '/css/the-events-calendar.css' ); |
|
21 | + wp_enqueue_style( 'events', get_template_directory_uri() . '/css/the-events-calendar.css' ); |
|
22 | 22 | } |
23 | 23 | add_action( 'wp_enqueue_scripts', 'lsx_events_styles' ); |
24 | 24 |
@@ -18,9 +18,9 @@ discard block |
||
18 | 18 | */ |
19 | 19 | |
20 | 20 | function lsx_events_styles() { |
21 | - wp_enqueue_style( 'events', get_template_directory_uri() . '/css/the-events-calendar.css' ); |
|
21 | + wp_enqueue_style('events', get_template_directory_uri() . '/css/the-events-calendar.css'); |
|
22 | 22 | } |
23 | -add_action( 'wp_enqueue_scripts', 'lsx_events_styles' ); |
|
23 | +add_action('wp_enqueue_scripts', 'lsx_events_styles'); |
|
24 | 24 | |
25 | 25 | |
26 | 26 | /** |
@@ -32,41 +32,41 @@ discard block |
||
32 | 32 | |
33 | 33 | function lsx_tribe_breadcrumbs($output) { |
34 | 34 | global $wp_query; |
35 | - if( (isset($wp_query->tribe_is_event) && true === $wp_query->tribe_is_event) || (isset($wp_query->query_vars['post_type']) && !is_array($wp_query->query_vars['post_type']) && 'tribe_venue' === $wp_query->query_vars['post_type'])){ |
|
36 | - if(function_exists('woocommerce_breadcrumb')){ |
|
35 | + if ((isset($wp_query->tribe_is_event) && true === $wp_query->tribe_is_event) || (isset($wp_query->query_vars['post_type']) && ! is_array($wp_query->query_vars['post_type']) && 'tribe_venue' === $wp_query->query_vars['post_type'])) { |
|
36 | + if (function_exists('woocommerce_breadcrumb')) { |
|
37 | 37 | $closing_div = '</nav>'; |
38 | 38 | |
39 | - if( is_single()) { |
|
40 | - $output = str_replace('Page','<a href="'.get_post_type_archive_link( 'tribe_events' ).'">'.__('Events','lsx').'</a>',$output); |
|
41 | - if(isset($wp_query->query_vars['eventDisplay']) && 'all' === $wp_query->query_vars['eventDisplay']){ |
|
42 | - $output = str_replace($closing_div,get_the_title($wp_query->query_vars['post_parent']).$closing_div,$output); |
|
43 | - }else{ |
|
39 | + if (is_single()) { |
|
40 | + $output = str_replace('Page', '<a href="' . get_post_type_archive_link('tribe_events') . '">' . __('Events', 'lsx') . '</a>', $output); |
|
41 | + if (isset($wp_query->query_vars['eventDisplay']) && 'all' === $wp_query->query_vars['eventDisplay']) { |
|
42 | + $output = str_replace($closing_div, get_the_title($wp_query->query_vars['post_parent']) . $closing_div, $output); |
|
43 | + } else { |
|
44 | 44 | $single_event = get_queried_object(); |
45 | - $output = str_replace($closing_div,apply_filters('the_title',$single_event->post_title).$closing_div,$output); |
|
45 | + $output = str_replace($closing_div, apply_filters('the_title', $single_event->post_title) . $closing_div, $output); |
|
46 | 46 | } |
47 | - }elseif( is_tax()) { |
|
47 | + }elseif (is_tax()) { |
|
48 | 48 | $tax_event = get_queried_object(); |
49 | - $output = str_replace('Page','<a href="'.get_post_type_archive_link( 'tribe_events' ).'">'.__('Events','lsx').'</a>',$output); |
|
50 | - $output = str_replace($closing_div,' / '.apply_filters('the_title',$tax_event->name).$closing_div,$output); |
|
51 | - }else{ |
|
52 | - $output = str_replace('Page',__('Events','lsx'),$output); |
|
49 | + $output = str_replace('Page', '<a href="' . get_post_type_archive_link('tribe_events') . '">' . __('Events', 'lsx') . '</a>', $output); |
|
50 | + $output = str_replace($closing_div, ' / ' . apply_filters('the_title', $tax_event->name) . $closing_div, $output); |
|
51 | + } else { |
|
52 | + $output = str_replace('Page', __('Events', 'lsx'), $output); |
|
53 | 53 | } |
54 | - }elseif(function_exists('yoast_breadcrumb')){ |
|
54 | + }elseif (function_exists('yoast_breadcrumb')) { |
|
55 | 55 | $closing_div = '</div>'; |
56 | - $last_breadcrumb = '<span class="breadcrumb_last">'.__('Events','lsx').'</span>'; |
|
56 | + $last_breadcrumb = '<span class="breadcrumb_last">' . __('Events', 'lsx') . '</span>'; |
|
57 | 57 | |
58 | - if( is_single()) { |
|
58 | + if (is_single()) { |
|
59 | 59 | $single_event = get_queried_object(); |
60 | - $output = str_replace($closing_div,'<a href="'.get_post_type_archive_link( 'tribe_events' ).'">'.__('Events','lsx').'</a> / '.apply_filters('the_title',$single_event->post_title),$output); |
|
61 | - }elseif( is_tax()) { |
|
60 | + $output = str_replace($closing_div, '<a href="' . get_post_type_archive_link('tribe_events') . '">' . __('Events', 'lsx') . '</a> / ' . apply_filters('the_title', $single_event->post_title), $output); |
|
61 | + }elseif (is_tax()) { |
|
62 | 62 | $tax_event = get_queried_object(); |
63 | - $output = str_replace($last_breadcrumb,'<a href="'.get_post_type_archive_link( 'tribe_events' ).'">'.__('Events','lsx').'</a> / '.apply_filters('the_title',$tax_event->name),$output); |
|
63 | + $output = str_replace($last_breadcrumb, '<a href="' . get_post_type_archive_link('tribe_events') . '">' . __('Events', 'lsx') . '</a> / ' . apply_filters('the_title', $tax_event->name), $output); |
|
64 | 64 | |
65 | - }else{ |
|
66 | - $output = str_replace('Page',__('Events','lsx'),$output); |
|
65 | + } else { |
|
66 | + $output = str_replace('Page', __('Events', 'lsx'), $output); |
|
67 | 67 | } |
68 | 68 | } |
69 | 69 | } |
70 | 70 | return $output; |
71 | 71 | } |
72 | -add_filter( 'lsx_breadcrumbs', 'lsx_tribe_breadcrumbs',1,10 ); |
|
73 | 72 | \ No newline at end of file |
73 | +add_filter('lsx_breadcrumbs', 'lsx_tribe_breadcrumbs', 1, 10); |
|
74 | 74 | \ No newline at end of file |
@@ -40,29 +40,29 @@ |
||
40 | 40 | $output = str_replace('Page','<a href="'.get_post_type_archive_link( 'tribe_events' ).'">'.__('Events','lsx').'</a>',$output); |
41 | 41 | if(isset($wp_query->query_vars['eventDisplay']) && 'all' === $wp_query->query_vars['eventDisplay']){ |
42 | 42 | $output = str_replace($closing_div,get_the_title($wp_query->query_vars['post_parent']).$closing_div,$output); |
43 | - }else{ |
|
43 | + } else{ |
|
44 | 44 | $single_event = get_queried_object(); |
45 | 45 | $output = str_replace($closing_div,apply_filters('the_title',$single_event->post_title).$closing_div,$output); |
46 | 46 | } |
47 | - }elseif( is_tax()) { |
|
47 | + } elseif( is_tax()) { |
|
48 | 48 | $tax_event = get_queried_object(); |
49 | 49 | $output = str_replace('Page','<a href="'.get_post_type_archive_link( 'tribe_events' ).'">'.__('Events','lsx').'</a>',$output); |
50 | 50 | $output = str_replace($closing_div,' / '.apply_filters('the_title',$tax_event->name).$closing_div,$output); |
51 | - }else{ |
|
51 | + } else{ |
|
52 | 52 | $output = str_replace('Page',__('Events','lsx'),$output); |
53 | 53 | } |
54 | - }elseif(function_exists('yoast_breadcrumb')){ |
|
54 | + } elseif(function_exists('yoast_breadcrumb')){ |
|
55 | 55 | $closing_div = '</div>'; |
56 | 56 | $last_breadcrumb = '<span class="breadcrumb_last">'.__('Events','lsx').'</span>'; |
57 | 57 | |
58 | 58 | if( is_single()) { |
59 | 59 | $single_event = get_queried_object(); |
60 | 60 | $output = str_replace($closing_div,'<a href="'.get_post_type_archive_link( 'tribe_events' ).'">'.__('Events','lsx').'</a> / '.apply_filters('the_title',$single_event->post_title),$output); |
61 | - }elseif( is_tax()) { |
|
61 | + } elseif( is_tax()) { |
|
62 | 62 | $tax_event = get_queried_object(); |
63 | 63 | $output = str_replace($last_breadcrumb,'<a href="'.get_post_type_archive_link( 'tribe_events' ).'">'.__('Events','lsx').'</a> / '.apply_filters('the_title',$tax_event->name),$output); |
64 | 64 | |
65 | - }else{ |
|
65 | + } else{ |
|
66 | 66 | $output = str_replace('Page',__('Events','lsx'),$output); |
67 | 67 | } |
68 | 68 | } |
@@ -1,5 +1,8 @@ |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly |
|
2 | +if ( ! defined( 'ABSPATH' ) ) { |
|
3 | + return; |
|
4 | +} |
|
5 | +// Exit if accessed directly |
|
3 | 6 | |
4 | 7 | /** |
5 | 8 | * Customize Swatch Control Class |
@@ -1,12 +1,12 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly |
|
2 | +if ( ! defined('ABSPATH')) return; // Exit if accessed directly |
|
3 | 3 | |
4 | 4 | /** |
5 | 5 | * Customize Swatch Control Class |
6 | 6 | * |
7 | 7 | * @since 1.0.0 |
8 | 8 | */ |
9 | -if( !class_exists( 'WP_Customize_Control' ) ){ |
|
9 | +if ( ! class_exists('WP_Customize_Control')) { |
|
10 | 10 | return; |
11 | 11 | } |
12 | 12 | class LSX_Customize_Layout_Control extends WP_Customize_Control { |
@@ -38,9 +38,9 @@ discard block |
||
38 | 38 | * @param string $id |
39 | 39 | * @param array $args |
40 | 40 | */ |
41 | - public function __construct( $manager, $id, $args = array() ) { |
|
42 | - parent::__construct( $manager, $id, $args ); |
|
43 | - if( !empty( $args['choices'] ) ){ |
|
41 | + public function __construct($manager, $id, $args = array()) { |
|
42 | + parent::__construct($manager, $id, $args); |
|
43 | + if ( ! empty($args['choices'])) { |
|
44 | 44 | $this->layouts = $args['choices']; |
45 | 45 | } |
46 | 46 | } |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | */ |
53 | 53 | public function enqueue() { |
54 | 54 | // |
55 | - wp_enqueue_script( 'lsx-layout-control', get_template_directory_uri() .'/js/customizer-layout.js', array('jquery'), null, true ); |
|
55 | + wp_enqueue_script('lsx-layout-control', get_template_directory_uri() . '/js/customizer-layout.js', array('jquery'), null, true); |
|
56 | 56 | } |
57 | 57 | |
58 | 58 | /** |
@@ -62,30 +62,30 @@ discard block |
||
62 | 62 | */ |
63 | 63 | public function render_content() { |
64 | 64 | |
65 | - $post_id = 'customize-control-' . str_replace( '[', '-', str_replace( ']', '', $this->id ) ); |
|
65 | + $post_id = 'customize-control-' . str_replace('[', '-', str_replace(']', '', $this->id)); |
|
66 | 66 | $class = 'customize-control customize-control-' . $this->type; |
67 | 67 | $value = $this->value(); |
68 | 68 | |
69 | 69 | ?> |
70 | 70 | <label> |
71 | - <?php if ( ! empty( $this->label ) ) { ?> |
|
72 | - <span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span> |
|
71 | + <?php if ( ! empty($this->label)) { ?> |
|
72 | + <span class="customize-control-title"><?php echo esc_html($this->label); ?></span> |
|
73 | 73 | <?php } |
74 | - if ( ! empty( $this->description ) ) { ?> |
|
75 | - <span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span> |
|
74 | + if ( ! empty($this->description)) { ?> |
|
75 | + <span class="description customize-control-description"><?php echo esc_html($this->description); ?></span> |
|
76 | 76 | <?php } ?> |
77 | 77 | <div class="layouts-selector"> |
78 | 78 | <?php |
79 | - foreach( $this->layouts as $layout ){ |
|
79 | + foreach ($this->layouts as $layout) { |
|
80 | 80 | $sel = 'border: 1px solid transparent;'; |
81 | - if( $value == $layout ){ |
|
81 | + if ($value == $layout) { |
|
82 | 82 | $sel = 'border: 1px solid rgb(43, 166, 203);'; |
83 | 83 | } |
84 | - echo '<img class="layout-button" style="padding:2px;'. esc_attr( $sel ) .'" src="' . esc_attr( get_template_directory_uri() ) .'/img/' . esc_attr( $layout ) . '.png" data-option="' . esc_attr( $layout ) . '">'; |
|
84 | + echo '<img class="layout-button" style="padding:2px;' . esc_attr($sel) . '" src="' . esc_attr(get_template_directory_uri()) . '/img/' . esc_attr($layout) . '.png" data-option="' . esc_attr($layout) . '">'; |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | ?> |
88 | - <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(); ?>> |
|
88 | + <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(); ?>> |
|
89 | 89 | </div> |
90 | 90 | </label> |
91 | 91 | <?php |
@@ -1,5 +1,8 @@ |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly |
|
2 | +if ( ! defined( 'ABSPATH' ) ) { |
|
3 | + return; |
|
4 | +} |
|
5 | +// Exit if accessed directly |
|
3 | 6 | |
4 | 7 | /** |
5 | 8 | * Customize Swatch Control Class |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | * @package lsx |
6 | 6 | */ |
7 | -if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly |
|
7 | +if ( ! defined('ABSPATH')) return; // Exit if accessed directly |
|
8 | 8 | |
9 | 9 | define('LSX_VERSION', '1.7.3'); |
10 | 10 | |
@@ -21,22 +21,22 @@ discard block |
||
21 | 21 | require get_template_directory() . '/inc/comment-walker.php'; |
22 | 22 | require get_template_directory() . '/inc/jetpack.php'; |
23 | 23 | require get_template_directory() . '/inc/lazyload.php'; |
24 | -if(class_exists('BuddyPress')){ |
|
24 | +if (class_exists('BuddyPress')) { |
|
25 | 25 | require get_template_directory() . '/inc/buddypress.php'; |
26 | 26 | } |
27 | -if(class_exists('WooCommerce')){ |
|
27 | +if (class_exists('WooCommerce')) { |
|
28 | 28 | require get_template_directory() . '/inc/woocommerce.php'; |
29 | 29 | } |
30 | -if(class_exists('WP_Job_Manager')){ |
|
30 | +if (class_exists('WP_Job_Manager')) { |
|
31 | 31 | require get_template_directory() . '/inc/wp-job-manager.php'; |
32 | 32 | } |
33 | -if(class_exists('Tribe__Events__Main')){ |
|
33 | +if (class_exists('Tribe__Events__Main')) { |
|
34 | 34 | require get_template_directory() . '/inc/the-events-calendar.php'; |
35 | 35 | } |
36 | 36 | require get_template_directory() . '/inc/template-tags.php'; |
37 | 37 | require get_template_directory() . '/inc/extras.php'; |
38 | 38 | require get_template_directory() . '/inc/wp_bootstrap_navwalker.php'; |
39 | -if(class_exists('Sensei_WC')){ |
|
39 | +if (class_exists('Sensei_WC')) { |
|
40 | 40 | require get_template_directory() . '/inc/sensei.php'; |
41 | 41 | } |
42 | 42 | |
@@ -48,10 +48,10 @@ discard block |
||
48 | 48 | * @category customizer |
49 | 49 | * @return $lsx_controls array() |
50 | 50 | */ |
51 | -function lsx_customizer_core_controls( $lsx_controls ) { |
|
51 | +function lsx_customizer_core_controls($lsx_controls) { |
|
52 | 52 | $lsx_controls['sections']['lsx-core'] = array( |
53 | - 'title' => esc_html__( 'Core Settings', 'lsx' ), |
|
54 | - 'description' => __( 'Change the core settings.', 'lsx' ), |
|
53 | + 'title' => esc_html__('Core Settings', 'lsx'), |
|
54 | + 'description' => __('Change the core settings.', 'lsx'), |
|
55 | 55 | 'priority' => 21 |
56 | 56 | ); |
57 | 57 | |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | ); |
63 | 63 | |
64 | 64 | $lsx_controls['fields']['lsx_lazyload_status'] = array( |
65 | - 'label' => __( 'Lazy Loading Images', 'lsx' ), |
|
65 | + 'label' => __('Lazy Loading Images', 'lsx'), |
|
66 | 66 | 'section' => 'lsx-core', |
67 | 67 | 'type' => 'checkbox', |
68 | 68 | ); |
@@ -74,14 +74,14 @@ discard block |
||
74 | 74 | ); |
75 | 75 | |
76 | 76 | $lsx_controls['fields']['lsx_preloader_content_status'] = array( |
77 | - 'label' => __( 'Preloader Content', 'lsx' ), |
|
77 | + 'label' => __('Preloader Content', 'lsx'), |
|
78 | 78 | 'section' => 'lsx-core', |
79 | 79 | 'type' => 'checkbox', |
80 | 80 | ); |
81 | 81 | |
82 | 82 | return $lsx_controls; |
83 | 83 | } |
84 | -add_filter( 'lsx_customizer_controls', 'lsx_customizer_core_controls' ); |
|
84 | +add_filter('lsx_customizer_controls', 'lsx_customizer_core_controls'); |
|
85 | 85 | |
86 | 86 | /** |
87 | 87 | * Returns an array of the colour scheme picker. |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | * @category customizer |
92 | 92 | * @return $lsx_controls array() |
93 | 93 | */ |
94 | -function lsx_customizer_colour_scheme_controls( $lsx_controls ) { |
|
94 | +function lsx_customizer_colour_scheme_controls($lsx_controls) { |
|
95 | 95 | global $customizer_colour_names; |
96 | 96 | global $customizer_colour_choices; |
97 | 97 | |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | ); |
103 | 103 | |
104 | 104 | $lsx_controls['fields']['color_scheme'] = array( |
105 | - 'label' => esc_html__( 'Base Color Scheme', 'lsx' ), |
|
105 | + 'label' => esc_html__('Base Color Scheme', 'lsx'), |
|
106 | 106 | 'section' => 'colors', |
107 | 107 | 'type' => 'select', |
108 | 108 | 'priority' => 1, |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | |
113 | 113 | $counter = 0; |
114 | 114 | |
115 | - foreach ( $customizer_colour_names as $key => $value ) { |
|
115 | + foreach ($customizer_colour_names as $key => $value) { |
|
116 | 116 | $lsx_controls['settings'][$key] = array( |
117 | 117 | 'default' => $customizer_colour_choices['default']['colors'][$counter], |
118 | 118 | 'type' => 'theme_mod', |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | |
132 | 132 | return $lsx_controls; |
133 | 133 | } |
134 | -add_filter( 'lsx_customizer_controls', 'lsx_customizer_colour_scheme_controls' ); |
|
134 | +add_filter('lsx_customizer_controls', 'lsx_customizer_colour_scheme_controls'); |
|
135 | 135 | |
136 | 136 | /** |
137 | 137 | * Returns an array of the layout panel. |
@@ -142,56 +142,56 @@ discard block |
||
142 | 142 | * @return $lsx_controls array() |
143 | 143 | */ |
144 | 144 | function lsx_customizer_layout_controls($lsx_controls) { |
145 | - $lsx_controls['settings']['lsx_header_layout'] = array( |
|
145 | + $lsx_controls['settings']['lsx_header_layout'] = array( |
|
146 | 146 | 'default' => 'inline', //Default setting/value to save |
147 | 147 | 'type' => 'theme_mod', //Is this an 'option' or a 'theme_mod'? |
148 | 148 | 'transport' => 'postMessage', //What triggers a refresh of the setting? 'refresh' or 'postMessage' (instant)? |
149 | 149 | ); |
150 | 150 | $lsx_controls['fields']['lsx_header_layout'] = array( |
151 | - 'label' => __('Header','lsx'), |
|
151 | + 'label' => __('Header', 'lsx'), |
|
152 | 152 | 'section' => 'lsx-layout', |
153 | 153 | 'control' => 'LSX_Customize_Header_Layout_Control', |
154 | - 'choices' => array('central','expanded','inline') |
|
154 | + 'choices' => array('central', 'expanded', 'inline') |
|
155 | 155 | ); |
156 | 156 | $lsx_controls['sections']['lsx-layout'] = array( |
157 | - 'title' => esc_html__( 'Layout', 'lsx' ), |
|
158 | - 'description' => __( 'Change the layout sitewide. If your homepage is set to use a page with a template, the following will not apply to it.', 'lsx' ), |
|
157 | + 'title' => esc_html__('Layout', 'lsx'), |
|
158 | + 'description' => __('Change the layout sitewide. If your homepage is set to use a page with a template, the following will not apply to it.', 'lsx'), |
|
159 | 159 | 'priority' => 22 |
160 | 160 | ); |
161 | - $lsx_controls['settings']['lsx_layout'] = array( |
|
161 | + $lsx_controls['settings']['lsx_layout'] = array( |
|
162 | 162 | 'default' => '2cr', //Default setting/value to save |
163 | 163 | 'type' => 'theme_mod', //Is this an 'option' or a 'theme_mod'? |
164 | 164 | 'transport' => 'refresh', //What triggers a refresh of the setting? 'refresh' or 'postMessage' (instant)? |
165 | 165 | ); |
166 | - $lsx_controls['settings']['lsx_header_fixed'] = array( |
|
166 | + $lsx_controls['settings']['lsx_header_fixed'] = array( |
|
167 | 167 | 'default' => false, //Default setting/value to save |
168 | 168 | 'sanitize_callback' => 'lsx_sanitize_checkbox', |
169 | 169 | 'transport' => 'postMessage', //What triggers a refresh of the setting? 'refresh' or 'postMessage' (instant)? |
170 | 170 | ); |
171 | 171 | $lsx_controls['fields']['lsx_header_fixed'] = array( |
172 | - 'label' => __('Fixed Header','lsx'), |
|
172 | + 'label' => __('Fixed Header', 'lsx'), |
|
173 | 173 | 'section' => 'lsx-layout', |
174 | 174 | 'type' => 'checkbox', |
175 | 175 | ); |
176 | - $lsx_controls['settings']['lsx_header_search'] = array( |
|
176 | + $lsx_controls['settings']['lsx_header_search'] = array( |
|
177 | 177 | 'default' => false, //Default setting/value to save |
178 | 178 | 'sanitize_callback' => 'lsx_sanitize_checkbox', |
179 | 179 | 'transport' => 'postMessage', //What triggers a refresh of the setting? 'refresh' or 'postMessage' (instant)? |
180 | 180 | ); |
181 | 181 | $lsx_controls['fields']['lsx_header_search'] = array( |
182 | - 'label' => __('Search Box in Header','lsx'), |
|
182 | + 'label' => __('Search Box in Header', 'lsx'), |
|
183 | 183 | 'section' => 'lsx-layout', |
184 | 184 | 'type' => 'checkbox', |
185 | 185 | ); |
186 | 186 | $lsx_controls['fields']['lsx_layout'] = array( |
187 | - 'label' => __('Body','lsx'), |
|
187 | + 'label' => __('Body', 'lsx'), |
|
188 | 188 | 'section' => 'lsx-layout', |
189 | 189 | 'control' => 'LSX_Customize_Layout_Control', |
190 | - 'choices' => array('1c','2cr','2cl') |
|
190 | + 'choices' => array('1c', '2cr', '2cl') |
|
191 | 191 | ); |
192 | 192 | return $lsx_controls; |
193 | 193 | } |
194 | -add_filter('lsx_customizer_controls','lsx_customizer_layout_controls'); |
|
194 | +add_filter('lsx_customizer_controls', 'lsx_customizer_layout_controls'); |
|
195 | 195 | |
196 | 196 | /** |
197 | 197 | * Returns an array of the font controls. |
@@ -203,11 +203,11 @@ discard block |
||
203 | 203 | */ |
204 | 204 | function lsx_customizer_font_controls($lsx_controls) { |
205 | 205 | $lsx_controls['sections']['lsx-font'] = array( |
206 | - 'title' => __( 'Font', 'lsx' ), |
|
206 | + 'title' => __('Font', 'lsx'), |
|
207 | 207 | 'description' => 'Change the fonts sitewide.', |
208 | 208 | 'priority' => 41 |
209 | 209 | ); |
210 | - $lsx_controls['settings']['lsx_font'] = array( |
|
210 | + $lsx_controls['settings']['lsx_font'] = array( |
|
211 | 211 | 'default' => 'raleway_open_sans', //Default setting/value to save |
212 | 212 | 'type' => 'theme_mod', //Is this an 'option' or a 'theme_mod'? |
213 | 213 | 'transport' => 'refresh', //What triggers a refresh of the setting? 'refresh' or 'postMessage' (instant)? |
@@ -221,13 +221,13 @@ discard block |
||
221 | 221 | 'choices' => array( |
222 | 222 | 'raleway_open_sans' => array( |
223 | 223 | 'header' => array( |
224 | - "title" => __( 'Raleway', 'lsx' ), |
|
224 | + "title" => __('Raleway', 'lsx'), |
|
225 | 225 | "location" => "Raleway", |
226 | 226 | "cssDeclaration" => "'Raleway', sans-serif", |
227 | 227 | "cssClass" => "raleway", |
228 | 228 | ), |
229 | 229 | 'body' => array( |
230 | - "title" => __( 'Open Sans', 'lsx' ), |
|
230 | + "title" => __('Open Sans', 'lsx'), |
|
231 | 231 | "location" => "Open+Sans", |
232 | 232 | "cssDeclaration" => "'Open Sans', sans-serif", |
233 | 233 | "cssClass" => "openSans" |
@@ -235,13 +235,13 @@ discard block |
||
235 | 235 | ), |
236 | 236 | 'noto_serif_noto_sans' => array( |
237 | 237 | 'header' => array( |
238 | - "title" => __( 'Noto Serif', 'lsx' ), |
|
238 | + "title" => __('Noto Serif', 'lsx'), |
|
239 | 239 | "location" => "Noto+Serif", |
240 | 240 | "cssDeclaration" => "'Noto Serif', serif", |
241 | 241 | "cssClass" => "notoSerif", |
242 | 242 | ), |
243 | 243 | 'body' => array( |
244 | - "title" => __( 'Noto Sans', 'lsx' ), |
|
244 | + "title" => __('Noto Sans', 'lsx'), |
|
245 | 245 | "location" => "Noto+Sans", |
246 | 246 | "cssDeclaration" => "'Noto Sans', sans-serif", |
247 | 247 | "cssClass" => "notoSans", |
@@ -249,13 +249,13 @@ discard block |
||
249 | 249 | ), |
250 | 250 | 'noto_sans_noto_sans' => array( |
251 | 251 | 'header' => array( |
252 | - "title" => __( 'Noto Sans', 'lsx' ), |
|
252 | + "title" => __('Noto Sans', 'lsx'), |
|
253 | 253 | "location" => "Noto+Sans", |
254 | 254 | "cssDeclaration" => "'Noto Sans', sans-serif", |
255 | 255 | "cssClass" => "notoSans", |
256 | 256 | ), |
257 | 257 | 'body' => array( |
258 | - "title" => __( 'Noto Sans', 'lsx' ), |
|
258 | + "title" => __('Noto Sans', 'lsx'), |
|
259 | 259 | "location" => "Noto+Sans", |
260 | 260 | "cssDeclaration" => "'Noto Sans', sans-serif", |
261 | 261 | "cssClass" => "notoSans", |
@@ -263,13 +263,13 @@ discard block |
||
263 | 263 | ), |
264 | 264 | 'alegreya_open_sans' => array( |
265 | 265 | 'header' => array( |
266 | - "title" => __( 'Alegreya', 'lsx' ), |
|
266 | + "title" => __('Alegreya', 'lsx'), |
|
267 | 267 | "location" => "Alegreya", |
268 | 268 | "cssDeclaration" => "'Alegreya', serif", |
269 | 269 | "cssClass" => "alegreya", |
270 | 270 | ), |
271 | 271 | 'body' => array( |
272 | - "title" => __( 'Open Sans', 'lsx' ), |
|
272 | + "title" => __('Open Sans', 'lsx'), |
|
273 | 273 | "location" => "Open+Sans", |
274 | 274 | "cssDeclaration" => "'Open Sans', sans-serif", |
275 | 275 | "cssClass" => "openSans" |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | ); |
281 | 281 | return $lsx_controls; |
282 | 282 | } |
283 | -add_filter('lsx_customizer_controls','lsx_customizer_font_controls'); |
|
283 | +add_filter('lsx_customizer_controls', 'lsx_customizer_font_controls'); |
|
284 | 284 | |
285 | 285 | /** |
286 | 286 | * Returns an array of $controls for the customizer class to generate. |
@@ -290,12 +290,12 @@ discard block |
||
290 | 290 | * @category customizer |
291 | 291 | * @return $lsx_controls array() |
292 | 292 | */ |
293 | -function lsx_get_customizer_controls(){ |
|
293 | +function lsx_get_customizer_controls() { |
|
294 | 294 | $lsx_controls = array(); |
295 | 295 | $lsx_controls = apply_filters('lsx_customizer_controls', $lsx_controls); |
296 | 296 | return $lsx_controls; |
297 | 297 | } |
298 | -$lsx_customizer = new LSX_Theme_Customizer( lsx_get_customizer_controls() ); |
|
298 | +$lsx_customizer = new LSX_Theme_Customizer(lsx_get_customizer_controls()); |
|
299 | 299 | |
300 | -add_image_size( 'lsx-thumbnail-wide', 350, 230, true ); |
|
301 | -add_image_size( 'lsx-thumbnail-single', 750, 350, true ); |
|
302 | 300 | \ No newline at end of file |
301 | +add_image_size('lsx-thumbnail-wide', 350, 230, true); |
|
302 | +add_image_size('lsx-thumbnail-single', 750, 350, true); |
|
303 | 303 | \ No newline at end of file |
@@ -13,9 +13,9 @@ discard block |
||
13 | 13 | |
14 | 14 | <?php lsx_content_top(); ?> |
15 | 15 | |
16 | - <?php while ( have_posts() ) : the_post(); ?> |
|
16 | + <?php while (have_posts()) : the_post(); ?> |
|
17 | 17 | |
18 | - <?php get_template_part( 'content', 'page' ); ?> |
|
18 | + <?php get_template_part('content', 'page'); ?> |
|
19 | 19 | |
20 | 20 | <?php endwhile; // end of the loop. ?> |
21 | 21 | |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | |
24 | 24 | <?php |
25 | 25 | // If comments are open or we have at least one comment, load up the comment template |
26 | - if ( comments_open() || '0' != get_comments_number() ) : |
|
26 | + if (comments_open() || '0' != get_comments_number()) : |
|
27 | 27 | comments_template(); |
28 | 28 | endif; |
29 | 29 | ?> |
@@ -44,9 +44,12 @@ |
||
44 | 44 | |
45 | 45 | <?php lsx_paging_nav(); ?> |
46 | 46 | |
47 | - <?php else : ?> |
|
47 | + <?php else { |
|
48 | + : ?> |
|
48 | 49 | |
49 | - <?php get_template_part( 'content', 'none' ); ?> |
|
50 | + <?php get_template_part( 'content', 'none' ); |
|
51 | +} |
|
52 | +?> |
|
50 | 53 | |
51 | 54 | <?php endif; ?> |
52 | 55 |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | |
12 | 12 | <?php lsx_content_wrap_before(); ?> |
13 | 13 | |
14 | - <div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>"> |
|
14 | + <div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>"> |
|
15 | 15 | |
16 | 16 | <?php lsx_content_before(); ?> |
17 | 17 | |
@@ -19,12 +19,12 @@ discard block |
||
19 | 19 | |
20 | 20 | <?php lsx_content_top(); ?> |
21 | 21 | |
22 | - <?php if ( have_posts() ) : ?> |
|
22 | + <?php if (have_posts()) : ?> |
|
23 | 23 | |
24 | 24 | <?php |
25 | - $layout = get_theme_mod('lsx_layout','2cr'); |
|
26 | - $layout = apply_filters( 'lsx_layout', $layout ); |
|
27 | - if('1c' === $layout && !is_post_type_archive('tribe_events')){ |
|
25 | + $layout = get_theme_mod('lsx_layout', '2cr'); |
|
26 | + $layout = apply_filters('lsx_layout', $layout); |
|
27 | + if ('1c' === $layout && ! is_post_type_archive('tribe_events')) { |
|
28 | 28 | lsx_breadcrumbs(); |
29 | 29 | } |
30 | 30 | ?> |
@@ -33,14 +33,14 @@ discard block |
||
33 | 33 | ?> |
34 | 34 | |
35 | 35 | <?php /* Start the Loop */ ?> |
36 | - <?php while ( have_posts() ) : the_post(); ?> |
|
36 | + <?php while (have_posts()) : the_post(); ?> |
|
37 | 37 | |
38 | 38 | <?php |
39 | 39 | /* Include the Post-Format-specific template for the content. |
40 | 40 | * If you want to override this in a child theme, then include a file |
41 | 41 | * called content-___.php (where ___ is the Post Format name) and that will be used instead. |
42 | 42 | */ |
43 | - get_template_part( 'content', get_post_format() ); |
|
43 | + get_template_part('content', get_post_format()); |
|
44 | 44 | ?> |
45 | 45 | |
46 | 46 | <?php endwhile; ?> |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | |
50 | 50 | <?php else : ?> |
51 | 51 | |
52 | - <?php get_template_part( 'content', 'none' ); ?> |
|
52 | + <?php get_template_part('content', 'none'); ?> |
|
53 | 53 | |
54 | 54 | <?php endif; ?> |
55 | 55 |
@@ -44,9 +44,12 @@ |
||
44 | 44 | |
45 | 45 | <?php lsx_paging_nav(); ?> |
46 | 46 | |
47 | - <?php else : ?> |
|
47 | + <?php else { |
|
48 | + : ?> |
|
48 | 49 | |
49 | - <?php get_template_part( 'content', 'none' ); ?> |
|
50 | + <?php get_template_part( 'content', 'none' ); |
|
51 | +} |
|
52 | +?> |
|
50 | 53 | |
51 | 54 | <?php endif; ?> |
52 | 55 |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | |
16 | 16 | <?php lsx_content_wrap_before(); ?> |
17 | 17 | |
18 | - <div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>"> |
|
18 | + <div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>"> |
|
19 | 19 | |
20 | 20 | <?php lsx_content_before(); ?> |
21 | 21 | |
@@ -23,17 +23,17 @@ discard block |
||
23 | 23 | |
24 | 24 | <?php lsx_content_top(); ?> |
25 | 25 | |
26 | - <?php if ( have_posts() ) : ?> |
|
26 | + <?php if (have_posts()) : ?> |
|
27 | 27 | |
28 | 28 | <?php /* Start the Loop */ ?> |
29 | - <?php while ( have_posts() ) : the_post(); ?> |
|
29 | + <?php while (have_posts()) : the_post(); ?> |
|
30 | 30 | |
31 | 31 | <?php |
32 | 32 | /* Include the Post-Format-specific template for the content. |
33 | 33 | * If you want to override this in a child theme, then include a file |
34 | 34 | * called content-___.php (where ___ is the Post Format name) and that will be used instead. |
35 | 35 | */ |
36 | - get_template_part( 'content', get_post_format() ); |
|
36 | + get_template_part('content', get_post_format()); |
|
37 | 37 | ?> |
38 | 38 | |
39 | 39 | <?php endwhile; ?> |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | |
43 | 43 | <?php else : ?> |
44 | 44 | |
45 | - <?php get_template_part( 'content', 'none' ); ?> |
|
45 | + <?php get_template_part('content', 'none'); ?> |
|
46 | 46 | |
47 | 47 | <?php endif; ?> |
48 | 48 | |
@@ -56,5 +56,5 @@ discard block |
||
56 | 56 | |
57 | 57 | <?php lsx_content_wrap_after(); ?> |
58 | 58 | |
59 | -<?php get_sidebar( 'sidebar' ); ?> |
|
59 | +<?php get_sidebar('sidebar'); ?> |
|
60 | 60 | <?php get_footer(); |
61 | 61 | \ No newline at end of file |
@@ -1,5 +1,8 @@ |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly |
|
2 | +if ( ! defined( 'ABSPATH' ) ) { |
|
3 | + return; |
|
4 | +} |
|
5 | +// Exit if accessed directly |
|
3 | 6 | |
4 | 7 | /** |
5 | 8 | * Customize Swatch Control Class |
@@ -1,66 +1,66 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly |
|
2 | +if ( ! defined('ABSPATH')) return; // Exit if accessed directly |
|
3 | 3 | |
4 | 4 | global $customizer_colour_names; |
5 | 5 | global $customizer_colour_choices; |
6 | 6 | |
7 | -$customizer_colour_names = apply_filters( 'lsx_customizer_colour_names', array( |
|
8 | - 'button_background_color' => esc_html__( 'BUTTON: Background', 'lsx' ), |
|
9 | - 'button_background_hover_color' => esc_html__( 'BUTTON: Background (hover)', 'lsx' ), |
|
10 | - 'button_text_color' => esc_html__( 'BUTTON: Text', 'lsx' ), |
|
11 | - 'button_text_color_hover' => esc_html__( 'BUTTON: Text (hover)', 'lsx' ), |
|
7 | +$customizer_colour_names = apply_filters('lsx_customizer_colour_names', array( |
|
8 | + 'button_background_color' => esc_html__('BUTTON: Background', 'lsx'), |
|
9 | + 'button_background_hover_color' => esc_html__('BUTTON: Background (hover)', 'lsx'), |
|
10 | + 'button_text_color' => esc_html__('BUTTON: Text', 'lsx'), |
|
11 | + 'button_text_color_hover' => esc_html__('BUTTON: Text (hover)', 'lsx'), |
|
12 | 12 | |
13 | - 'button_cta_background_color' => esc_html__( 'BUTTON CTA: Background', 'lsx' ), |
|
14 | - 'button_cta_background_hover_color' => esc_html__( 'BUTTON CTA: Background (hover)', 'lsx' ), |
|
15 | - 'button_cta_text_color' => esc_html__( 'BUTTON CTA: Text', 'lsx' ), |
|
16 | - 'button_cta_text_color_hover' => esc_html__( 'BUTTON CTA: Text (hover)', 'lsx' ), |
|
13 | + 'button_cta_background_color' => esc_html__('BUTTON CTA: Background', 'lsx'), |
|
14 | + 'button_cta_background_hover_color' => esc_html__('BUTTON CTA: Background (hover)', 'lsx'), |
|
15 | + 'button_cta_text_color' => esc_html__('BUTTON CTA: Text', 'lsx'), |
|
16 | + 'button_cta_text_color_hover' => esc_html__('BUTTON CTA: Text (hover)', 'lsx'), |
|
17 | 17 | |
18 | - 'top_menu_background_color' => esc_html__( 'TOP MENU: Background', 'lsx' ), |
|
19 | - 'top_menu_text_color' => esc_html__( 'TOP MENU: Text', 'lsx' ), |
|
20 | - 'top_menu_text_hover_color' => esc_html__( 'TOP MENU: Text (hover)', 'lsx' ), |
|
18 | + 'top_menu_background_color' => esc_html__('TOP MENU: Background', 'lsx'), |
|
19 | + 'top_menu_text_color' => esc_html__('TOP MENU: Text', 'lsx'), |
|
20 | + 'top_menu_text_hover_color' => esc_html__('TOP MENU: Text (hover)', 'lsx'), |
|
21 | 21 | |
22 | - 'header_background_color' => esc_html__( 'HEADER: Background', 'lsx' ), |
|
23 | - 'header_title_color' => esc_html__( 'HEADER: Title', 'lsx' ), |
|
24 | - 'header_title_hover_color' => esc_html__( 'HEADER: Title (hover)', 'lsx' ), |
|
25 | - 'header_description_color' => esc_html__( 'HEADER: Description', 'lsx' ), |
|
22 | + 'header_background_color' => esc_html__('HEADER: Background', 'lsx'), |
|
23 | + 'header_title_color' => esc_html__('HEADER: Title', 'lsx'), |
|
24 | + 'header_title_hover_color' => esc_html__('HEADER: Title (hover)', 'lsx'), |
|
25 | + 'header_description_color' => esc_html__('HEADER: Description', 'lsx'), |
|
26 | 26 | |
27 | - 'main_menu_background_hover1_color' => esc_html__( 'MENU: Background (L1 hover)', 'lsx' ), |
|
28 | - 'main_menu_background_hover2_color' => esc_html__( 'MENU: Background (L2 hover)', 'lsx' ), |
|
29 | - 'main_menu_text_color' => esc_html__( 'MENU: Text (L1)', 'lsx' ), |
|
30 | - 'main_menu_text_hover1_color' => esc_html__( 'MENU: Text (L1 hover)', 'lsx' ), |
|
31 | - 'main_menu_text_hover2_color' => esc_html__( 'MENU: Text (L2 hover)', 'lsx' ), |
|
27 | + 'main_menu_background_hover1_color' => esc_html__('MENU: Background (L1 hover)', 'lsx'), |
|
28 | + 'main_menu_background_hover2_color' => esc_html__('MENU: Background (L2 hover)', 'lsx'), |
|
29 | + 'main_menu_text_color' => esc_html__('MENU: Text (L1)', 'lsx'), |
|
30 | + 'main_menu_text_hover1_color' => esc_html__('MENU: Text (L1 hover)', 'lsx'), |
|
31 | + 'main_menu_text_hover2_color' => esc_html__('MENU: Text (L2 hover)', 'lsx'), |
|
32 | 32 | |
33 | - 'banner_background_color' => esc_html__( 'BANNER: Background', 'lsx' ), |
|
34 | - 'banner_text_color' => esc_html__( 'BANNER: Text', 'lsx' ), |
|
35 | - 'banner_text_image_color' => esc_html__( 'BANNER: Text (over image)', 'lsx' ), |
|
33 | + 'banner_background_color' => esc_html__('BANNER: Background', 'lsx'), |
|
34 | + 'banner_text_color' => esc_html__('BANNER: Text', 'lsx'), |
|
35 | + 'banner_text_image_color' => esc_html__('BANNER: Text (over image)', 'lsx'), |
|
36 | 36 | |
37 | - 'body_background_color' => esc_html__( 'BODY: Background', 'lsx' ), |
|
38 | - 'body_line_color' => esc_html__( 'BODY: Line', 'lsx' ), |
|
39 | - 'body_text_heading_color' => esc_html__( 'BODY: Text (heading)', 'lsx' ), |
|
40 | - 'body_text_color' => esc_html__( 'BODY: Text', 'lsx' ), |
|
41 | - 'body_link_color' => esc_html__( 'BODY: Link', 'lsx' ), |
|
42 | - 'body_link_hover_color' => esc_html__( 'BODY: Link (hover)', 'lsx' ), |
|
37 | + 'body_background_color' => esc_html__('BODY: Background', 'lsx'), |
|
38 | + 'body_line_color' => esc_html__('BODY: Line', 'lsx'), |
|
39 | + 'body_text_heading_color' => esc_html__('BODY: Text (heading)', 'lsx'), |
|
40 | + 'body_text_color' => esc_html__('BODY: Text', 'lsx'), |
|
41 | + 'body_link_color' => esc_html__('BODY: Link', 'lsx'), |
|
42 | + 'body_link_hover_color' => esc_html__('BODY: Link (hover)', 'lsx'), |
|
43 | 43 | |
44 | - 'footer_cta_background_color' => esc_html__( 'FOOTER CTA: Background', 'lsx' ), |
|
45 | - 'footer_cta_text_color' => esc_html__( 'FOOTER CTA: Text', 'lsx' ), |
|
46 | - 'footer_cta_link_color' => esc_html__( 'FOOTER CTA: Link', 'lsx' ), |
|
47 | - 'footer_cta_link_hover_color' => esc_html__( 'FOOTER CTA: Link (hover)', 'lsx' ), |
|
44 | + 'footer_cta_background_color' => esc_html__('FOOTER CTA: Background', 'lsx'), |
|
45 | + 'footer_cta_text_color' => esc_html__('FOOTER CTA: Text', 'lsx'), |
|
46 | + 'footer_cta_link_color' => esc_html__('FOOTER CTA: Link', 'lsx'), |
|
47 | + 'footer_cta_link_hover_color' => esc_html__('FOOTER CTA: Link (hover)', 'lsx'), |
|
48 | 48 | |
49 | - 'footer_widgets_background_color' => esc_html__( 'FOOTER WIDGETS: Background', 'lsx' ), |
|
50 | - 'footer_widgets_text_color' => esc_html__( 'FOOTER WIDGETS: Text', 'lsx' ), |
|
51 | - 'footer_widgets_link_color' => esc_html__( 'FOOTER WIDGETS: Link', 'lsx' ), |
|
52 | - 'footer_widgets_link_hover_color' => esc_html__( 'FOOTER WIDGETS: Link (hover)', 'lsx' ), |
|
49 | + 'footer_widgets_background_color' => esc_html__('FOOTER WIDGETS: Background', 'lsx'), |
|
50 | + 'footer_widgets_text_color' => esc_html__('FOOTER WIDGETS: Text', 'lsx'), |
|
51 | + 'footer_widgets_link_color' => esc_html__('FOOTER WIDGETS: Link', 'lsx'), |
|
52 | + 'footer_widgets_link_hover_color' => esc_html__('FOOTER WIDGETS: Link (hover)', 'lsx'), |
|
53 | 53 | |
54 | - 'footer_background_color' => esc_html__( 'FOOTER: Background', 'lsx' ), |
|
55 | - 'footer_text_color' => esc_html__( 'FOOTER: Text', 'lsx' ), |
|
56 | - 'footer_link_color' => esc_html__( 'FOOTER: Link', 'lsx' ), |
|
57 | - 'footer_link_hover_color' => esc_html__( 'FOOTER: Link (hover)', 'lsx' ) |
|
58 | -) ); |
|
54 | + 'footer_background_color' => esc_html__('FOOTER: Background', 'lsx'), |
|
55 | + 'footer_text_color' => esc_html__('FOOTER: Text', 'lsx'), |
|
56 | + 'footer_link_color' => esc_html__('FOOTER: Link', 'lsx'), |
|
57 | + 'footer_link_hover_color' => esc_html__('FOOTER: Link (hover)', 'lsx') |
|
58 | +)); |
|
59 | 59 | |
60 | -$customizer_colour_choices = apply_filters( 'lsx_customizer_colour_choices', array( |
|
60 | +$customizer_colour_choices = apply_filters('lsx_customizer_colour_choices', array( |
|
61 | 61 | 'default' => array( |
62 | - 'label' => __( 'Default', 'lsx' ), |
|
63 | - 'colors' => apply_filters( 'lsx_customizer_colour_choices_default', array( |
|
62 | + 'label' => __('Default', 'lsx'), |
|
63 | + 'colors' => apply_filters('lsx_customizer_colour_choices_default', array( |
|
64 | 64 | // Button |
65 | 65 | '#428bca', '#2a6496', '#ffffff', '#ffffff', |
66 | 66 | // Button CTA |
@@ -81,11 +81,11 @@ discard block |
||
81 | 81 | '#333333', '#eeeeee', '#dddddd', '#cccccc', |
82 | 82 | // Footer |
83 | 83 | '#232222', '#ffffff', '#337ab7', '#969696' |
84 | - ) ) |
|
84 | + )) |
|
85 | 85 | ), |
86 | 86 | 'red' => array( |
87 | - 'label' => __( 'Red', 'lsx' ), |
|
88 | - 'colors' => apply_filters( 'lsx_customizer_colour_choices_red', array( |
|
87 | + 'label' => __('Red', 'lsx'), |
|
88 | + 'colors' => apply_filters('lsx_customizer_colour_choices_red', array( |
|
89 | 89 | // Button |
90 | 90 | '#b64d3f', '#87291c', '#ffffff', '#ffffff', |
91 | 91 | // Button CTA |
@@ -106,11 +106,11 @@ discard block |
||
106 | 106 | '#333333', '#eeeeee', '#dddddd', '#cccccc', |
107 | 107 | // Footer |
108 | 108 | '#232222', '#ffffff', '#b64d3f', '#969696' |
109 | - ) ) |
|
109 | + )) |
|
110 | 110 | ), |
111 | 111 | 'orange' => array( |
112 | - 'label' => __( 'Orange', 'lsx' ), |
|
113 | - 'colors' => apply_filters( 'lsx_customizer_colour_choices_orange', array( |
|
112 | + 'label' => __('Orange', 'lsx'), |
|
113 | + 'colors' => apply_filters('lsx_customizer_colour_choices_orange', array( |
|
114 | 114 | // Button |
115 | 115 | '#fbaf3f', '#e49435', '#260e03', '#260e03', |
116 | 116 | // Button CTA |
@@ -131,11 +131,11 @@ discard block |
||
131 | 131 | '#333333', '#eeeeee', '#dddddd', '#cccccc', |
132 | 132 | // Footer |
133 | 133 | '#232222', '#ffffff', '#e4701e', '#969696' |
134 | - ) ) |
|
134 | + )) |
|
135 | 135 | ), |
136 | 136 | 'green' => array( |
137 | - 'label' => __( 'Green', 'lsx' ), |
|
138 | - 'colors' => apply_filters( 'lsx_customizer_colour_choices_green', array( |
|
137 | + 'label' => __('Green', 'lsx'), |
|
138 | + 'colors' => apply_filters('lsx_customizer_colour_choices_green', array( |
|
139 | 139 | // Button |
140 | 140 | '#596b46', '#3d4a30', '#ffffff', '#ffffff', |
141 | 141 | // Button CTA |
@@ -156,11 +156,11 @@ discard block |
||
156 | 156 | '#333333', '#eeeeee', '#dddddd', '#cccccc', |
157 | 157 | // Footer |
158 | 158 | '#232222', '#ffffff', '#596b46', '#969696' |
159 | - ) ) |
|
159 | + )) |
|
160 | 160 | ), |
161 | 161 | 'brown' => array( |
162 | - 'label' => __( 'Brown', 'lsx' ), |
|
163 | - 'colors' => apply_filters( 'lsx_customizer_colour_choices_brown', array( |
|
162 | + 'label' => __('Brown', 'lsx'), |
|
163 | + 'colors' => apply_filters('lsx_customizer_colour_choices_brown', array( |
|
164 | 164 | // Button |
165 | 165 | '#8c6a45', '#5b452e', '#ffffff', '#ffffff', |
166 | 166 | // Button CTA |
@@ -181,6 +181,6 @@ discard block |
||
181 | 181 | '#333333', '#eeeeee', '#dddddd', '#cccccc', |
182 | 182 | // Footer |
183 | 183 | '#232222', '#ffffff', '#8c6a45', '#969696' |
184 | - ) ) |
|
184 | + )) |
|
185 | 185 | ) |
186 | -) ); |
|
186 | +)); |