Completed
Pull Request — master (#303)
by Virginia
02:01
created
includes/customizer.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
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 ( ! function_exists( 'lsx_customizer_core_controls' ) ) :
13
+if ( ! function_exists('lsx_customizer_core_controls')) :
14 14
 
15 15
 	/**
16 16
 	 * Returns an array of the core panel.
@@ -20,10 +20,10 @@  discard block
 block discarded – undo
20 20
 	 *
21 21
 	 * @return $lsx_controls array()
22 22
 	 */
23
-	function lsx_customizer_core_controls( $lsx_controls ) {
23
+	function lsx_customizer_core_controls($lsx_controls) {
24 24
 		$lsx_controls['sections']['lsx-core'] = array(
25
-			'title'       => esc_html__( 'Core Settings', 'lsx' ),
26
-			'description' => esc_html__( 'Change the core settings.', 'lsx' ),
25
+			'title'       => esc_html__('Core Settings', 'lsx'),
26
+			'description' => esc_html__('Change the core settings.', 'lsx'),
27 27
 			'priority'    => 21,
28 28
 		);
29 29
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 		);
35 35
 
36 36
 		$lsx_controls['fields']['lsx_preloader_content_status'] = array(
37
-			'label'   => esc_html__( 'Preloader Content', 'lsx' ),
37
+			'label'   => esc_html__('Preloader Content', 'lsx'),
38 38
 			'section' => 'lsx-core',
39 39
 			'type'    => 'checkbox',
40 40
 		);
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 		);
47 47
 
48 48
 		$lsx_controls['fields']['lsx_disable_fonts'] = array(
49
-			'label'   => esc_html__( 'Disable Fonts', 'lsx' ),
49
+			'label'   => esc_html__('Disable Fonts', 'lsx'),
50 50
 			'section' => 'lsx-core',
51 51
 			'type'    => 'checkbox',
52 52
 		);
@@ -56,9 +56,9 @@  discard block
 block discarded – undo
56 56
 
57 57
 endif;
58 58
 
59
-add_filter( 'lsx_customizer_controls', 'lsx_customizer_core_controls' );
59
+add_filter('lsx_customizer_controls', 'lsx_customizer_core_controls');
60 60
 
61
-if ( ! function_exists( 'lsx_customizer_layout_controls' ) ) :
61
+if ( ! function_exists('lsx_customizer_layout_controls')) :
62 62
 
63 63
 	/**
64 64
 	 * Returns an array of the layout panel.
@@ -68,10 +68,10 @@  discard block
 block discarded – undo
68 68
 	 *
69 69
 	 * @return $lsx_controls array()
70 70
 	 */
71
-	function lsx_customizer_layout_controls( $lsx_controls ) {
71
+	function lsx_customizer_layout_controls($lsx_controls) {
72 72
 		$lsx_controls['sections']['lsx-layout'] = array(
73
-			'title'       => esc_html__( 'Layout', 'lsx' ),
74
-			'description' => esc_html__( 'Change the layout sitewide. If your homepage is set to use a page with a template, the following will not apply to it.', 'lsx' ),
73
+			'title'       => esc_html__('Layout', 'lsx'),
74
+			'description' => esc_html__('Change the layout sitewide. If your homepage is set to use a page with a template, the following will not apply to it.', 'lsx'),
75 75
 			'priority'    => 22,
76 76
 		);
77 77
 
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 		);
83 83
 
84 84
 		$lsx_controls['fields']['lsx_header_layout'] = array(
85
-			'label'   => esc_html__( 'Header', 'lsx' ),
85
+			'label'   => esc_html__('Header', 'lsx'),
86 86
 			'section' => 'lsx-layout',
87 87
 			'control' => 'LSX_Customize_Header_Layout_Control',
88 88
 			'choices' => array(
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 		);
100 100
 
101 101
 		$lsx_controls['fields']['lsx_layout'] = array(
102
-			'label'   => esc_html__( 'Body', 'lsx' ),
102
+			'label'   => esc_html__('Body', 'lsx'),
103 103
 			'section' => 'lsx-layout',
104 104
 			'control' => 'LSX_Customize_Layout_Control',
105 105
 			'choices' => array(
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 		);
117 117
 
118 118
 		$lsx_controls['fields']['lsx_header_fixed'] = array(
119
-			'label'   => esc_html__( 'Fixed Header', 'lsx' ),
119
+			'label'   => esc_html__('Fixed Header', 'lsx'),
120 120
 			'section' => 'lsx-layout',
121 121
 			'type'    => 'checkbox',
122 122
 		);
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 		);
129 129
 
130 130
 		$lsx_controls['fields']['lsx_header_search'] = array(
131
-			'label'   => esc_html__( 'Search Box in Header', 'lsx' ),
131
+			'label'   => esc_html__('Search Box in Header', 'lsx'),
132 132
 			'section' => 'lsx-layout',
133 133
 			'type'    => 'checkbox',
134 134
 		);
@@ -136,9 +136,9 @@  discard block
 block discarded – undo
136 136
 		$lsx_controls['selective_refresh']['lsx_header_search'] = array(
137 137
 			'selector'        => '#lsx-header-search-css',
138 138
 			'render_callback' => function() {
139
-				$search_form = get_theme_mod( 'lsx_header_search' );
139
+				$search_form = get_theme_mod('lsx_header_search');
140 140
 
141
-				if ( false !== $search_form ) {
141
+				if (false !== $search_form) {
142 142
 					echo 'body #searchform { display: block; }';
143 143
 				} else {
144 144
 					echo 'body #searchform { display: none; }';
@@ -151,9 +151,9 @@  discard block
 block discarded – undo
151 151
 
152 152
 endif;
153 153
 
154
-add_filter( 'lsx_customizer_controls', 'lsx_customizer_layout_controls' );
154
+add_filter('lsx_customizer_controls', 'lsx_customizer_layout_controls');
155 155
 
156
-if ( ! function_exists( 'lsx_get_customizer_controls' ) ) :
156
+if ( ! function_exists('lsx_get_customizer_controls')) :
157 157
 
158 158
 	/**
159 159
 	 * Returns an array of $controls for the customizer class to generate.
@@ -165,10 +165,10 @@  discard block
 block discarded – undo
165 165
 	 */
166 166
 	function lsx_get_customizer_controls() {
167 167
 		$lsx_controls = array();
168
-		$lsx_controls = apply_filters( 'lsx_customizer_controls', $lsx_controls );
168
+		$lsx_controls = apply_filters('lsx_customizer_controls', $lsx_controls);
169 169
 		return $lsx_controls;
170 170
 	}
171 171
 
172 172
 endif;
173 173
 
174
-$lsx_customizer = new LSX_Theme_Customizer( lsx_get_customizer_controls() );
174
+$lsx_customizer = new LSX_Theme_Customizer(lsx_get_customizer_controls());
Please login to merge, or discard this patch.
includes/classes/class-lsx-schema-graph-piece.php 1 patch
Spacing   +49 added lines, -49 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  *
10 10
  * @since 10.2
11 11
  */
12
-if ( interface_exists( 'WPSEO_Graph_Piece' ) ) {
12
+if (interface_exists('WPSEO_Graph_Piece')) {
13 13
 
14 14
 	class LSX_Schema_Graph_Piece implements WPSEO_Graph_Piece {
15 15
 		/**
@@ -53,13 +53,13 @@  discard block
 block discarded – undo
53 53
 		 *
54 54
 		 * @param \WPSEO_Schema_Context $context A value object with context variables.
55 55
 		 */
56
-		public function __construct( WPSEO_Schema_Context $context ) {
56
+		public function __construct(WPSEO_Schema_Context $context) {
57 57
 			$this->context      = $context;
58 58
 			$this->place_ids    = array();
59
-			$this->post         = get_post( $this->context->id );
60
-			$this->post_url     = get_permalink( $this->context->id );
59
+			$this->post         = get_post($this->context->id);
60
+			$this->post_url     = get_permalink($this->context->id);
61 61
 			$this->is_top_level = false;
62
-			if ( is_object( $this->post ) && isset( $this->post->post_parent ) && ( false === $this->post->post_parent || 0 === $this->post->post_parent || '' === $this->post->post_parent ) ) {
62
+			if (is_object($this->post) && isset($this->post->post_parent) && (false === $this->post->post_parent || 0 === $this->post->post_parent || '' === $this->post->post_parent)) {
63 63
 				$this->is_top_level = true;
64 64
 			}
65 65
 		}
@@ -69,13 +69,13 @@  discard block
 block discarded – undo
69 69
 		 * @return bool
70 70
 		 */
71 71
 		public function is_needed() {
72
-			if ( ! is_singular() ) {
72
+			if ( ! is_singular()) {
73 73
 				return false;
74 74
 			}
75
-			if ( false === $this->context->site_represents ) {
75
+			if (false === $this->context->site_represents) {
76 76
 				return false;
77 77
 			}
78
-			return LSX_Schema_Utils::is_type( get_post_type(), $this->post_type );
78
+			return LSX_Schema_Utils::is_type(get_post_type(), $this->post_type);
79 79
 		}
80 80
 		/**
81 81
 		 * Returns Review data.
@@ -94,32 +94,32 @@  discard block
 block discarded – undo
94 94
 		 * @param  boolean  $include_aggregate
95 95
 		 * @return array    $data
96 96
 		 */
97
-		public function add_reviews( $data, $data_key = 'reviews', $include_aggregate = true ) {
98
-			$reviews       = get_post_meta( $this->context->id, 'review_to_' . $this->post_type, false );
97
+		public function add_reviews($data, $data_key = 'reviews', $include_aggregate = true) {
98
+			$reviews       = get_post_meta($this->context->id, 'review_to_' . $this->post_type, false);
99 99
 			$reviews_array = array();
100
-			if ( ! empty( $reviews ) ) {
100
+			if ( ! empty($reviews)) {
101 101
 				$aggregate_value = 1;
102 102
 				$review_count    = 0;
103
-				foreach ( $reviews as $review_id ) {
104
-					$rating      = get_post_meta( $review_id, 'rating', true );
105
-					$author      = get_post_meta( $review_id, 'reviewer_name', true );
106
-					$description = wp_strip_all_tags( get_the_excerpt( $review_id ) );
103
+				foreach ($reviews as $review_id) {
104
+					$rating      = get_post_meta($review_id, 'rating', true);
105
+					$author      = get_post_meta($review_id, 'reviewer_name', true);
106
+					$description = wp_strip_all_tags(get_the_excerpt($review_id));
107 107
 					$review_args = array(
108 108
 						'author'     => $author,
109 109
 						'reviewBody' => $description,
110 110
 					);
111 111
 					// Add in the review rating.
112
-					if ( false !== $rating && '' !== $rating && '0' !== $rating && 0 !== $rating ) {
112
+					if (false !== $rating && '' !== $rating && '0' !== $rating && 0 !== $rating) {
113 113
 						$review_args['reviewRating'] = array(
114 114
 							'@type'       => 'Rating',
115 115
 							'ratingValue' => $rating,
116 116
 						);
117 117
 					}
118
-					$reviews_array = LSX_Schema_Utils::add_review( $reviews_array, $review_id, $this->context, $review_args );
118
+					$reviews_array = LSX_Schema_Utils::add_review($reviews_array, $review_id, $this->context, $review_args);
119 119
 					$review_count++;
120 120
 				}
121
-				if ( ! empty( $reviews_array ) ) {
122
-					if ( true === $include_aggregate ) {
121
+				if ( ! empty($reviews_array)) {
122
+					if (true === $include_aggregate) {
123 123
 						$data['aggregateRating'] = array(
124 124
 							'@type'       => 'AggregateRating',
125 125
 							'ratingValue' => (string) $aggregate_value,
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 							'worstRating' => '1',
129 129
 						);
130 130
 					}
131
-					$data[ $data_key ] = $reviews_array;
131
+					$data[$data_key] = $reviews_array;
132 132
 				}
133 133
 			}
134 134
 			return $data;
@@ -140,30 +140,30 @@  discard block
 block discarded – undo
140 140
 		 * @param  string $data_key
141 141
 		 * @return array  $data
142 142
 		 */
143
-		public function add_articles( $data, $data_key = 'subjectOf' ) {
144
-			$posts       = get_post_meta( $this->context->id, 'post_to_' . $this->post_type, false );
143
+		public function add_articles($data, $data_key = 'subjectOf') {
144
+			$posts       = get_post_meta($this->context->id, 'post_to_' . $this->post_type, false);
145 145
 			$posts_array = array();
146
-			if ( ! empty( $posts ) ) {
147
-				foreach ( $posts as $post_id ) {
146
+			if ( ! empty($posts)) {
147
+				foreach ($posts as $post_id) {
148 148
 					$post_args = array(
149
-						'articleBody' => wp_strip_all_tags( get_the_excerpt( $post_id ) ),
150
-						'headline'    => get_the_title( $post_id ),
149
+						'articleBody' => wp_strip_all_tags(get_the_excerpt($post_id)),
150
+						'headline'    => get_the_title($post_id),
151 151
 					);
152
-					$section   = get_the_term_list( $post_id, 'category' );
153
-					if ( ! is_wp_error( $section ) && '' !== $section && false !== $section ) {
154
-						$post_args['articleSection'] = wp_strip_all_tags( $section );
152
+					$section = get_the_term_list($post_id, 'category');
153
+					if ( ! is_wp_error($section) && '' !== $section && false !== $section) {
154
+						$post_args['articleSection'] = wp_strip_all_tags($section);
155 155
 					}
156
-					if ( $this->context->site_represents_reference ) {
156
+					if ($this->context->site_represents_reference) {
157 157
 						$post_args['publisher'] = $this->context->site_represents_reference;
158 158
 					}
159
-					$image_url = get_the_post_thumbnail_url( $post_id, 'lsx-thumbnail-wide' );
160
-					if ( false !== $image_url ) {
159
+					$image_url = get_the_post_thumbnail_url($post_id, 'lsx-thumbnail-wide');
160
+					if (false !== $image_url) {
161 161
 						$post_args['image'] = $image_url;
162 162
 					}
163
-					$posts_array = LSX_Schema_Utils::add_article( $posts_array, $post_id, $this->context, $post_args );
163
+					$posts_array = LSX_Schema_Utils::add_article($posts_array, $post_id, $this->context, $post_args);
164 164
 				}
165
-				if ( ! empty( $posts_array ) ) {
166
-					$data[ $data_key ] = $posts_array;
165
+				if ( ! empty($posts_array)) {
166
+					$data[$data_key] = $posts_array;
167 167
 				}
168 168
 			}
169 169
 			return $data;
@@ -175,19 +175,19 @@  discard block
 block discarded – undo
175 175
 		 *
176 176
 		 * @return array $data
177 177
 		 */
178
-		public function add_connections( $data ) {
178
+		public function add_connections($data) {
179 179
 			$connections_array = array();
180
-			if ( $this->is_top_level ) {
181
-				$connections_array = $this->add_regions( $connections_array );
182
-				$connections_array = $this->add_accommodation( $connections_array );
183
-				if ( ! empty( $connections_array ) ) {
180
+			if ($this->is_top_level) {
181
+				$connections_array = $this->add_regions($connections_array);
182
+				$connections_array = $this->add_accommodation($connections_array);
183
+				if ( ! empty($connections_array)) {
184 184
 					$data['containsPlace'] = $connections_array;
185 185
 				}
186 186
 			} else {
187
-				$connections_array             = $this->add_countries( $connections_array );
187
+				$connections_array = $this->add_countries($connections_array);
188 188
 				$data['containedInPlace'] = $connections_array;
189 189
 				$connections_array          = array();
190
-				$connections_array          = $this->add_accommodation( $connections_array );
190
+				$connections_array          = $this->add_accommodation($connections_array);
191 191
 				$data['containsPlace'] = $connections_array;
192 192
 			}
193 193
 			return $data;
@@ -201,14 +201,14 @@  discard block
 block discarded – undo
201 201
 		 *
202 202
 		 * @return array $data Review data.
203 203
 		 */
204
-		public function add_taxonomy_terms( $data, $data_key, $taxonomy ) {
204
+		public function add_taxonomy_terms($data, $data_key, $taxonomy) {
205 205
 			/**
206 206
 			 * Filter: 'lsx_schema_' . $this->post_type . '_' . $data_key . '_taxonomy' - Allow changing the taxonomy used to assign keywords to a post type Review data.
207 207
 			 *
208 208
 			 * @api string $taxonomy The chosen taxonomy.
209 209
 			 */
210
-			$taxonomy = apply_filters( 'lsx_schema_' . $this->post_type . '_' . $data_key . '_taxonomy', $taxonomy );
211
-			return LSX_Schema_Utils::add_terms( $data, $this->context->id, $data_key, $taxonomy );
210
+			$taxonomy = apply_filters('lsx_schema_' . $this->post_type . '_' . $data_key . '_taxonomy', $taxonomy);
211
+			return LSX_Schema_Utils::add_terms($data, $this->context->id, $data_key, $taxonomy);
212 212
 		}
213 213
 		/**
214 214
 		 * Adds the custom field value for the supplied key
@@ -220,10 +220,10 @@  discard block
 block discarded – undo
220 220
 		 *
221 221
 		 * @return array $data Review data.
222 222
 		 */
223
-		public function add_custom_field( $data, $data_key, $meta_key, $single = true ) {
224
-			$value = get_post_meta( $this->context->id, $meta_key, $single );
225
-			if ( '' !== $value && false !== $value ) {
226
-				$data[ $data_key ] = $value;
223
+		public function add_custom_field($data, $data_key, $meta_key, $single = true) {
224
+			$value = get_post_meta($this->context->id, $meta_key, $single);
225
+			if ('' !== $value && false !== $value) {
226
+				$data[$data_key] = $value;
227 227
 			}
228 228
 			return $data;
229 229
 		}
Please login to merge, or discard this patch.
includes/scripts.php 1 patch
Spacing   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
  * @subpackage scripts
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! function_exists( 'lsx_scripts' ) ) :
13
+if ( ! function_exists('lsx_scripts')) :
14 14
 
15 15
 	/**
16 16
 	 * Enqueue scripts, fonts and styles.
@@ -26,9 +26,9 @@  discard block
 block discarded – undo
26 26
 
27 27
 endif;
28 28
 
29
-add_action( 'wp_enqueue_scripts', 'lsx_scripts', 5 );
29
+add_action('wp_enqueue_scripts', 'lsx_scripts', 5);
30 30
 
31
-if ( ! function_exists( 'lsx_admin_scripts' ) ) :
31
+if ( ! function_exists('lsx_admin_scripts')) :
32 32
 
33 33
 	/**
34 34
 	 * Enqueue scripts (admin).
@@ -37,14 +37,14 @@  discard block
 block discarded – undo
37 37
 	 * @subpackage scripts
38 38
 	 */
39 39
 	function lsx_admin_scripts() {
40
-		wp_enqueue_script( 'lsx-admin', get_template_directory_uri() . '/assets/js/admin/lsx-admin.js', array( 'jquery' ), LSX_VERSION, true );
40
+		wp_enqueue_script('lsx-admin', get_template_directory_uri() . '/assets/js/admin/lsx-admin.js', array('jquery'), LSX_VERSION, true);
41 41
 	}
42 42
 
43 43
 endif;
44 44
 
45
-add_action( 'admin_enqueue_scripts', 'lsx_admin_scripts' );
45
+add_action('admin_enqueue_scripts', 'lsx_admin_scripts');
46 46
 
47
-if ( ! function_exists( 'lsx_scripts_add_styles' ) ) :
47
+if ( ! function_exists('lsx_scripts_add_styles')) :
48 48
 
49 49
 	/**
50 50
 	 * Enqueue styles.
@@ -53,23 +53,23 @@  discard block
 block discarded – undo
53 53
 	 * @subpackage scripts
54 54
 	 */
55 55
 	function lsx_scripts_add_styles() {
56
-		wp_enqueue_style( 'lsx_fonts', get_template_directory_uri() . '/assets/css/lsx-fonts.css', array(), LSX_VERSION );
56
+		wp_enqueue_style('lsx_fonts', get_template_directory_uri() . '/assets/css/lsx-fonts.css', array(), LSX_VERSION);
57 57
 
58
-		wp_register_style( 'fontawesome', get_template_directory_uri() . '/assets/css/vendor/font-awesome.css', array(), LSX_VERSION );
59
-		wp_style_add_data( 'fontawesome', 'rtl', 'replace' );
58
+		wp_register_style('fontawesome', get_template_directory_uri() . '/assets/css/vendor/font-awesome.css', array(), LSX_VERSION);
59
+		wp_style_add_data('fontawesome', 'rtl', 'replace');
60 60
 
61
-		wp_register_style( 'bootstrap', get_template_directory_uri() . '/assets/css/vendor/bootstrap.css', array(), LSX_VERSION );
62
-		wp_style_add_data( 'bootstrap', 'rtl', 'replace' );
61
+		wp_register_style('bootstrap', get_template_directory_uri() . '/assets/css/vendor/bootstrap.css', array(), LSX_VERSION);
62
+		wp_style_add_data('bootstrap', 'rtl', 'replace');
63 63
 
64
-		wp_enqueue_style( 'lsx_main', get_template_directory_uri() . '/assets/css/lsx.css', array( 'lsx_fonts', 'fontawesome', 'bootstrap'/*, 'slick'*/ ), LSX_VERSION );
65
-		wp_enqueue_style( 'lsx_gutenberg', get_template_directory_uri() . '/assets/css/gutenberg.css', array( 'lsx_main' ), LSX_VERSION );
64
+		wp_enqueue_style('lsx_main', get_template_directory_uri() . '/assets/css/lsx.css', array('lsx_fonts', 'fontawesome', 'bootstrap'/*, 'slick'*/), LSX_VERSION);
65
+		wp_enqueue_style('lsx_gutenberg', get_template_directory_uri() . '/assets/css/gutenberg.css', array('lsx_main'), LSX_VERSION);
66 66
 
67
-		wp_style_add_data( 'lsx_main', 'rtl', 'replace' );
67
+		wp_style_add_data('lsx_main', 'rtl', 'replace');
68 68
 	}
69 69
 
70 70
 endif;
71 71
 
72
-if ( ! function_exists( 'lsx_scripts_add_fonts' ) ) :
72
+if ( ! function_exists('lsx_scripts_add_fonts')) :
73 73
 	/**
74 74
 	 * Enqueue fonts.
75 75
 	 *
@@ -77,14 +77,14 @@  discard block
 block discarded – undo
77 77
 	 * @subpackage scripts
78 78
 	 */
79 79
 	function lsx_scripts_add_fonts() {
80
-		$disable_fonts = get_theme_mod( 'lsx_disable_fonts', false );
81
-		if ( false !== $disable_fonts ) {
80
+		$disable_fonts = get_theme_mod('lsx_disable_fonts', false);
81
+		if (false !== $disable_fonts) {
82 82
 			return;
83 83
 		}
84 84
 	}
85 85
 endif;
86 86
 
87
-if ( ! function_exists( 'lsx_scripts_add_scripts' ) ) :
87
+if ( ! function_exists('lsx_scripts_add_scripts')) :
88 88
 
89 89
 	/**
90 90
 	 * Enqueue scripts.
@@ -93,39 +93,39 @@  discard block
 block discarded – undo
93 93
 	 * @subpackage scripts
94 94
 	 */
95 95
 	function lsx_scripts_add_scripts() {
96
-		if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
97
-			wp_enqueue_script( 'comment-reply' );
96
+		if (is_singular() && comments_open() && get_option('thread_comments')) {
97
+			wp_enqueue_script('comment-reply');
98 98
 		}
99 99
 
100
-		wp_enqueue_script( 'platform', get_template_directory_uri() . '/assets/js/vendor/platform.min.js', array(), LSX_VERSION, true );
101
-		wp_enqueue_script( 'bootstrap', get_template_directory_uri() . '/assets/js/vendor/bootstrap.min.js', array( 'jquery' ), LSX_VERSION, true );
100
+		wp_enqueue_script('platform', get_template_directory_uri() . '/assets/js/vendor/platform.min.js', array(), LSX_VERSION, true);
101
+		wp_enqueue_script('bootstrap', get_template_directory_uri() . '/assets/js/vendor/bootstrap.min.js', array('jquery'), LSX_VERSION, true);
102 102
 
103
-		wp_enqueue_script( 'imagesLoaded', get_template_directory_uri() . '/assets/js/vendor/imagesloaded.pkgd.min.js', array( 'masonry' ), LSX_VERSION, true );
104
-		wp_enqueue_script( 'scrolltofixed', get_template_directory_uri() . '/assets/js/vendor/jquery-scrolltofixed-min.js', array( 'jquery' ), LSX_VERSION, true );
105
-		wp_enqueue_script( 'slick', get_template_directory_uri() . '/assets/js/vendor/slick.min.js', array( 'jquery' ), LSX_VERSION, true );
106
-		wp_enqueue_script( 'slick-lightbox', get_template_directory_uri() . '/assets/js/vendor/slick-lightbox.min.js', array( 'jquery', 'slick' ), LSX_VERSION, true );
107
-		wp_enqueue_script( 'picturefill', get_template_directory_uri() . '/assets/js/vendor/picturefill.min.js', array(), LSX_VERSION, true );
103
+		wp_enqueue_script('imagesLoaded', get_template_directory_uri() . '/assets/js/vendor/imagesloaded.pkgd.min.js', array('masonry'), LSX_VERSION, true);
104
+		wp_enqueue_script('scrolltofixed', get_template_directory_uri() . '/assets/js/vendor/jquery-scrolltofixed-min.js', array('jquery'), LSX_VERSION, true);
105
+		wp_enqueue_script('slick', get_template_directory_uri() . '/assets/js/vendor/slick.min.js', array('jquery'), LSX_VERSION, true);
106
+		wp_enqueue_script('slick-lightbox', get_template_directory_uri() . '/assets/js/vendor/slick-lightbox.min.js', array('jquery', 'slick'), LSX_VERSION, true);
107
+		wp_enqueue_script('picturefill', get_template_directory_uri() . '/assets/js/vendor/picturefill.min.js', array(), LSX_VERSION, true);
108 108
 
109
-		if ( defined( 'SCRIPT_DEBUG' ) ) {
109
+		if (defined('SCRIPT_DEBUG')) {
110 110
 			$prefix = 'src/';
111 111
 			$suffix = '';
112 112
 		} else {
113 113
 			$prefix = '';
114 114
 			$suffix = '.min';
115 115
 		}
116
-		wp_enqueue_script( 'lsx_script', get_template_directory_uri() . '/assets/js/' . $prefix . 'lsx' . $suffix . '.js', array( 'jquery', 'platform', 'bootstrap', 'masonry', 'imagesLoaded', 'scrolltofixed', 'slick', 'slick-lightbox', 'picturefill' ), LSX_VERSION, true );
116
+		wp_enqueue_script('lsx_script', get_template_directory_uri() . '/assets/js/' . $prefix . 'lsx' . $suffix . '.js', array('jquery', 'platform', 'bootstrap', 'masonry', 'imagesLoaded', 'scrolltofixed', 'slick', 'slick-lightbox', 'picturefill'), LSX_VERSION, true);
117 117
 
118 118
 		$param_array = array(
119
-			'columns'            => apply_filters( 'lsx_archive_column_number', 3 ),
120
-			'stickyMenuSelector' => apply_filters( 'lsx_sticky_menu_selector', 'header.navbar' ),
119
+			'columns'            => apply_filters('lsx_archive_column_number', 3),
120
+			'stickyMenuSelector' => apply_filters('lsx_sticky_menu_selector', 'header.navbar'),
121 121
 		);
122 122
 
123
-		wp_localize_script( 'lsx_script', 'lsx_params', $param_array );
123
+		wp_localize_script('lsx_script', 'lsx_params', $param_array);
124 124
 	}
125 125
 
126 126
 endif;
127 127
 
128
-if ( ! function_exists( 'lsx_scripts_child_theme' ) ) :
128
+if ( ! function_exists('lsx_scripts_child_theme')) :
129 129
 
130 130
 	/**
131 131
 	 * Enqueue scripts and styles (for child theme).
@@ -134,12 +134,12 @@  discard block
 block discarded – undo
134 134
 	 * @subpackage scripts
135 135
 	 */
136 136
 	function lsx_scripts_child_theme() {
137
-		if ( is_child_theme() && file_exists( get_stylesheet_directory() . '/assets/css/custom.css' ) ) {
138
-			wp_enqueue_style( 'child-css', get_stylesheet_directory_uri() . '/assets/css/custom.css', array( 'lsx_main' ), LSX_VERSION );
139
-			wp_style_add_data( 'child-css', 'rtl', 'replace' );
137
+		if (is_child_theme() && file_exists(get_stylesheet_directory() . '/assets/css/custom.css')) {
138
+			wp_enqueue_style('child-css', get_stylesheet_directory_uri() . '/assets/css/custom.css', array('lsx_main'), LSX_VERSION);
139
+			wp_style_add_data('child-css', 'rtl', 'replace');
140 140
 		}
141 141
 	}
142 142
 
143 143
 endif;
144 144
 
145
-add_action( 'wp_enqueue_scripts', 'lsx_scripts_child_theme', 1999 );
145
+add_action('wp_enqueue_scripts', 'lsx_scripts_child_theme', 1999);
Please login to merge, or discard this patch.
includes/sensei/class-lsx-sensei.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -645,7 +645,6 @@
 block discarded – undo
645 645
 		/**
646 646
 		 * Show the 'Back to My Courses' button on messages.
647 647
 		 *
648
-		 * @param [type] $message_post_id
649 648
 		 * @return void
650 649
 		 */
651 650
 		public function lsx_sensei_back_message_button( $courses_link ) {
Please login to merge, or discard this patch.
Spacing   +171 added lines, -171 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
  * @subpackage sensei
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! class_exists( 'LSX_Sensei' ) ) :
13
+if ( ! class_exists('LSX_Sensei')) :
14 14
 
15 15
 	/**
16 16
 	 * The LSX Sensei integration class
@@ -50,60 +50,60 @@  discard block
 block discarded – undo
50 50
 
51 51
 			global $woothemes_sensei;
52 52
 
53
-			add_action( 'wp_enqueue_scripts', array( $this, 'lsx_sensei_scripts_add_styles' ) );
53
+			add_action('wp_enqueue_scripts', array($this, 'lsx_sensei_scripts_add_styles'));
54 54
 
55
-			remove_action( 'sensei_before_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper' ), 10 );
56
-			add_action( 'sensei_before_main_content', array( $this, 'lsx_sensei_theme_wrapper_start' ) );
55
+			remove_action('sensei_before_main_content', array($woothemes_sensei->frontend, 'sensei_output_content_wrapper'), 10);
56
+			add_action('sensei_before_main_content', array($this, 'lsx_sensei_theme_wrapper_start'));
57 57
 
58
-			remove_action( 'sensei_after_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper_end' ), 10 );
59
-			add_action( 'sensei_after_main_content', array( $this, 'lsx_sensei_theme_wrapper_end' ) );
58
+			remove_action('sensei_after_main_content', array($woothemes_sensei->frontend, 'sensei_output_content_wrapper_end'), 10);
59
+			add_action('sensei_after_main_content', array($this, 'lsx_sensei_theme_wrapper_end'));
60 60
 
61
-			add_filter( 'get_the_archive_title', array( $this, 'lsx_sensei_modify_archive_title' ), 99, 1 );
61
+			add_filter('get_the_archive_title', array($this, 'lsx_sensei_modify_archive_title'), 99, 1);
62 62
 
63 63
 			// LSX
64
-			add_filter( 'lsx_global_header_disable', array( $this, 'lsx_sensei_disable_lsx_banner' ) );
64
+			add_filter('lsx_global_header_disable', array($this, 'lsx_sensei_disable_lsx_banner'));
65 65
 			// LSX Banners - Plugin, Placeholders
66
-			add_filter( 'lsx_banner_plugin_disable', array( $this, 'lsx_sensei_disable_lsx_banner' ) );
66
+			add_filter('lsx_banner_plugin_disable', array($this, 'lsx_sensei_disable_lsx_banner'));
67 67
 			// LSX Banners - Banner
68
-			add_filter( 'lsx_banner_disable', array( $this, 'lsx_sensei_disable_lsx_banner' ) );
68
+			add_filter('lsx_banner_disable', array($this, 'lsx_sensei_disable_lsx_banner'));
69 69
 
70
-			add_filter( 'course_archive_title', array( $this, 'lsx_sensei_archive_title' ), 10, 1 );
71
-			add_filter( 'sensei_lesson_archive_title', array( $this, 'lsx_sensei_archive_title' ), 10, 1 );
70
+			add_filter('course_archive_title', array($this, 'lsx_sensei_archive_title'), 10, 1);
71
+			add_filter('sensei_lesson_archive_title', array($this, 'lsx_sensei_archive_title'), 10, 1);
72 72
 
73
-			add_filter( 'course_category_title', array( $this, 'lsx_sensei_category_title' ), 10, 1 );
73
+			add_filter('course_category_title', array($this, 'lsx_sensei_category_title'), 10, 1);
74 74
 
75
-			add_action( 'sensei_course_content_inside_after', array( $this, 'lsx_sensei_add_buttons' ), 9 );
75
+			add_action('sensei_course_content_inside_after', array($this, 'lsx_sensei_add_buttons'), 9);
76 76
 
77
-			add_filter( 'sensei_wc_paid_courses_add_to_cart_button_text', array( $this, 'lsx_sensei_add_to_cart_text' ) );
77
+			add_filter('sensei_wc_paid_courses_add_to_cart_button_text', array($this, 'lsx_sensei_add_to_cart_text'));
78 78
 
79
-			add_action( 'lsx_content_wrap_before', array( $this, 'lsx_sensei_results_header' ) );
79
+			add_action('lsx_content_wrap_before', array($this, 'lsx_sensei_results_header'));
80 80
 
81
-			add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_course_breadcrumb_filter' ), 40, 1 );
82
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_course_breadcrumb_filter' ), 40, 1 );
81
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_course_breadcrumb_filter'), 40, 1);
82
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_course_breadcrumb_filter'), 40, 1);
83 83
 
84
-			add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_lesson_breadcrumb_filter' ), 40, 1 );
85
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_lesson_breadcrumb_filter' ), 40, 1 );
84
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_lesson_breadcrumb_filter'), 40, 1);
85
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_lesson_breadcrumb_filter'), 40, 1);
86 86
 
87
-			add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_module_breadcrumb_filter' ), 40, 1 );
88
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_module_breadcrumb_filter' ), 40, 1 );
87
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_module_breadcrumb_filter'), 40, 1);
88
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_module_breadcrumb_filter'), 40, 1);
89 89
 
90
-			add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_learner_breadcrumb_filter' ), 40, 1 );
91
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_learner_breadcrumb_filter' ), 40, 1 );
90
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_learner_breadcrumb_filter'), 40, 1);
91
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_learner_breadcrumb_filter'), 40, 1);
92 92
 
93
-			add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_quiz_breadcrumb_filter' ), 40, 1 );
94
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_quiz_breadcrumb_filter' ), 40, 1 );
93
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_quiz_breadcrumb_filter'), 40, 1);
94
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_quiz_breadcrumb_filter'), 40, 1);
95 95
 
96
-			add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_messages_breadcrumb_filter' ), 40, 1 );
97
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_messages_breadcrumb_filter' ), 40, 1 );
96
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_messages_breadcrumb_filter'), 40, 1);
97
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_messages_breadcrumb_filter'), 40, 1);
98 98
 
99
-			add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_single_message_breadcrumb_filter' ), 40, 1 );
100
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_single_message_breadcrumb_filter' ), 40, 1 );
99
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_single_message_breadcrumb_filter'), 40, 1);
100
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_single_message_breadcrumb_filter'), 40, 1);
101 101
 
102
-			add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_results_breadcrumb_filter' ), 40, 1 );
103
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_results_breadcrumb_filter' ), 40, 1 );
102
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_results_breadcrumb_filter'), 40, 1);
103
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_results_breadcrumb_filter'), 40, 1);
104 104
 
105
-			add_action( 'sensei_archive_before_message_loop', array( $this, 'lsx_sensei_back_message_button' ) );
106
-			add_action( 'sensei_content_message_after', array( $this, 'lsx_sensei_view_message_button' ) );
105
+			add_action('sensei_archive_before_message_loop', array($this, 'lsx_sensei_back_message_button'));
106
+			add_action('sensei_content_message_after', array($this, 'lsx_sensei_view_message_button'));
107 107
 
108 108
 		}
109 109
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 		 */
116 116
 		public static function get_instance() {
117 117
 			// If the single instance hasn't been set, set it now.
118
-			if ( null === self::$instance ) {
118
+			if (null === self::$instance) {
119 119
 				self::$instance = new self;
120 120
 			}
121 121
 			return self::$instance;
@@ -128,8 +128,8 @@  discard block
 block discarded – undo
128 128
 		 * @subpackage sensei
129 129
 		 */
130 130
 		public function lsx_sensei_scripts_add_styles() {
131
-			wp_enqueue_style( 'sensei-lsx', get_template_directory_uri() . '/assets/css/sensei/sensei.css', array( 'lsx_main' ), LSX_VERSION );
132
-			wp_style_add_data( 'sensei-lsx', 'rtl', 'replace' );
131
+			wp_enqueue_style('sensei-lsx', get_template_directory_uri() . '/assets/css/sensei/sensei.css', array('lsx_main'), LSX_VERSION);
132
+			wp_style_add_data('sensei-lsx', 'rtl', 'replace');
133 133
 		}
134 134
 
135 135
 		/**
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
 		 */
141 141
 		public function lsx_sensei_theme_wrapper_start() {
142 142
 			lsx_content_wrap_before();
143
-			echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">';
143
+			echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">';
144 144
 			lsx_content_before();
145 145
 			echo '<main id="main" class="site-main" role="main">';
146 146
 			lsx_content_top();
@@ -166,18 +166,18 @@  discard block
 block discarded – undo
166 166
 		 * @param [type] $title
167 167
 		 * @return void
168 168
 		 */
169
-		public function lsx_sensei_modify_archive_title( $title ) {
170
-			if ( is_archive() && is_post_type_archive( 'course' ) ) {
171
-				$title = __( 'Courses', 'lsx' );
169
+		public function lsx_sensei_modify_archive_title($title) {
170
+			if (is_archive() && is_post_type_archive('course')) {
171
+				$title = __('Courses', 'lsx');
172 172
 			}
173
-			if ( is_archive() && is_post_type_archive( 'sensei_message' ) ) {
174
-				$title = __( 'Messages', 'lsx' );
173
+			if (is_archive() && is_post_type_archive('sensei_message')) {
174
+				$title = __('Messages', 'lsx');
175 175
 			}
176
-			if ( is_archive() && is_post_type_archive( 'lesson' ) ) {
177
-				$title = __( 'Lessons', 'lsx' );
176
+			if (is_archive() && is_post_type_archive('lesson')) {
177
+				$title = __('Lessons', 'lsx');
178 178
 			}
179
-			if ( is_archive() && is_tax() ) {
180
-				$title = single_term_title( '', false );
179
+			if (is_archive() && is_tax()) {
180
+				$title = single_term_title('', false);
181 181
 			}
182 182
 			return $title;
183 183
 		}
@@ -188,8 +188,8 @@  discard block
 block discarded – undo
188 188
 		 * @package    lsx
189 189
 		 * @subpackage sensei
190 190
 		 */
191
-		public function lsx_sensei_disable_lsx_banner( $disabled ) {
192
-			if ( is_sensei() ) {
191
+		public function lsx_sensei_disable_lsx_banner($disabled) {
192
+			if (is_sensei()) {
193 193
 				$disabled = true;
194 194
 			}
195 195
 
@@ -202,8 +202,8 @@  discard block
 block discarded – undo
202 202
 		 * @package    lsx
203 203
 		 * @subpackage sensei
204 204
 		 */
205
-		public function lsx_sensei_archive_title( $html ) {
206
-			$html = preg_replace( '/<header class="archive-header"><h1>([^<]+)<\/h1><\/header>/i', '<h1>$1</h1>', $html );
205
+		public function lsx_sensei_archive_title($html) {
206
+			$html = preg_replace('/<header class="archive-header"><h1>([^<]+)<\/h1><\/header>/i', '<h1>$1</h1>', $html);
207 207
 			return $html;
208 208
 		}
209 209
 
@@ -213,8 +213,8 @@  discard block
 block discarded – undo
213 213
 		 * @package    lsx
214 214
 		 * @subpackage sensei
215 215
 		 */
216
-		public function lsx_sensei_category_title( $html ) {
217
-			$html = str_replace( 'h2', 'h1', $html );
216
+		public function lsx_sensei_category_title($html) {
217
+			$html = str_replace('h2', 'h1', $html);
218 218
 			return $html;
219 219
 		}
220 220
 
@@ -224,18 +224,18 @@  discard block
 block discarded – undo
224 224
 		 * @package    lsx
225 225
 		 * @subpackage sensei
226 226
 		 */
227
-		public function lsx_sensei_add_buttons( $course_id ) {
227
+		public function lsx_sensei_add_buttons($course_id) {
228 228
 			global $post, $current_user;
229
-			$is_user_taking_course = Sensei_Utils::user_started_course( $post->ID, $current_user->ID );
230
-			if ( class_exists( 'Sensei_WC' ) ) {
231
-				$course_purchasable = Sensei_WC::is_course_purchasable( $post->ID );
229
+			$is_user_taking_course = Sensei_Utils::user_started_course($post->ID, $current_user->ID);
230
+			if (class_exists('Sensei_WC')) {
231
+				$course_purchasable = Sensei_WC::is_course_purchasable($post->ID);
232 232
 			}
233 233
 
234 234
 			?>
235 235
 				<section class="entry-actions">
236 236
 					<?php
237
-					if ( ( ! $is_user_taking_course ) && $course_purchasable ) {
238
-						Sensei_WC::the_add_to_cart_button_html( $post->ID );
237
+					if (( ! $is_user_taking_course) && $course_purchasable) {
238
+						Sensei_WC::the_add_to_cart_button_html($post->ID);
239 239
 					}
240 240
 					?>
241 241
 				</section>
@@ -248,8 +248,8 @@  discard block
 block discarded – undo
248 248
 		 * @package    lsx
249 249
 		 * @subpackage sensei
250 250
 		 */
251
-		public function lsx_sensei_add_to_cart_text( $text ) {
252
-			$text = esc_html__( 'Add to cart', 'lsx' );
251
+		public function lsx_sensei_add_to_cart_text($text) {
252
+			$text = esc_html__('Add to cart', 'lsx');
253 253
 			return $text;
254 254
 		}
255 255
 
@@ -259,46 +259,46 @@  discard block
 block discarded – undo
259 259
 		 * @package    lsx
260 260
 		 * @subpackage layout
261 261
 		 */
262
-		public function lsx_sensei_results_header( $user ) {
262
+		public function lsx_sensei_results_header($user) {
263 263
 
264 264
 			$default_size = 'sm';
265
-			$size         = apply_filters( 'lsx_bootstrap_column_size', $default_size );
265
+			$size         = apply_filters('lsx_bootstrap_column_size', $default_size);
266 266
 			global $wp_query;
267
-			if ( isset( $wp_query->query_vars['course_results'] ) ) {
267
+			if (isset($wp_query->query_vars['course_results'])) {
268 268
 				$is_results = $wp_query->query_vars['course_results'];
269 269
 			} else {
270 270
 				$is_results = false;
271 271
 			}
272
-			if ( isset( $wp_query->query_vars['learner_profile'] ) ) {
272
+			if (isset($wp_query->query_vars['learner_profile'])) {
273 273
 				$is_profile = $wp_query->query_vars['learner_profile'];
274 274
 			} else {
275 275
 				$is_profile = false;
276 276
 			}
277 277
 
278
-			if ( is_sticky() && $is_results ) :
279
-				$course_for_results = get_page_by_path( $is_results, OBJECT, 'course' );
278
+			if (is_sticky() && $is_results) :
279
+				$course_for_results = get_page_by_path($is_results, OBJECT, 'course');
280 280
 
281
-					$course_title = esc_html( $course_for_results->post_title );
281
+					$course_title = esc_html($course_for_results->post_title);
282 282
 				?>
283
-				<div class="archive-header-wrapper banner-single col-<?php echo esc_attr( $size ); ?>-12">
283
+				<div class="archive-header-wrapper banner-single col-<?php echo esc_attr($size); ?>-12">
284 284
 					<?php lsx_global_header_inner_bottom(); ?>
285 285
 					<header class="archive-header">
286
-						<h1 class="archive-title"><?php echo wp_kses_post( $course_title ); ?></h1>
286
+						<h1 class="archive-title"><?php echo wp_kses_post($course_title); ?></h1>
287 287
 					</header>
288 288
 
289 289
 				</div>
290 290
 				<?php
291 291
 			endif;
292 292
 
293
-			if ( is_sticky() && $is_profile ) :
293
+			if (is_sticky() && $is_profile) :
294 294
 				$query_var    = $wp_query->query_vars['learner_profile'];
295
-				$learner_user = Sensei_Learner::find_by_query_var( $query_var );
295
+				$learner_user = Sensei_Learner::find_by_query_var($query_var);
296 296
 				$learner_name = $learner_user->display_name;
297 297
 				?>
298
-				<div class="archive-header-wrapper banner-single col-<?php echo esc_attr( $size ); ?>-12">
298
+				<div class="archive-header-wrapper banner-single col-<?php echo esc_attr($size); ?>-12">
299 299
 					<?php lsx_global_header_inner_bottom(); ?>
300 300
 					<header class="archive-header">
301
-						<h1 class="archive-title"><?php echo esc_html( $learner_name ); ?></h1>
301
+						<h1 class="archive-title"><?php echo esc_html($learner_name); ?></h1>
302 302
 					</header>
303 303
 
304 304
 				</div>
@@ -311,21 +311,21 @@  discard block
 block discarded – undo
311 311
 		 * @param $crumbs
312 312
 		 * @return array
313 313
 		 */
314
-		public function lsx_sensei_course_breadcrumb_filter( $crumbs, $id = 0 ) {
315
-			if ( is_single() && ( is_singular( 'course' ) ) ) {
314
+		public function lsx_sensei_course_breadcrumb_filter($crumbs, $id = 0) {
315
+			if (is_single() && (is_singular('course'))) {
316 316
 				global $course;
317 317
 				$lesson          = get_the_title();
318
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
319
-				$course_page_url = get_permalink( $course_page_url );
318
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
319
+				$course_page_url = get_permalink($course_page_url);
320 320
 
321
-				if ( $lesson ) {
321
+				if ($lesson) {
322 322
 
323 323
 					$new_crumbs    = array();
324 324
 					$new_crumbs[0] = $crumbs[0];
325 325
 
326
-					if ( function_exists( 'woocommerce_breadcrumb' ) ) {
326
+					if (function_exists('woocommerce_breadcrumb')) {
327 327
 						$new_crumbs[1] = array(
328
-							0 => __( 'All Courses', 'lsx' ),
328
+							0 => __('All Courses', 'lsx'),
329 329
 							1 => $course_page_url,
330 330
 						);
331 331
 						$new_crumbs[2] = array(
@@ -333,7 +333,7 @@  discard block
 block discarded – undo
333 333
 						);
334 334
 					} else {
335 335
 						$new_crumbs[1] = array(
336
-							'text' => __( 'All Courses', 'lsx' ),
336
+							'text' => __('All Courses', 'lsx'),
337 337
 							'url'  => $course_page_url,
338 338
 						);
339 339
 						$new_crumbs[2] = array(
@@ -351,34 +351,34 @@  discard block
 block discarded – undo
351 351
 		 * @param $crumbs
352 352
 		 * @return array
353 353
 		 */
354
-		public function lsx_sensei_lesson_breadcrumb_filter( $crumbs, $id = 0 ) {
355
-			if ( is_sensei() && is_single() && ( is_singular( 'lesson' ) ) ) {
354
+		public function lsx_sensei_lesson_breadcrumb_filter($crumbs, $id = 0) {
355
+			if (is_sensei() && is_single() && (is_singular('lesson'))) {
356 356
 				global $course;
357 357
 				$lesson          = get_the_title();
358
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
359
-				$course_page_url = get_permalink( $course_page_url );
358
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
359
+				$course_page_url = get_permalink($course_page_url);
360 360
 
361
-				if ( empty( $id ) ) {
361
+				if (empty($id)) {
362 362
 					$id = get_the_ID();
363 363
 				}
364 364
 
365
-				if ( 0 < intval( $id ) ) {
366
-					$course       = intval( get_post_meta( $id, '_lesson_course', true ) );
367
-					$course_id    = esc_url( get_permalink( $course ) );
368
-					$course_title = esc_html( get_the_title( $course ) );
369
-					if ( ! $course ) {
365
+				if (0 < intval($id)) {
366
+					$course       = intval(get_post_meta($id, '_lesson_course', true));
367
+					$course_id    = esc_url(get_permalink($course));
368
+					$course_title = esc_html(get_the_title($course));
369
+					if ( ! $course) {
370 370
 						return;
371 371
 					}
372 372
 				}
373 373
 
374
-				if ( $course_id ) {
374
+				if ($course_id) {
375 375
 
376 376
 					$new_crumbs    = array();
377 377
 					$new_crumbs[0] = $crumbs[0];
378 378
 
379
-					if ( function_exists( 'woocommerce_breadcrumb' ) ) {
379
+					if (function_exists('woocommerce_breadcrumb')) {
380 380
 						$new_crumbs[1] = array(
381
-							0 => __( 'Courses', 'lsx' ),
381
+							0 => __('Courses', 'lsx'),
382 382
 							1 => $course_page_url,
383 383
 						);
384 384
 						$new_crumbs[2] = array(
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
 						);
391 391
 					} else {
392 392
 						$new_crumbs[1] = array(
393
-							'text' => __( 'Courses', 'lsx' ),
393
+							'text' => __('Courses', 'lsx'),
394 394
 							'url'  => $course_page_url,
395 395
 						);
396 396
 						$new_crumbs[2] = array(
@@ -412,27 +412,27 @@  discard block
 block discarded – undo
412 412
 		 * @param $crumbs
413 413
 		 * @return array
414 414
 		 */
415
-		public function lsx_sensei_module_breadcrumb_filter( $crumbs, $id = 0 ) {
416
-			if ( ! empty( get_queried_object()->name ) ) {
417
-				$title = apply_filters( 'sensei_module_archive_title', get_queried_object()->name );
415
+		public function lsx_sensei_module_breadcrumb_filter($crumbs, $id = 0) {
416
+			if ( ! empty(get_queried_object()->name)) {
417
+				$title = apply_filters('sensei_module_archive_title', get_queried_object()->name);
418 418
 			}
419 419
 
420
-			if ( is_sensei() && is_tax() && is_archive() && ( ! empty( $title ) ) ) {
420
+			if (is_sensei() && is_tax() && is_archive() && ( ! empty($title))) {
421 421
 
422 422
 				$lesson          = get_the_archive_title();
423
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
424
-				$course_page_url = get_permalink( $course_page_url );
423
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
424
+				$course_page_url = get_permalink($course_page_url);
425 425
 
426
-				if ( empty( $id ) ) {
426
+				if (empty($id)) {
427 427
 					$id = get_the_ID();
428 428
 				}
429 429
 
430 430
 				$new_crumbs    = array();
431 431
 				$new_crumbs[0] = $crumbs[0];
432 432
 
433
-				if ( function_exists( 'woocommerce_breadcrumb' ) ) {
433
+				if (function_exists('woocommerce_breadcrumb')) {
434 434
 					$new_crumbs[1] = array(
435
-						0 => __( 'Courses', 'lsx' ),
435
+						0 => __('Courses', 'lsx'),
436 436
 						1 => $course_page_url,
437 437
 					);
438 438
 					$new_crumbs[2] = array(
@@ -440,7 +440,7 @@  discard block
 block discarded – undo
440 440
 					);
441 441
 				} else {
442 442
 					$new_crumbs[1] = array(
443
-						'text' => __( 'Courses', 'lsx' ),
443
+						'text' => __('Courses', 'lsx'),
444 444
 						'url'  => $course_page_url,
445 445
 					);
446 446
 					$new_crumbs[2] = array(
@@ -457,38 +457,38 @@  discard block
 block discarded – undo
457 457
 		 * @param $crumbs
458 458
 		 * @return array
459 459
 		 */
460
-		public function lsx_sensei_learner_breadcrumb_filter( $crumbs, $id = 0 ) {
460
+		public function lsx_sensei_learner_breadcrumb_filter($crumbs, $id = 0) {
461 461
 			global $wp_query;
462 462
 
463
-			if ( isset( $wp_query->query_vars['learner_profile'] ) ) {
463
+			if (isset($wp_query->query_vars['learner_profile'])) {
464 464
 				$is_profile = $wp_query->query_vars['learner_profile'];
465 465
 			} else {
466 466
 				$is_profile = false;
467 467
 			}
468 468
 
469
-			if ( is_sticky() && $is_profile ) {
469
+			if (is_sticky() && $is_profile) {
470 470
 
471
-				if ( empty( $id ) ) {
471
+				if (empty($id)) {
472 472
 					$id = get_the_ID();
473 473
 				}
474 474
 
475 475
 				$query_var    = $wp_query->query_vars['learner_profile'];
476
-				$learner_user = Sensei_Learner::find_by_query_var( $query_var );
476
+				$learner_user = Sensei_Learner::find_by_query_var($query_var);
477 477
 				$learner_name = $learner_user->display_name;
478 478
 
479 479
 				$new_crumbs    = array();
480 480
 				$new_crumbs[0] = $crumbs[0];
481 481
 
482
-				if ( function_exists( 'woocommerce_breadcrumb' ) ) {
482
+				if (function_exists('woocommerce_breadcrumb')) {
483 483
 					$new_crumbs[1] = array(
484
-						0 => __( 'Learners', 'lsx' ),
484
+						0 => __('Learners', 'lsx'),
485 485
 					);
486 486
 					$new_crumbs[2] = array(
487 487
 						0 => $learner_name,
488 488
 					);
489 489
 				} else {
490 490
 					$new_crumbs[1] = array(
491
-						'text' => __( 'Learners', 'lsx' ),
491
+						'text' => __('Learners', 'lsx'),
492 492
 					);
493 493
 					$new_crumbs[2] = array(
494 494
 						'text' => $learner_name,
@@ -504,36 +504,36 @@  discard block
 block discarded – undo
504 504
 		 * @param $crumbs
505 505
 		 * @return array
506 506
 		 */
507
-		public function lsx_sensei_messages_breadcrumb_filter( $crumbs, $id = 0 ) {
508
-			if ( is_archive() && ( is_post_type_archive( 'sensei_message' ) ) ) {
507
+		public function lsx_sensei_messages_breadcrumb_filter($crumbs, $id = 0) {
508
+			if (is_archive() && (is_post_type_archive('sensei_message'))) {
509 509
 
510
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
511
-				$course_page_url = get_permalink( $course_page_url );
510
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
511
+				$course_page_url = get_permalink($course_page_url);
512 512
 
513
-				if ( empty( $id ) ) {
513
+				if (empty($id)) {
514 514
 					$id = get_the_ID();
515 515
 				}
516 516
 
517
-				if ( $id ) {
517
+				if ($id) {
518 518
 
519 519
 					$new_crumbs    = array();
520 520
 					$new_crumbs[0] = $crumbs[0];
521 521
 
522
-					if ( function_exists( 'woocommerce_breadcrumb' ) ) {
522
+					if (function_exists('woocommerce_breadcrumb')) {
523 523
 						$new_crumbs[1] = array(
524
-							0 => __( 'Courses', 'lsx' ),
524
+							0 => __('Courses', 'lsx'),
525 525
 							1 => $course_page_url,
526 526
 						);
527 527
 						$new_crumbs[2] = array(
528
-							0 => __( 'Messages', 'lsx' ),
528
+							0 => __('Messages', 'lsx'),
529 529
 						);
530 530
 					} else {
531 531
 						$new_crumbs[1] = array(
532
-							'text' => __( 'Courses', 'lsx' ),
532
+							'text' => __('Courses', 'lsx'),
533 533
 							'url'  => $course_page_url,
534 534
 						);
535 535
 						$new_crumbs[2] = array(
536
-							'text' => __( 'Messages', 'lsx' ),
536
+							'text' => __('Messages', 'lsx'),
537 537
 						);
538 538
 					}
539 539
 					$crumbs = $new_crumbs;
@@ -547,35 +547,35 @@  discard block
 block discarded – undo
547 547
 		 * @param $crumbs
548 548
 		 * @return array
549 549
 		 */
550
-		public function lsx_sensei_single_message_breadcrumb_filter( $crumbs, $id = 0 ) {
551
-			if ( is_single() && ( is_singular( 'sensei_message' ) ) ) {
550
+		public function lsx_sensei_single_message_breadcrumb_filter($crumbs, $id = 0) {
551
+			if (is_single() && (is_singular('sensei_message'))) {
552 552
 
553 553
 				$messages_page_url = '/messages/';
554 554
 
555
-				if ( empty( $id ) ) {
555
+				if (empty($id)) {
556 556
 					$id = get_the_ID();
557 557
 				}
558 558
 
559
-				if ( $id ) {
559
+				if ($id) {
560 560
 
561 561
 					$new_crumbs    = array();
562 562
 					$new_crumbs[0] = $crumbs[0];
563 563
 
564
-					if ( function_exists( 'woocommerce_breadcrumb' ) ) {
564
+					if (function_exists('woocommerce_breadcrumb')) {
565 565
 						$new_crumbs[1] = array(
566
-							0 => __( 'Messages', 'lsx' ),
566
+							0 => __('Messages', 'lsx'),
567 567
 							1 => $messages_page_url,
568 568
 						);
569 569
 						$new_crumbs[2] = array(
570
-							0 => __( 'Message', 'lsx' ),
570
+							0 => __('Message', 'lsx'),
571 571
 						);
572 572
 					} else {
573 573
 						$new_crumbs[1] = array(
574
-							'text' => __( 'Messages', 'lsx' ),
574
+							'text' => __('Messages', 'lsx'),
575 575
 							'url'  => $messages_page_url,
576 576
 						);
577 577
 						$new_crumbs[2] = array(
578
-							'text' => __( 'Message', 'lsx' ),
578
+							'text' => __('Message', 'lsx'),
579 579
 						);
580 580
 					}
581 581
 					$crumbs = $new_crumbs;
@@ -589,35 +589,35 @@  discard block
 block discarded – undo
589 589
 		 * @param $crumbs
590 590
 		 * @return array
591 591
 		 */
592
-		public function lsx_sensei_quiz_breadcrumb_filter( $crumbs, $id = 0 ) {
593
-			if ( ( is_single() && ( is_singular( 'quiz' ) ) ) ) {
592
+		public function lsx_sensei_quiz_breadcrumb_filter($crumbs, $id = 0) {
593
+			if ((is_single() && (is_singular('quiz')))) {
594 594
 				global $course;
595
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
596
-				$course_page_url = get_permalink( $course_page_url );
595
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
596
+				$course_page_url = get_permalink($course_page_url);
597 597
 				$lesson          = get_the_title();
598 598
 
599
-				if ( empty( $id ) ) {
599
+				if (empty($id)) {
600 600
 					$id = get_the_ID();
601 601
 				}
602 602
 
603
-				if ( 0 < intval( $id ) ) {
603
+				if (0 < intval($id)) {
604 604
 
605
-					$course       = intval( get_post_meta( $id, '_quiz_lesson', true ) );
606
-					$course_id    = esc_url( get_permalink( $course ) );
607
-					$course_title = esc_html( get_the_title( $course ) );
608
-					if ( ! $course ) {
605
+					$course       = intval(get_post_meta($id, '_quiz_lesson', true));
606
+					$course_id    = esc_url(get_permalink($course));
607
+					$course_title = esc_html(get_the_title($course));
608
+					if ( ! $course) {
609 609
 						return;
610 610
 					}
611 611
 				}
612 612
 
613
-				if ( $course_id ) {
613
+				if ($course_id) {
614 614
 
615 615
 					$new_crumbs    = array();
616 616
 					$new_crumbs[0] = $crumbs[0];
617 617
 
618
-					if ( function_exists( 'woocommerce_breadcrumb' ) ) {
618
+					if (function_exists('woocommerce_breadcrumb')) {
619 619
 						$new_crumbs[1] = array(
620
-							0 => __( 'Courses', 'lsx' ),
620
+							0 => __('Courses', 'lsx'),
621 621
 							1 => $course_page_url,
622 622
 						);
623 623
 						$new_crumbs[2] = array(
@@ -629,7 +629,7 @@  discard block
 block discarded – undo
629 629
 						);
630 630
 					} else {
631 631
 						$new_crumbs[1] = array(
632
-							'text' => __( 'Courses', 'lsx' ),
632
+							'text' => __('Courses', 'lsx'),
633 633
 							'url'  => $course_page_url,
634 634
 						);
635 635
 						$new_crumbs[2] = array(
@@ -652,36 +652,36 @@  discard block
 block discarded – undo
652 652
 		 * @param $crumbs
653 653
 		 * @return array
654 654
 		 */
655
-		public function lsx_sensei_results_breadcrumb_filter( $crumbs, $id = 0 ) {
656
-			if ( is_sticky() ) {
655
+		public function lsx_sensei_results_breadcrumb_filter($crumbs, $id = 0) {
656
+			if (is_sticky()) {
657 657
 				global $wp_query;
658 658
 				$course_id = '';
659
-				if ( isset( $wp_query->query_vars['course_results'] ) ) {
659
+				if (isset($wp_query->query_vars['course_results'])) {
660 660
 					$is_results = $wp_query->query_vars['course_results'];
661 661
 				}
662
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
663
-				$course_page_url = get_permalink( $course_page_url );
662
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
663
+				$course_page_url = get_permalink($course_page_url);
664 664
 
665
-				if ( empty( $id ) ) {
665
+				if (empty($id)) {
666 666
 					$id = get_the_ID();
667 667
 				}
668 668
 
669
-				if ( isset( $is_results ) ) {
670
-					$course_for_results = get_page_by_path( $is_results, OBJECT, 'course' );
669
+				if (isset($is_results)) {
670
+					$course_for_results = get_page_by_path($is_results, OBJECT, 'course');
671 671
 
672
-					$course_id    = esc_url( get_permalink( $course_for_results ) );
673
-					$course_title = esc_html( $course_for_results->post_title );
672
+					$course_id    = esc_url(get_permalink($course_for_results));
673
+					$course_title = esc_html($course_for_results->post_title);
674 674
 
675 675
 				}
676 676
 
677
-				if ( $course_id ) {
677
+				if ($course_id) {
678 678
 					$new_crumbs    = array();
679 679
 					$new_crumbs[0] = $crumbs[0];
680 680
 
681
-					if ( $is_results ) {
682
-						if ( function_exists( 'woocommerce_breadcrumb' ) ) {
681
+					if ($is_results) {
682
+						if (function_exists('woocommerce_breadcrumb')) {
683 683
 							$new_crumbs[1] = array(
684
-								0 => __( 'Courses', 'lsx' ),
684
+								0 => __('Courses', 'lsx'),
685 685
 								1 => $course_page_url,
686 686
 							);
687 687
 							$new_crumbs[2] = array(
@@ -689,15 +689,15 @@  discard block
 block discarded – undo
689 689
 								1 => $course_id,
690 690
 							);
691 691
 							$new_crumbs[3] = array(
692
-								0 => __( 'Results', 'lsx' ),
692
+								0 => __('Results', 'lsx'),
693 693
 							);
694 694
 						} else {
695 695
 							$new_crumbs[1] = array(
696
-								'text' => __( 'Courses', 'lsx' ),
696
+								'text' => __('Courses', 'lsx'),
697 697
 								'url'  => $course_page_url,
698 698
 							);
699 699
 							$new_crumbs[2] = array(
700
-								'text' => __( 'Results', 'lsx' ),
700
+								'text' => __('Results', 'lsx'),
701 701
 							);
702 702
 						}
703 703
 					}
@@ -713,9 +713,9 @@  discard block
 block discarded – undo
713 713
 		 * @param [type] $message_post_id
714 714
 		 * @return void
715 715
 		 */
716
-		public function lsx_sensei_view_message_button( $message_post_id ) {
717
-			$message_link = get_the_permalink( $message_post_id );
718
-			echo '<a href="' . esc_url_raw( $message_link ) . '" class="btn view-msg-btn">' . wp_kses_post( 'View Message', 'lsx' ) . '</a>';
716
+		public function lsx_sensei_view_message_button($message_post_id) {
717
+			$message_link = get_the_permalink($message_post_id);
718
+			echo '<a href="' . esc_url_raw($message_link) . '" class="btn view-msg-btn">' . wp_kses_post('View Message', 'lsx') . '</a>';
719 719
 		}
720 720
 
721 721
 		/**
@@ -724,9 +724,9 @@  discard block
 block discarded – undo
724 724
 		 * @param [type] $message_post_id
725 725
 		 * @return void
726 726
 		 */
727
-		public function lsx_sensei_back_message_button( $courses_link ) {
727
+		public function lsx_sensei_back_message_button($courses_link) {
728 728
 			$courses_link = '/my-courses/';
729
-			echo '<a href="' . esc_url_raw( $courses_link ) . '" class="btn border-btn my-courses-btn">' . wp_kses_post( 'My Courses', 'lsx' ) . '</a>';
729
+			echo '<a href="' . esc_url_raw($courses_link) . '" class="btn border-btn my-courses-btn">' . wp_kses_post('My Courses', 'lsx') . '</a>';
730 730
 		}
731 731
 	}
732 732
 
Please login to merge, or discard this patch.
includes/woocommerce/woocommerce.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -784,7 +784,7 @@
 block discarded – undo
784 784
 	 *
785 785
 	 * @access      public
786 786
 	 * @since       1.0
787
-	 * @return      void
787
+	 * @return      string
788 788
 	 */
789 789
 	function lsx_wc_product_searchform( $form ) {
790 790
 
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -801,7 +801,7 @@
 block discarded – undo
801 801
 
802 802
 	/**
803 803
 	 * Output the pagination.
804
-	*/
804
+	 */
805 805
 function woocommerce_pagination() {
806 806
 	if ( ! wc_get_loop_prop( 'is_paginated' ) || ! woocommerce_products_will_display() ) {
807 807
 		return;
Please login to merge, or discard this patch.
Spacing   +204 added lines, -204 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
  * @subpackage woocommerce
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! function_exists( 'lsx_wc_support' ) ) :
13
+if ( ! function_exists('lsx_wc_support')) :
14 14
 
15 15
 	/**
16 16
 	 * WooCommerce support.
@@ -19,17 +19,17 @@  discard block
 block discarded – undo
19 19
 	 * @subpackage woocommerce
20 20
 	 */
21 21
 	function lsx_wc_support() {
22
-		add_theme_support( 'woocommerce' );
23
-		add_theme_support( 'wc-product-gallery-zoom' );
24
-		add_theme_support( 'wc-product-gallery-lightbox' );
25
-		add_theme_support( 'wc-product-gallery-slider' );
22
+		add_theme_support('woocommerce');
23
+		add_theme_support('wc-product-gallery-zoom');
24
+		add_theme_support('wc-product-gallery-lightbox');
25
+		add_theme_support('wc-product-gallery-slider');
26 26
 	}
27 27
 
28
-	add_action( 'after_setup_theme', 'lsx_wc_support' );
28
+	add_action('after_setup_theme', 'lsx_wc_support');
29 29
 
30 30
 endif;
31 31
 
32
-if ( ! function_exists( 'lsx_wc_scripts_add_styles' ) ) :
32
+if ( ! function_exists('lsx_wc_scripts_add_styles')) :
33 33
 
34 34
 	/**
35 35
 	 * WooCommerce enqueue styles.
@@ -38,18 +38,18 @@  discard block
 block discarded – undo
38 38
 	 * @subpackage woocommerce
39 39
 	 */
40 40
 	function lsx_wc_scripts_add_styles() {
41
-		wp_enqueue_style( 'woocommerce-lsx', get_template_directory_uri() . '/assets/css/woocommerce/woocommerce.css', array( 'lsx_main' ), LSX_VERSION );
42
-		wp_style_add_data( 'woocommerce-lsx', 'rtl', 'replace' );
41
+		wp_enqueue_style('woocommerce-lsx', get_template_directory_uri() . '/assets/css/woocommerce/woocommerce.css', array('lsx_main'), LSX_VERSION);
42
+		wp_style_add_data('woocommerce-lsx', 'rtl', 'replace');
43 43
 
44 44
 		// Remove WC Shipping Multiple Addresses specific script causing issues on checkout.
45
-		wp_dequeue_script( 'wcms-country-select' );
45
+		wp_dequeue_script('wcms-country-select');
46 46
 	}
47 47
 
48
-	add_action( 'wp_enqueue_scripts', 'lsx_wc_scripts_add_styles' );
48
+	add_action('wp_enqueue_scripts', 'lsx_wc_scripts_add_styles');
49 49
 
50 50
 endif;
51 51
 
52
-if ( ! function_exists( 'lsx_wc_form_field_args' ) ) :
52
+if ( ! function_exists('lsx_wc_form_field_args')) :
53 53
 
54 54
 	/**
55 55
 	 * WooCommerce form fields.
@@ -57,17 +57,17 @@  discard block
 block discarded – undo
57 57
 	 * @package    lsx
58 58
 	 * @subpackage woocommerce
59 59
 	 */
60
-	function lsx_wc_form_field_args( $args, $key, $value ) {
60
+	function lsx_wc_form_field_args($args, $key, $value) {
61 61
 		$args['input_class'][] = 'form-control';
62 62
 
63 63
 		return $args;
64 64
 	}
65 65
 
66
-	add_action( 'woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3 );
66
+	add_action('woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3);
67 67
 
68 68
 endif;
69 69
 
70
-if ( ! function_exists( 'lsx_wc_theme_wrapper_start' ) ) :
70
+if ( ! function_exists('lsx_wc_theme_wrapper_start')) :
71 71
 
72 72
 	/**
73 73
 	 * WooCommerce wrapper start.
@@ -77,18 +77,18 @@  discard block
 block discarded – undo
77 77
 	 */
78 78
 	function lsx_wc_theme_wrapper_start() {
79 79
 		lsx_content_wrap_before();
80
-		echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">';
80
+		echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">';
81 81
 		lsx_content_before();
82 82
 		echo '<main id="main" class="site-main" role="main">';
83 83
 		lsx_content_top();
84 84
 	}
85 85
 
86
-	remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 );
87
-	add_action( 'woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start' );
86
+	remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
87
+	add_action('woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start');
88 88
 
89 89
 endif;
90 90
 
91
-if ( ! function_exists( 'lsx_wc_theme_wrapper_end' ) ) :
91
+if ( ! function_exists('lsx_wc_theme_wrapper_end')) :
92 92
 
93 93
 	/**
94 94
 	 * WooCommerce wrapper end.
@@ -104,12 +104,12 @@  discard block
 block discarded – undo
104 104
 		lsx_content_wrap_after();
105 105
 	}
106 106
 
107
-	remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 );
108
-	add_action( 'woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end' );
107
+	remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
108
+	add_action('woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end');
109 109
 
110 110
 endif;
111 111
 
112
-if ( ! function_exists( 'lsx_wc_disable_lsx_banner_plugin' ) ) :
112
+if ( ! function_exists('lsx_wc_disable_lsx_banner_plugin')) :
113 113
 
114 114
 	/**
115 115
 	 * Disable LSX Banners plugin in some WC pages.
@@ -117,21 +117,21 @@  discard block
 block discarded – undo
117 117
 	 * @package    lsx
118 118
 	 * @subpackage woocommerce
119 119
 	 */
120
-	function lsx_wc_disable_lsx_banner_plugin( $disabled ) {
120
+	function lsx_wc_disable_lsx_banner_plugin($disabled) {
121 121
 		global $post;
122 122
 
123
-		if ( $post && class_exists( 'WC_Wishlists_Pages' ) && WC_Wishlists_Pages::is_wishlist_page( $post->post_name ) ) {
123
+		if ($post && class_exists('WC_Wishlists_Pages') && WC_Wishlists_Pages::is_wishlist_page($post->post_name)) {
124 124
 			$disabled = true;
125 125
 		}
126 126
 
127 127
 		return $disabled;
128 128
 	}
129 129
 
130
-	add_filter( 'lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin' );
130
+	add_filter('lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin');
131 131
 
132 132
 endif;
133 133
 
134
-if ( ! function_exists( 'lsx_wc_disable_lsx_banner' ) ) :
134
+if ( ! function_exists('lsx_wc_disable_lsx_banner')) :
135 135
 
136 136
 	/**
137 137
 	 * Disable LSX Banners banner in some WC pages.
@@ -139,41 +139,41 @@  discard block
 block discarded – undo
139 139
 	 * @package    lsx
140 140
 	 * @subpackage woocommerce
141 141
 	 */
142
-	function lsx_wc_disable_lsx_banner( $disabled ) {
143
-		if ( is_shop() || is_product_category() || is_product_tag() || is_product() ) {
142
+	function lsx_wc_disable_lsx_banner($disabled) {
143
+		if (is_shop() || is_product_category() || is_product_tag() || is_product()) {
144 144
 			$disabled = true;
145 145
 		}
146 146
 
147 147
 		return $disabled;
148 148
 	}
149 149
 
150
-	add_filter( 'lsx_banner_disable', 'lsx_wc_disable_lsx_banner' );
150
+	add_filter('lsx_banner_disable', 'lsx_wc_disable_lsx_banner');
151 151
 
152 152
 endif;
153 153
 
154
-if ( ! function_exists( 'lsx_wc_categories_breadcrumb_filter' ) ) :
154
+if ( ! function_exists('lsx_wc_categories_breadcrumb_filter')) :
155 155
 	/**
156 156
 	 * Improves the category and taxonomy breadcrumbs for woocommerce.
157 157
 	 *
158 158
 	 * @package    lsx
159 159
 	 * @subpackage woocommerce
160 160
 	 */
161
-	function lsx_wc_categories_breadcrumb_filter( $crumbs ) {
161
+	function lsx_wc_categories_breadcrumb_filter($crumbs) {
162 162
 
163
-		$shop_page_url = get_permalink( wc_get_page_id( 'shop' ) );
163
+		$shop_page_url = get_permalink(wc_get_page_id('shop'));
164 164
 
165
-		if ( is_product_category() || is_product_tag() ) {
165
+		if (is_product_category() || is_product_tag()) {
166 166
 			$new_crumbs = array();
167 167
 			$new_crumbs[0] = $crumbs[0];
168 168
 
169
-			if ( function_exists( 'woocommerce_breadcrumb' ) ) {
169
+			if (function_exists('woocommerce_breadcrumb')) {
170 170
 				$new_crumbs[1] = array(
171
-					0 => __( 'Shop', 'lsx' ),
171
+					0 => __('Shop', 'lsx'),
172 172
 					1 => $shop_page_url,
173 173
 				);
174 174
 			} else {
175 175
 				$new_crumbs[1] = array(
176
-					'text' => __( 'Shop', 'lsx' ),
176
+					'text' => __('Shop', 'lsx'),
177 177
 					'url'  => $shop_page_url,
178 178
 				);
179 179
 			}
@@ -184,12 +184,12 @@  discard block
 block discarded – undo
184 184
 		}
185 185
 		return $crumbs;
186 186
 	}
187
-	add_filter( 'wpseo_breadcrumb_links', 'lsx_wc_categories_breadcrumb_filter', 30, 1 );
188
-	add_filter( 'woocommerce_get_breadcrumb', 'lsx_wc_categories_breadcrumb_filter', 30, 1 );
187
+	add_filter('wpseo_breadcrumb_links', 'lsx_wc_categories_breadcrumb_filter', 30, 1);
188
+	add_filter('woocommerce_get_breadcrumb', 'lsx_wc_categories_breadcrumb_filter', 30, 1);
189 189
 
190 190
 endif;
191 191
 
192
-if ( ! function_exists( 'lsx_wc_add_cart' ) ) :
192
+if ( ! function_exists('lsx_wc_add_cart')) :
193 193
 
194 194
 	/**
195 195
 	 * Adds WC cart to the header.
@@ -197,34 +197,34 @@  discard block
 block discarded – undo
197 197
 	 * @package    lsx
198 198
 	 * @subpackage template-tags
199 199
 	 */
200
-	function lsx_wc_add_cart( $items, $args ) {
201
-		$cart_menu_item_position = apply_filters( 'lsx_wc_cart_menu_item_position', 'primary' );
200
+	function lsx_wc_add_cart($items, $args) {
201
+		$cart_menu_item_position = apply_filters('lsx_wc_cart_menu_item_position', 'primary');
202 202
 
203 203
 		$cart_logged_out_position = $cart_menu_item_position . '_logged_out';
204 204
 
205
-		if ( $cart_menu_item_position === $args->theme_location || $cart_logged_out_position === $args->theme_location ) {
206
-			$customizer_option  = get_theme_mod( 'lsx_header_wc_cart', false );
205
+		if ($cart_menu_item_position === $args->theme_location || $cart_logged_out_position === $args->theme_location) {
206
+			$customizer_option = get_theme_mod('lsx_header_wc_cart', false);
207 207
 
208
-			if ( ! empty( $customizer_option ) ) {
208
+			if ( ! empty($customizer_option)) {
209 209
 				ob_start();
210
-				the_widget( 'WC_Widget_Cart', 'title=' );
210
+				the_widget('WC_Widget_Cart', 'title=');
211 211
 				$widget = ob_get_clean();
212 212
 
213
-				if ( is_cart() ) {
213
+				if (is_cart()) {
214 214
 					$class = 'current-menu-item';
215 215
 				} else {
216 216
 					$class = '';
217 217
 				}
218 218
 
219 219
 				$item_class = 'menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children dropdown lsx-wc-cart-menu-item ' . $class;
220
-				$item_class = apply_filters( 'lsx_wc_cart_menu_item_class', $item_class );
220
+				$item_class = apply_filters('lsx_wc_cart_menu_item_class', $item_class);
221 221
 
222 222
 				$item = '<li class="' . $item_class . '">' .
223
-							'<a title="' . esc_attr__( 'View your shopping cart', 'lsx' ) . '" href="' . esc_url( wc_get_cart_url() ) . '" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true">' .
224
-								'<span class="lsx-wc-cart-amount">' . wp_kses_data( WC()->cart->get_cart_subtotal() ) . '</span>' .
223
+							'<a title="' . esc_attr__('View your shopping cart', 'lsx') . '" href="' . esc_url(wc_get_cart_url()) . '" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true">' .
224
+								'<span class="lsx-wc-cart-amount">' . wp_kses_data(WC()->cart->get_cart_subtotal()) . '</span>' .
225 225
 								/* Translators: %s: items quantity */
226
-								'<span class="lsx-wc-cart-count">' . wp_kses_data( sprintf( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx' ), WC()->cart->get_cart_contents_count() ) ) . '</span>' .
227
-								( ! empty( WC()->cart->get_cart_contents_count() ) ? '<span class="lsx-wc-cart-count-badge">' . wp_kses_data( WC()->cart->get_cart_contents_count() ) . '</span>' : '' ) .
226
+								'<span class="lsx-wc-cart-count">' . wp_kses_data(sprintf(_n('%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx'), WC()->cart->get_cart_contents_count())) . '</span>' .
227
+								( ! empty(WC()->cart->get_cart_contents_count()) ? '<span class="lsx-wc-cart-count-badge">' . wp_kses_data(WC()->cart->get_cart_contents_count()) . '</span>' : '') .
228 228
 							'</a>' .
229 229
 							'<ul role="menu" class=" dropdown-menu lsx-wc-cart-sub-menu">' .
230 230
 								'<li>' .
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
 							'</ul>' .
234 234
 						'</li>';
235 235
 
236
-				if ( 'top-menu' === $args->theme_location ) {
236
+				if ('top-menu' === $args->theme_location) {
237 237
 					$items = $item . $items;
238 238
 				} else {
239 239
 					$items = $items . $item;
@@ -244,11 +244,11 @@  discard block
 block discarded – undo
244 244
 		return $items;
245 245
 	}
246 246
 
247
-	add_filter( 'wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2 );
247
+	add_filter('wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2);
248 248
 
249 249
 endif;
250 250
 
251
-if ( ! function_exists( 'lsx_wc_products_widget_wrapper_before' ) ) :
251
+if ( ! function_exists('lsx_wc_products_widget_wrapper_before')) :
252 252
 
253 253
 	/**
254 254
 	 * Change WC products widget wrapper (before).
@@ -256,16 +256,16 @@  discard block
 block discarded – undo
256 256
 	 * @package    lsx
257 257
 	 * @subpackage woocommerce
258 258
 	 */
259
-	function lsx_wc_products_widget_wrapper_before( $html ) {
259
+	function lsx_wc_products_widget_wrapper_before($html) {
260 260
 		$html = '<div class="lsx-woocommerce-slider lsx-woocommerce-shortcode">';
261 261
 		return $html;
262 262
 	}
263 263
 
264
-	add_filter( 'woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15 );
264
+	add_filter('woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15);
265 265
 
266 266
 endif;
267 267
 
268
-if ( ! function_exists( 'lsx_wc_products_widget_wrapper_after' ) ) :
268
+if ( ! function_exists('lsx_wc_products_widget_wrapper_after')) :
269 269
 
270 270
 	/**
271 271
 	 * Change WC products widget wrapper (after).
@@ -273,16 +273,16 @@  discard block
 block discarded – undo
273 273
 	 * @package    lsx
274 274
 	 * @subpackage woocommerce
275 275
 	 */
276
-	function lsx_wc_products_widget_wrapper_after( $html ) {
276
+	function lsx_wc_products_widget_wrapper_after($html) {
277 277
 		$html = '</div>';
278 278
 		return $html;
279 279
 	}
280 280
 
281
-	add_filter( 'woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15 );
281
+	add_filter('woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15);
282 282
 
283 283
 endif;
284 284
 
285
-if ( ! function_exists( 'lsx_wc_reviews_widget_override' ) ) :
285
+if ( ! function_exists('lsx_wc_reviews_widget_override')) :
286 286
 
287 287
 	/**
288 288
 	 * Override WC ewviews widget.
@@ -291,18 +291,18 @@  discard block
 block discarded – undo
291 291
 	 * @subpackage woocommerce
292 292
 	 */
293 293
 	function lsx_wc_reviews_widget_override() {
294
-		if ( class_exists( 'WC_Widget_Recent_Reviews' ) ) {
295
-			unregister_widget( 'WC_Widget_Recent_Reviews' );
294
+		if (class_exists('WC_Widget_Recent_Reviews')) {
295
+			unregister_widget('WC_Widget_Recent_Reviews');
296 296
 			require get_template_directory() . '/includes/classes/class-lsx-wc-widget-recent-reviews.php';
297
-			register_widget( 'LSX_WC_Widget_Recent_Reviews' );
297
+			register_widget('LSX_WC_Widget_Recent_Reviews');
298 298
 		}
299 299
 	}
300 300
 
301
-	add_action( 'widgets_init', 'lsx_wc_reviews_widget_override', 15 );
301
+	add_action('widgets_init', 'lsx_wc_reviews_widget_override', 15);
302 302
 
303 303
 endif;
304 304
 
305
-if ( ! function_exists( 'lsx_wc_change_price_html' ) ) :
305
+if ( ! function_exists('lsx_wc_change_price_html')) :
306 306
 
307 307
 	/**
308 308
 	 * Change WC ZERO price to "free".
@@ -314,28 +314,28 @@  discard block
 block discarded – undo
314 314
 	 * @param $product WC_Product
315 315
 	 * @return string
316 316
 	 */
317
-	function lsx_wc_change_price_html( $price, $product ) {
318
-		if ( empty( $product->get_price() ) ) {
319
-			if ( $product->is_on_sale() && $product->get_regular_price() ) {
320
-				$regular_price = wc_get_price_to_display( $product, array(
317
+	function lsx_wc_change_price_html($price, $product) {
318
+		if (empty($product->get_price())) {
319
+			if ($product->is_on_sale() && $product->get_regular_price()) {
320
+				$regular_price = wc_get_price_to_display($product, array(
321 321
 					'qty' => 1,
322 322
 					'price' => $product->get_regular_price(),
323
-				) );
323
+				));
324 324
 
325
-				$price = wc_format_price_range( $regular_price, esc_html__( 'Free!', 'lsx' ) );
325
+				$price = wc_format_price_range($regular_price, esc_html__('Free!', 'lsx'));
326 326
 			} else {
327
-				$price = '<span class="amount">' . esc_html__( 'Free!', 'lsx' ) . '</span>';
327
+				$price = '<span class="amount">' . esc_html__('Free!', 'lsx') . '</span>';
328 328
 			}
329 329
 		}
330 330
 
331 331
 		return $price;
332 332
 	}
333 333
 
334
-	add_filter( 'woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2 );
334
+	add_filter('woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2);
335 335
 
336 336
 endif;
337 337
 
338
-if ( ! function_exists( 'lsx_wc_cart_link_fragment' ) ) :
338
+if ( ! function_exists('lsx_wc_cart_link_fragment')) :
339 339
 
340 340
 	/**
341 341
 	 * Cart Fragments.
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
 	 * @package    lsx
345 345
 	 * @subpackage woocommerce
346 346
 	 */
347
-	function lsx_wc_cart_link_fragment( $fragments ) {
347
+	function lsx_wc_cart_link_fragment($fragments) {
348 348
 		global $woocommerce;
349 349
 
350 350
 		ob_start();
@@ -355,8 +355,8 @@  discard block
 block discarded – undo
355 355
 		lsx_wc_items_counter();
356 356
 		$items_counter = ob_get_clean();
357 357
 
358
-		if ( ! empty( $items_counter ) ) {
359
-			$fragments['div.widget_shopping_cart_content'] = preg_replace( '/(.+)(<\/ul>)[\s\n]*(<p class="woocommerce-mini-cart__total)(.+)/', '$1' . $items_counter . '$2$3$4', $fragments['div.widget_shopping_cart_content'] );
358
+		if ( ! empty($items_counter)) {
359
+			$fragments['div.widget_shopping_cart_content'] = preg_replace('/(.+)(<\/ul>)[\s\n]*(<p class="woocommerce-mini-cart__total)(.+)/', '$1' . $items_counter . '$2$3$4', $fragments['div.widget_shopping_cart_content']);
360 360
 		}
361 361
 
362 362
 		return $fragments;
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
 
365 365
 endif;
366 366
 
367
-if ( ! function_exists( 'lsx_wc_cart_link' ) ) :
367
+if ( ! function_exists('lsx_wc_cart_link')) :
368 368
 
369 369
 	/**
370 370
 	 * Cart Link.
@@ -375,14 +375,14 @@  discard block
 block discarded – undo
375 375
 	 */
376 376
 	function lsx_wc_cart_link() {
377 377
 		?>
378
-			<a title="<?php esc_attr_e( 'View your shopping cart', 'lsx' ); ?>" href="<?php echo esc_url( wc_get_cart_url() ); ?>" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true">
379
-				<span class="lsx-wc-cart-amount"><?php echo wp_kses_data( WC()->cart->get_cart_subtotal() ); ?></span>
378
+			<a title="<?php esc_attr_e('View your shopping cart', 'lsx'); ?>" href="<?php echo esc_url(wc_get_cart_url()); ?>" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true">
379
+				<span class="lsx-wc-cart-amount"><?php echo wp_kses_data(WC()->cart->get_cart_subtotal()); ?></span>
380 380
 
381 381
 				<?php /* Translators: %s: items quantity */ ?>
382
-				<span class="lsx-wc-cart-count"><?php echo wp_kses_data( sprintf( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx' ), WC()->cart->get_cart_contents_count() ) );?></span>
382
+				<span class="lsx-wc-cart-count"><?php echo wp_kses_data(sprintf(_n('%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx'), WC()->cart->get_cart_contents_count())); ?></span>
383 383
 
384
-				<?php if ( ! empty( WC()->cart->get_cart_contents_count() ) ) : ?>
385
-					<span class="lsx-wc-cart-count-badge"><?php echo wp_kses_data( WC()->cart->get_cart_contents_count() );?></span>
384
+				<?php if ( ! empty(WC()->cart->get_cart_contents_count())) : ?>
385
+					<span class="lsx-wc-cart-count-badge"><?php echo wp_kses_data(WC()->cart->get_cart_contents_count()); ?></span>
386 386
 				<?php endif; ?>
387 387
 			</a>
388 388
 		<?php
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
 
391 391
 endif;
392 392
 
393
-if ( ! function_exists( 'lsx_wc_items_counter' ) ) :
393
+if ( ! function_exists('lsx_wc_items_counter')) :
394 394
 
395 395
 	/**
396 396
 	 * Add car item hidden items counter.
@@ -402,21 +402,21 @@  discard block
 block discarded – undo
402 402
 		$count = (int) WC()->cart->get_cart_contents_count();
403 403
 		$items_counter = '';
404 404
 
405
-		if ( ! empty( $count ) ) {
405
+		if ( ! empty($count)) {
406 406
 			$count -= 3;
407 407
 
408
-			if ( 1 === $count ) {
409
-				$items_counter = esc_html__( '1 other item in cart', 'lsx' );
410
-			} elseif ( $count > 1 ) {
408
+			if (1 === $count) {
409
+				$items_counter = esc_html__('1 other item in cart', 'lsx');
410
+			} elseif ($count > 1) {
411 411
 				/* Translators: %s: items counter */
412
-				$items_counter = sprintf( esc_html__( '%s other items in cart', 'lsx' ), $count );
412
+				$items_counter = sprintf(esc_html__('%s other items in cart', 'lsx'), $count);
413 413
 			}
414 414
 		}
415
-		$cart_url = function_exists( 'wc_get_cart_url' ) ? wc_get_cart_url() : WC()->cart->get_cart_url();
416
-		if ( ! empty( $items_counter ) ) :
415
+		$cart_url = function_exists('wc_get_cart_url') ? wc_get_cart_url() : WC()->cart->get_cart_url();
416
+		if ( ! empty($items_counter)) :
417 417
 			?>
418 418
 				<li class="woocommerce-mini-cart-item mini_cart_item" style="display: block;">
419
-					<a href="<?php echo esc_url( $cart_url ); ?>"><?php echo esc_html( $items_counter ); ?></a>
419
+					<a href="<?php echo esc_url($cart_url); ?>"><?php echo esc_html($items_counter); ?></a>
420 420
 				</li>
421 421
 			<?php
422 422
 		endif;
@@ -424,7 +424,7 @@  discard block
 block discarded – undo
424 424
 
425 425
 endif;
426 426
 
427
-if ( ! function_exists( 'lsx_wc_loop_shop_per_page' ) ) :
427
+if ( ! function_exists('lsx_wc_loop_shop_per_page')) :
428 428
 
429 429
 	/**
430 430
 	 * Changes the number of products to display on shop.
@@ -432,16 +432,16 @@  discard block
 block discarded – undo
432 432
 	 * @package    lsx
433 433
 	 * @subpackage woocommerce
434 434
 	 */
435
-	function lsx_wc_loop_shop_per_page( $items ) {
435
+	function lsx_wc_loop_shop_per_page($items) {
436 436
 		$items = 20;
437 437
 		return $items;
438 438
 	}
439 439
 
440
-	add_filter( 'loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20 );
440
+	add_filter('loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20);
441 441
 
442 442
 endif;
443 443
 
444
-if ( ! function_exists( 'lsx_wc_add_to_cart_message_html' ) ) :
444
+if ( ! function_exists('lsx_wc_add_to_cart_message_html')) :
445 445
 
446 446
 	/**
447 447
 	 * Changes the "added to cart" message HTML.
@@ -449,39 +449,39 @@  discard block
 block discarded – undo
449 449
 	 * @package    lsx
450 450
 	 * @subpackage woocommerce
451 451
 	 */
452
-	function lsx_wc_add_to_cart_message_html( $message, $products ) {
452
+	function lsx_wc_add_to_cart_message_html($message, $products) {
453 453
 		$message = '<div class="woocommerce-message-added-to-cart">' . $message . '</div>';
454 454
 		return $message;
455 455
 	}
456 456
 
457
-	add_filter( 'wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2 );
457
+	add_filter('wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2);
458 458
 
459 459
 endif;
460 460
 
461
-if ( defined( 'WC_VERSION' ) && version_compare( WC_VERSION, '2.3', '>=' ) ) {
462
-	add_filter( 'woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment' );
461
+if (defined('WC_VERSION') && version_compare(WC_VERSION, '2.3', '>=')) {
462
+	add_filter('woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment');
463 463
 } else {
464
-	add_filter( 'add_to_cart_fragments', 'lsx_wc_cart_link_fragment' );
464
+	add_filter('add_to_cart_fragments', 'lsx_wc_cart_link_fragment');
465 465
 }
466 466
 
467
-remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 );
467
+remove_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 10);
468 468
 
469
-add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9 );
470
-add_action( 'woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10 );
471
-add_action( 'woocommerce_after_shop_loop', 'woocommerce_result_count', 20 );
472
-add_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 30 );
473
-add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 );
469
+add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9);
470
+add_action('woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10);
471
+add_action('woocommerce_after_shop_loop', 'woocommerce_result_count', 20);
472
+add_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 30);
473
+add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31);
474 474
 
475
-remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
476
-remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 );
475
+remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20);
476
+remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30);
477 477
 
478
-add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9 );
479
-add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10 );
480
-add_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
481
-add_action( 'woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30 );
482
-add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 );
478
+add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9);
479
+add_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10);
480
+add_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20);
481
+add_action('woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30);
482
+add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31);
483 483
 
484
-if ( ! function_exists( 'lsx_wc_sorting_wrapper' ) ) :
484
+if ( ! function_exists('lsx_wc_sorting_wrapper')) :
485 485
 
486 486
 	/**
487 487
 	 * Sorting wrapper.
@@ -495,7 +495,7 @@  discard block
 block discarded – undo
495 495
 
496 496
 endif;
497 497
 
498
-if ( ! function_exists( 'lsx_wc_sorting_wrapper_close' ) ) :
498
+if ( ! function_exists('lsx_wc_sorting_wrapper_close')) :
499 499
 
500 500
 	/**
501 501
 	 * Sorting wrapper close.
@@ -509,7 +509,7 @@  discard block
 block discarded – undo
509 509
 
510 510
 endif;
511 511
 
512
-if ( ! function_exists( 'lsx_wc_product_columns_wrapper_close' ) ) :
512
+if ( ! function_exists('lsx_wc_product_columns_wrapper_close')) :
513 513
 
514 514
 	/**
515 515
 	 * Product columns wrapper close.
@@ -523,7 +523,7 @@  discard block
 block discarded – undo
523 523
 
524 524
 endif;
525 525
 
526
-if ( ! function_exists( 'lsx_wc_woocommerce_pagination' ) ) :
526
+if ( ! function_exists('lsx_wc_woocommerce_pagination')) :
527 527
 
528 528
 	/**
529 529
 	 * LSX WooCommerce Pagination
@@ -535,14 +535,14 @@  discard block
 block discarded – undo
535 535
 	 * @subpackage woocommerce
536 536
 	 */
537 537
 	function lsx_wc_woocommerce_pagination() {
538
-		if ( woocommerce_products_will_display() ) {
538
+		if (woocommerce_products_will_display()) {
539 539
 			woocommerce_pagination();
540 540
 		}
541 541
 	}
542 542
 
543 543
 endif;
544 544
 
545
-if ( ! function_exists( 'lsx_customizer_wc_controls' ) ) :
545
+if ( ! function_exists('lsx_customizer_wc_controls')) :
546 546
 
547 547
 	/**
548 548
 	 * Returns an array of the core panel.
@@ -552,10 +552,10 @@  discard block
 block discarded – undo
552 552
 	 *
553 553
 	 * @return $lsx_controls array()
554 554
 	 */
555
-	function lsx_customizer_wc_controls( $lsx_controls ) {
555
+	function lsx_customizer_wc_controls($lsx_controls) {
556 556
 		$lsx_controls['panels']['lsx-wc'] = array(
557
-			'title'       => esc_html__( 'WooCommerce', 'lsx' ),
558
-			'description' => esc_html__( 'Change the WooCommerce settings.', 'lsx' ),
557
+			'title'       => esc_html__('WooCommerce', 'lsx'),
558
+			'description' => esc_html__('Change the WooCommerce settings.', 'lsx'),
559 559
 			'priority'    => 23,
560 560
 		);
561 561
 
@@ -564,8 +564,8 @@  discard block
 block discarded – undo
564 564
 		 */
565 565
 
566 566
 		$lsx_controls['sections']['lsx-wc-global'] = array(
567
-			'title'       => esc_html__( 'Global', 'lsx' ),
568
-			'description' => esc_html__( 'Change the WooCommerce global settings.', 'lsx' ),
567
+			'title'       => esc_html__('Global', 'lsx'),
568
+			'description' => esc_html__('Change the WooCommerce global settings.', 'lsx'),
569 569
 			'panel'       => 'lsx-wc',
570 570
 			'priority'    => 1,
571 571
 		);
@@ -576,8 +576,8 @@  discard block
 block discarded – undo
576 576
 		);
577 577
 
578 578
 		$lsx_controls['fields']['lsx_wc_mobile_footer_bar_status'] = array(
579
-			'label'       => esc_html__( 'Footer Bar', 'lsx' ),
580
-			'description' => esc_html__( 'Enable the mobile footer bar.', 'lsx' ),
579
+			'label'       => esc_html__('Footer Bar', 'lsx'),
580
+			'description' => esc_html__('Enable the mobile footer bar.', 'lsx'),
581 581
 			'section'     => 'lsx-wc-global',
582 582
 			'type'        => 'checkbox',
583 583
 			'priority'    => 1,
@@ -588,8 +588,8 @@  discard block
 block discarded – undo
588 588
 		 */
589 589
 
590 590
 		$lsx_controls['sections']['lsx-wc-cart'] = array(
591
-			'title'       => esc_html__( 'Cart', 'lsx' ),
592
-			'description' => esc_html__( 'Change the WooCommerce cart settings.', 'lsx' ),
591
+			'title'       => esc_html__('Cart', 'lsx'),
592
+			'description' => esc_html__('Change the WooCommerce cart settings.', 'lsx'),
593 593
 			'panel'       => 'lsx-wc',
594 594
 			'priority'    => 2,
595 595
 		);
@@ -600,8 +600,8 @@  discard block
 block discarded – undo
600 600
 		);
601 601
 
602 602
 		$lsx_controls['fields']['lsx_header_wc_cart'] = array(
603
-			'label'       => esc_html__( 'Menu Item', 'lsx' ),
604
-			'description' => esc_html__( 'Enable the cart menu item.', 'lsx' ),
603
+			'label'       => esc_html__('Menu Item', 'lsx'),
604
+			'description' => esc_html__('Enable the cart menu item.', 'lsx'),
605 605
 			'section'     => 'lsx-wc-cart',
606 606
 			'type'        => 'checkbox',
607 607
 			'priority'    => 1,
@@ -610,11 +610,11 @@  discard block
 block discarded – undo
610 610
 		return $lsx_controls;
611 611
 	}
612 612
 
613
-	add_filter( 'lsx_customizer_controls', 'lsx_customizer_wc_controls' );
613
+	add_filter('lsx_customizer_controls', 'lsx_customizer_wc_controls');
614 614
 
615 615
 endif;
616 616
 
617
-if ( ! function_exists( 'lsx_wc_global_header_title' ) ) :
617
+if ( ! function_exists('lsx_wc_global_header_title')) :
618 618
 
619 619
 	/**
620 620
 	 * Move the shop title into the global header
@@ -622,21 +622,21 @@  discard block
 block discarded – undo
622 622
 	 * @package    lsx
623 623
 	 * @subpackage the-events-calendar
624 624
 	 */
625
-	function lsx_wc_global_header_title( $title ) {
625
+	function lsx_wc_global_header_title($title) {
626 626
 
627
-		if ( is_woocommerce() && is_shop() ) {
627
+		if (is_woocommerce() && is_shop()) {
628 628
 
629
-			$title = __( 'Shop', 'lsx' );
629
+			$title = __('Shop', 'lsx');
630 630
 		}
631 631
 
632 632
 		return $title;
633 633
 	}
634
-	add_filter( 'lsx_global_header_title', 'lsx_wc_global_header_title', 200, 1 );
634
+	add_filter('lsx_global_header_title', 'lsx_wc_global_header_title', 200, 1);
635 635
 
636 636
 endif;
637 637
 
638 638
 
639
-if ( ! function_exists( 'lsx_wc_footer_bar' ) ) :
639
+if ( ! function_exists('lsx_wc_footer_bar')) :
640 640
 
641 641
 	/**
642 642
 	 * Display WC footer bar.
@@ -645,47 +645,47 @@  discard block
 block discarded – undo
645 645
 	 * @subpackage woocommerce
646 646
 	 */
647 647
 	function lsx_wc_footer_bar() {
648
-		$cart_url = function_exists( 'wc_get_cart_url' ) ? wc_get_cart_url() : WC()->cart->get_cart_url();
649
-		if ( ! empty( get_theme_mod( 'lsx_wc_mobile_footer_bar_status', '1' ) ) ) :
648
+		$cart_url = function_exists('wc_get_cart_url') ? wc_get_cart_url() : WC()->cart->get_cart_url();
649
+		if ( ! empty(get_theme_mod('lsx_wc_mobile_footer_bar_status', '1'))) :
650 650
 			?>
651 651
 			<div class="lsx-wc-footer-bar">
652
-				<form role="search" method="get" action="<?php echo esc_url( home_url() ); ?>" class="lsx-wc-footer-bar-form">
652
+				<form role="search" method="get" action="<?php echo esc_url(home_url()); ?>" class="lsx-wc-footer-bar-form">
653 653
 					<fieldset>
654
-						<legend class="screen-reader-text"><?php esc_html_e( 'Search products', 'lsx' ); ?></legend>
655
-						<input type="search" name="s" placeholder="<?php esc_attr_e( 'Search products...', 'lsx' ); ?>" class="form-control">
654
+						<legend class="screen-reader-text"><?php esc_html_e('Search products', 'lsx'); ?></legend>
655
+						<input type="search" name="s" placeholder="<?php esc_attr_e('Search products...', 'lsx'); ?>" class="form-control">
656 656
 					</fieldset>
657 657
 				</form>
658 658
 
659 659
 				<ul class="lsx-wc-footer-bar-items">
660 660
 					<li class="lsx-wc-footer-bar-item">
661
-						<a href="<?php echo esc_url( home_url() ); ?>" class="lsx-wc-footer-bar-link">
661
+						<a href="<?php echo esc_url(home_url()); ?>" class="lsx-wc-footer-bar-link">
662 662
 							<i class="fa fa-home" aria-hidden="true"></i>
663
-							<span><?php esc_html_e( 'Home', 'lsx' ); ?></span>
663
+							<span><?php esc_html_e('Home', 'lsx'); ?></span>
664 664
 						</a>
665 665
 					</li>
666 666
 
667 667
 					<li class="lsx-wc-footer-bar-item">
668
-						<a href="<?php echo esc_url( get_permalink( get_option( 'woocommerce_myaccount_page_id' ) ) ); ?>" class="lsx-wc-footer-bar-link">
668
+						<a href="<?php echo esc_url(get_permalink(get_option('woocommerce_myaccount_page_id'))); ?>" class="lsx-wc-footer-bar-link">
669 669
 							<i class="fa fa-user" aria-hidden="true"></i>
670
-							<span><?php esc_html_e( 'Account', 'lsx' ); ?></span>
670
+							<span><?php esc_html_e('Account', 'lsx'); ?></span>
671 671
 						</a>
672 672
 					</li>
673 673
 
674 674
 					<li class="lsx-wc-footer-bar-item">
675 675
 						<a href="#" class="lsx-wc-footer-bar-link lsx-wc-footer-bar-link-toogle">
676 676
 							<i class="fa fa-search" aria-hidden="true"></i>
677
-							<span><?php esc_html_e( 'Search', 'lsx' ); ?></span>
677
+							<span><?php esc_html_e('Search', 'lsx'); ?></span>
678 678
 						</a>
679 679
 					</li>
680 680
 
681 681
 					<li class="lsx-wc-footer-bar-item">
682
-						<a href="<?php echo esc_url( $cart_url ); ?>" class="lsx-wc-footer-bar-link">
682
+						<a href="<?php echo esc_url($cart_url); ?>" class="lsx-wc-footer-bar-link">
683 683
 							<i class="fa fa-shopping-basket" aria-hidden="true"></i>
684 684
 							<?php $count = WC()->cart->get_cart_contents_count(); ?>
685
-							<?php if ( ! empty( $count ) ) : ?>
686
-								<span class="lsx-wc-footer-bar-count"><?php echo wp_kses_data( $count ); ?></span>
685
+							<?php if ( ! empty($count)) : ?>
686
+								<span class="lsx-wc-footer-bar-count"><?php echo wp_kses_data($count); ?></span>
687 687
 							<?php endif; ?>
688
-							<span><?php esc_html_e( 'Cart', 'lsx' ); ?></span>
688
+							<span><?php esc_html_e('Cart', 'lsx'); ?></span>
689 689
 						</a>
690 690
 					</li>
691 691
 				</ul>
@@ -694,11 +694,11 @@  discard block
 block discarded – undo
694 694
 		endif;
695 695
 	}
696 696
 
697
-	add_action( 'lsx_body_bottom', 'lsx_wc_footer_bar', 15 );
697
+	add_action('lsx_body_bottom', 'lsx_wc_footer_bar', 15);
698 698
 
699 699
 endif;
700 700
 
701
-if ( ! function_exists( 'lsx_wc_body_class' ) ) :
701
+if ( ! function_exists('lsx_wc_body_class')) :
702 702
 
703 703
 	/**
704 704
 	 * Changes body class.
@@ -706,25 +706,25 @@  discard block
 block discarded – undo
706 706
 	 * @package    lsx
707 707
 	 * @subpackage woocommerce
708 708
 	 */
709
-	function lsx_wc_body_class( $classes ) {
709
+	function lsx_wc_body_class($classes) {
710 710
 		global $post;
711 711
 
712
-		if ( $post && class_exists( 'WC_Wishlists_Pages' ) && WC_Wishlists_Pages::is_wishlist_page( $post->post_name ) ) {
712
+		if ($post && class_exists('WC_Wishlists_Pages') && WC_Wishlists_Pages::is_wishlist_page($post->post_name)) {
713 713
 			$classes[] = 'woocommerce-page woocommerce-wishlist';
714 714
 		}
715 715
 
716
-		if ( ! empty( get_theme_mod( 'lsx_wc_mobile_footer_bar_status', '1' ) ) ) {
716
+		if ( ! empty(get_theme_mod('lsx_wc_mobile_footer_bar_status', '1'))) {
717 717
 			$classes[] = 'lsx-wc-has-footer-bar';
718 718
 		}
719 719
 
720 720
 		return $classes;
721 721
 	}
722 722
 
723
-	add_filter( 'body_class', 'lsx_wc_body_class', 2999 );
723
+	add_filter('body_class', 'lsx_wc_body_class', 2999);
724 724
 
725 725
 endif;
726 726
 
727
-if ( ! function_exists( 'lsx_wc_downloadable_products' ) ) :
727
+if ( ! function_exists('lsx_wc_downloadable_products')) :
728 728
 
729 729
 	/**
730 730
 	 * Changes downloads "download" button text.
@@ -732,19 +732,19 @@  discard block
 block discarded – undo
732 732
 	 * @package    lsx
733 733
 	 * @subpackage woocommerce
734 734
 	 */
735
-	function lsx_wc_downloadable_products( $downloads ) {
736
-		foreach ( $downloads as $i => $download ) {
737
-			$downloads[ $i ]['download_name'] = esc_html__( 'Download', 'lsx' );
735
+	function lsx_wc_downloadable_products($downloads) {
736
+		foreach ($downloads as $i => $download) {
737
+			$downloads[$i]['download_name'] = esc_html__('Download', 'lsx');
738 738
 		}
739 739
 
740 740
 		return $downloads;
741 741
 	}
742 742
 
743
-	add_filter( 'woocommerce_customer_get_downloadable_products', 'lsx_wc_downloadable_products', 2999 );
743
+	add_filter('woocommerce_customer_get_downloadable_products', 'lsx_wc_downloadable_products', 2999);
744 744
 
745 745
 endif;
746 746
 
747
-if ( ! function_exists( 'lsx_wc_move_bundle_products' ) ) :
747
+if ( ! function_exists('lsx_wc_move_bundle_products')) :
748 748
 
749 749
 	/**
750 750
 	 * WooCommerce - Move the bundle products to a tab.
@@ -752,46 +752,46 @@  discard block
 block discarded – undo
752 752
 	 * @package    lsx
753 753
 	 * @subpackage woocommerce
754 754
 	 */
755
-	function lsx_wc_move_bundle_products( $tabs ) {
755
+	function lsx_wc_move_bundle_products($tabs) {
756 756
 		global $product, $post;
757 757
 
758
-		if ( method_exists( $product , 'get_bundled_items' ) ) {
758
+		if (method_exists($product, 'get_bundled_items')) {
759 759
 			$bundled_items = $product->get_bundled_items();
760 760
 
761
-			if ( ! empty( $bundled_items ) ) {
761
+			if ( ! empty($bundled_items)) {
762 762
 				$tabs['bundled_products'] = array(
763
-					'title'    => __( 'Included Products', 'lsx' ),
763
+					'title'    => __('Included Products', 'lsx'),
764 764
 					'priority' => 10,
765 765
 					'callback' => 'lsx_wc_bundle_products',
766 766
 				);
767 767
 			}
768 768
 		}
769 769
 
770
-		if ( isset( $tabs['description'] ) ) {
770
+		if (isset($tabs['description'])) {
771 771
 			$tabs['description']['priority'] = 5;
772 772
 		}
773 773
 
774
-		if ( isset( $tabs['reviews'] ) ) {
774
+		if (isset($tabs['reviews'])) {
775 775
 			$tabs['reviews']['priority'] = 15;
776 776
 		}
777 777
 
778
-		if ( isset( $tabs['product_enquiry'] ) ) {
778
+		if (isset($tabs['product_enquiry'])) {
779 779
 			$tabs['product_enquiry']['priority'] = 20;
780 780
 		}
781 781
 
782 782
 		return $tabs;
783 783
 	}
784 784
 
785
-	add_action( 'woocommerce_product_tabs', 'lsx_wc_move_bundle_products', 50 );
785
+	add_action('woocommerce_product_tabs', 'lsx_wc_move_bundle_products', 50);
786 786
 
787 787
 endif;
788 788
 
789
-if ( ! function_exists( 'lsx_wc_bundle_products' ) ) :
789
+if ( ! function_exists('lsx_wc_bundle_products')) :
790 790
 
791 791
 	function lsx_wc_bundle_products() {
792 792
 		global $product, $post;
793 793
 
794
-		if ( method_exists( $product , 'get_bundled_items' ) ) {
794
+		if (method_exists($product, 'get_bundled_items')) {
795 795
 			$bundled_items = $product->get_bundled_items();
796 796
 
797 797
 			// do_action( 'woocommerce_before_bundled_items', $product );
@@ -807,16 +807,16 @@  discard block
 block discarded – undo
807 807
 			// $this->widget_start( $args, $instance );
808 808
 
809 809
 			// @codingStandardsIgnoreLine
810
-			echo apply_filters( 'woocommerce_before_widget_product_list', '<ul class="product_list_widget">' );
810
+			echo apply_filters('woocommerce_before_widget_product_list', '<ul class="product_list_widget">');
811 811
 
812
-			foreach ( $bundled_items as $bundled_item ) {
813
-				$product = wc_get_product( $bundled_item->item_data['product_id'] );
814
-				wc_get_template( 'content-widget-product.php' );
812
+			foreach ($bundled_items as $bundled_item) {
813
+				$product = wc_get_product($bundled_item->item_data['product_id']);
814
+				wc_get_template('content-widget-product.php');
815 815
 				$product = $product_original;
816 816
 			}
817 817
 
818 818
 			// @codingStandardsIgnoreLine
819
-			echo apply_filters( 'woocommerce_after_widget_product_list', '</ul>' );
819
+			echo apply_filters('woocommerce_after_widget_product_list', '</ul>');
820 820
 		}
821 821
 
822 822
 		// $this->widget_end( $args );
@@ -825,7 +825,7 @@  discard block
 block discarded – undo
825 825
 endif;
826 826
 
827 827
 
828
-if ( ! function_exists( 'lsx_wc_product_searchform' ) ) :
828
+if ( ! function_exists('lsx_wc_product_searchform')) :
829 829
 	/**
830 830
 	 * woo_custom_product_searchform
831 831
 	 *
@@ -833,7 +833,7 @@  discard block
 block discarded – undo
833 833
 	 * @since       1.0
834 834
 	 * @return      void
835 835
 	 */
836
-	function lsx_wc_product_searchform( $form ) {
836
+	function lsx_wc_product_searchform($form) {
837 837
 
838 838
 		$form = '
839 839
 			<form role="search" method="get" class="search-form form-inline" id="searchform" action="<?php echo esc_url( home_url( \'/\' ) ); ?>">
@@ -854,42 +854,42 @@  discard block
 block discarded – undo
854 854
 
855 855
 	}
856 856
 endif;
857
-add_filter( 'get_product_search_form' , 'lsx_wc_product_searchform', 10, 1 );
857
+add_filter('get_product_search_form', 'lsx_wc_product_searchform', 10, 1);
858 858
 
859 859
 	/**
860 860
 	 * Output the pagination.
861 861
 	*/
862 862
 function woocommerce_pagination() {
863
-	if ( ! wc_get_loop_prop( 'is_paginated' ) || ! woocommerce_products_will_display() ) {
863
+	if ( ! wc_get_loop_prop('is_paginated') || ! woocommerce_products_will_display()) {
864 864
 		return;
865 865
 	}
866 866
 	$args = array(
867
-		'total'   => wc_get_loop_prop( 'total_pages' ),
868
-		'current' => wc_get_loop_prop( 'current_page' ),
867
+		'total'   => wc_get_loop_prop('total_pages'),
868
+		'current' => wc_get_loop_prop('current_page'),
869 869
 	);
870 870
 
871
-	if ( wc_get_loop_prop( 'is_shortcode' ) ) {
872
-		$args['base']   = esc_url_raw( add_query_arg( 'product-page', '%#%', false ) );
871
+	if (wc_get_loop_prop('is_shortcode')) {
872
+		$args['base']   = esc_url_raw(add_query_arg('product-page', '%#%', false));
873 873
 		$args['format'] = '?product-page = %#%';
874 874
 	} else {
875
-		$args['base']   = esc_url_raw( str_replace( 999999999, '%#%', remove_query_arg( 'add-to-cart', get_pagenum_link( 999999999, false ) ) ) );
875
+		$args['base']   = esc_url_raw(str_replace(999999999, '%#%', remove_query_arg('add-to-cart', get_pagenum_link(999999999, false))));
876 876
 		$args['format'] = '';
877 877
 	}
878 878
 
879
-	echo wp_kses_post( '<div class="lsx-pagination-wrapper">' );
880
-	$template = wc_get_template_html( 'loop/pagination.php', $args );
881
-	$template = str_replace( 'woocommerce-pagination', 'lsx-pagination', $template );
882
-	echo wp_kses_post( $template );
883
-	echo wp_kses_post( '</div>' );
879
+	echo wp_kses_post('<div class="lsx-pagination-wrapper">');
880
+	$template = wc_get_template_html('loop/pagination.php', $args);
881
+	$template = str_replace('woocommerce-pagination', 'lsx-pagination', $template);
882
+	echo wp_kses_post($template);
883
+	echo wp_kses_post('</div>');
884 884
 }
885 885
 
886
-function lsx_wc_pagination_args( $args ) {
887
-	$args['prev_text'] = '<span class="meta-nav">&larr;</span> ' . esc_html__( 'Previous', 'lsx' );
888
-	$args['next_text'] = esc_html__( 'Next', 'lsx' ) . ' <span class="meta-nav">&rarr;</span>';
889
-	$args['type']	   = 'plain';
886
+function lsx_wc_pagination_args($args) {
887
+	$args['prev_text'] = '<span class="meta-nav">&larr;</span> ' . esc_html__('Previous', 'lsx');
888
+	$args['next_text'] = esc_html__('Next', 'lsx') . ' <span class="meta-nav">&rarr;</span>';
889
+	$args['type'] = 'plain';
890 890
 	return $args;
891 891
 }
892
-add_filter( 'woocommerce_pagination_args', 'lsx_wc_pagination_args',10 ,1 );
892
+add_filter('woocommerce_pagination_args', 'lsx_wc_pagination_args', 10, 1);
893 893
 
894 894
 
895 895
 /**
@@ -899,19 +899,19 @@  discard block
 block discarded – undo
899 899
  *
900 900
  * @return array
901 901
  */
902
-function lsx_wc_product_widget_template( $located, $template_name ) {
903
-	if ( 'content-widget-product.php' === $template_name || 'content-widget-review.php' === $template_name ) {
902
+function lsx_wc_product_widget_template($located, $template_name) {
903
+	if ('content-widget-product.php' === $template_name || 'content-widget-review.php' === $template_name) {
904 904
 
905 905
 		$new_location = get_stylesheet_directory() . '/partials/' . $template_name;
906
-		if ( file_exists( $new_location ) ) {
906
+		if (file_exists($new_location)) {
907 907
 			$located = $new_location;
908 908
 		} else {
909 909
 			$new_location = get_parent_theme_file_path() . '/partials/' . $template_name;
910
-			if ( file_exists( $new_location ) ) {
910
+			if (file_exists($new_location)) {
911 911
 				$located = $new_location;
912 912
 			}
913 913
 		}
914 914
 	}
915 915
 	return $located;
916 916
 }
917
-add_filter( 'wc_get_template', 'lsx_wc_product_widget_template',90 ,2 );
917
+add_filter('wc_get_template', 'lsx_wc_product_widget_template', 90, 2);
Please login to merge, or discard this patch.
includes/bbpress/bbpress.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@  discard block
 block discarded – undo
6 6
  * @subpackage bbpress
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13 13
 global $bbpress;
14 14
 
15
-if ( ! function_exists( 'lsx_bbpress_scripts_add_styles' ) ) :
15
+if ( ! function_exists('lsx_bbpress_scripts_add_styles')) :
16 16
 
17 17
 	/**
18 18
 	 * bbPress enqueue styles.
@@ -21,19 +21,19 @@  discard block
 block discarded – undo
21 21
 	 * @subpackage bbpress
22 22
 	 */
23 23
 	function lsx_bbpress_scripts_add_styles() {
24
-		wp_enqueue_style( 'bbpress-lsx', get_template_directory_uri() . '/assets/css/bb-press/bb-press.css', array( 'lsx_main' ), LSX_VERSION );
25
-		wp_style_add_data( 'bbpress-lsx', 'rtl', 'replace' );
24
+		wp_enqueue_style('bbpress-lsx', get_template_directory_uri() . '/assets/css/bb-press/bb-press.css', array('lsx_main'), LSX_VERSION);
25
+		wp_style_add_data('bbpress-lsx', 'rtl', 'replace');
26 26
 	}
27 27
 
28
-	add_action( 'wp_enqueue_scripts', 'lsx_bbpress_scripts_add_styles' );
28
+	add_action('wp_enqueue_scripts', 'lsx_bbpress_scripts_add_styles');
29 29
 
30 30
 endif;
31 31
 
32 32
 /**** Remove "Archives:"  from the forums archive title. ******/
33 33
 
34
-add_filter( 'get_the_archive_title', 'modify_archive_title', 10, 1 );
34
+add_filter('get_the_archive_title', 'modify_archive_title', 10, 1);
35 35
 
36
-function modify_archive_title( $title ) {
37
-	$title = __( 'Forums', 'lsx' );
36
+function modify_archive_title($title) {
37
+	$title = __('Forums', 'lsx');
38 38
 	return $title;
39 39
 }
Please login to merge, or discard this patch.
includes/the-events-calendar/the-events-calendar.php 1 patch
Spacing   +44 added lines, -44 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
  * @subpackage the-events-calendar
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! function_exists( 'lsx_tec_scripts_add_styles' ) ) :
13
+if ( ! function_exists('lsx_tec_scripts_add_styles')) :
14 14
 
15 15
 	/**
16 16
 	 * The Events Calendar enqueue styles.
@@ -19,15 +19,15 @@  discard block
 block discarded – undo
19 19
 	 * @subpackage the-events-calendar
20 20
 	 */
21 21
 	function lsx_tec_scripts_add_styles() {
22
-		wp_enqueue_style( 'the-events-calendar-lsx', get_template_directory_uri() . '/assets/css/the-events-calendar/the-events-calendar.css', array( 'lsx_main' ), LSX_VERSION );
23
-		wp_style_add_data( 'the-events-calendar-lsx', 'rtl', 'replace' );
22
+		wp_enqueue_style('the-events-calendar-lsx', get_template_directory_uri() . '/assets/css/the-events-calendar/the-events-calendar.css', array('lsx_main'), LSX_VERSION);
23
+		wp_style_add_data('the-events-calendar-lsx', 'rtl', 'replace');
24 24
 	}
25 25
 
26
-	add_action( 'wp_enqueue_scripts', 'lsx_tec_scripts_add_styles' );
26
+	add_action('wp_enqueue_scripts', 'lsx_tec_scripts_add_styles');
27 27
 
28 28
 endif;
29 29
 
30
-if ( ! function_exists( 'lsx_tec_theme_wrapper_start' ) ) :
30
+if ( ! function_exists('lsx_tec_theme_wrapper_start')) :
31 31
 
32 32
 	/**
33 33
 	 * The Events Calendar wrapper start.
@@ -37,17 +37,17 @@  discard block
 block discarded – undo
37 37
 	 */
38 38
 	function lsx_tec_theme_wrapper_start() {
39 39
 		lsx_content_wrap_before();
40
-		echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">';
40
+		echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">';
41 41
 		lsx_content_before();
42 42
 		echo '<main id="main" class="site-main" role="main">';
43 43
 		lsx_content_top();
44 44
 	}
45 45
 
46
-	add_action( 'tribe_events_before_html', 'lsx_tec_theme_wrapper_start', 9 );
46
+	add_action('tribe_events_before_html', 'lsx_tec_theme_wrapper_start', 9);
47 47
 
48 48
 endif;
49 49
 
50
-if ( ! function_exists( 'lsx_tec_theme_wrapper_end' ) ) :
50
+if ( ! function_exists('lsx_tec_theme_wrapper_end')) :
51 51
 
52 52
 	/**
53 53
 	 * The Events Calendar wrapper end.
@@ -63,11 +63,11 @@  discard block
 block discarded – undo
63 63
 		lsx_content_wrap_after();
64 64
 	}
65 65
 
66
-	add_action( 'tribe_events_after_html', 'lsx_tec_theme_wrapper_end', 11 );
66
+	add_action('tribe_events_after_html', 'lsx_tec_theme_wrapper_end', 11);
67 67
 
68 68
 endif;
69 69
 
70
-if ( ! function_exists( 'lsx_tec_global_header_title' ) ) :
70
+if ( ! function_exists('lsx_tec_global_header_title')) :
71 71
 
72 72
 	/**
73 73
 	 * Move the events title into the global header
@@ -75,98 +75,98 @@  discard block
 block discarded – undo
75 75
 	 * @package    lsx
76 76
 	 * @subpackage the-events-calendar
77 77
 	 */
78
-	function lsx_tec_global_header_title( $title ) {
78
+	function lsx_tec_global_header_title($title) {
79 79
 
80
-		if ( tribe_is_community_edit_event_page() ) {
80
+		if (tribe_is_community_edit_event_page()) {
81 81
 
82
-			$is_route = get_query_var( 'WP_Route' );
83
-			switch ( $is_route ) {
82
+			$is_route = get_query_var('WP_Route');
83
+			switch ($is_route) {
84 84
 				case 'ce-edit-route':
85
-					$title = apply_filters( 'tribe_ce_edit_event_page_title', __( 'Edit an Event', 'lsx' ) );
85
+					$title = apply_filters('tribe_ce_edit_event_page_title', __('Edit an Event', 'lsx'));
86 86
 					break;
87 87
 
88 88
 				case 'ce-edit-organizer-route':
89
-					$title = __( 'Edit an Organizer', 'lsx' );
89
+					$title = __('Edit an Organizer', 'lsx');
90 90
 					break;
91 91
 
92 92
 				case 'ce-edit-venue-route':
93
-					$title = __( 'Edit a Venue', 'lsx' );
93
+					$title = __('Edit a Venue', 'lsx');
94 94
 					break;
95 95
 
96 96
 				default:
97
-					$title = apply_filters( 'tribe_ce_submit_event_page_title', __( 'Submit an Event', 'lsx' ) );
97
+					$title = apply_filters('tribe_ce_submit_event_page_title', __('Submit an Event', 'lsx'));
98 98
 					break;
99 99
 			}
100
-		} else if ( tribe_is_community_my_events_page() ) {
101
-			$title = apply_filters( 'tribe_ce_submit_event_page_title', __( 'My Events', 'lsx' ) );
102
-		} else if ( tribe_is_event() ) {
100
+		} else if (tribe_is_community_my_events_page()) {
101
+			$title = apply_filters('tribe_ce_submit_event_page_title', __('My Events', 'lsx'));
102
+		} else if (tribe_is_event()) {
103 103
 			$title = tribe_get_events_title();
104 104
 		}
105 105
 
106 106
 		//Only disable the title after we have retrieved it
107
-		add_filter( 'tribe_get_events_title', 'lsx_text_disable_body_title', 200, 1 );
107
+		add_filter('tribe_get_events_title', 'lsx_text_disable_body_title', 200, 1);
108 108
 
109
-		if ( is_singular( 'tribe_events' ) ) {
110
-			add_filter( 'the_title', 'lsx_text_disable_body_title', 200, 1 );
109
+		if (is_singular('tribe_events')) {
110
+			add_filter('the_title', 'lsx_text_disable_body_title', 200, 1);
111 111
 		}
112 112
 		return $title;
113 113
 	}
114
-	add_filter( 'lsx_global_header_title', 'lsx_tec_global_header_title', 200, 1 );
114
+	add_filter('lsx_global_header_title', 'lsx_tec_global_header_title', 200, 1);
115 115
 
116 116
 endif;
117 117
 
118
-if ( ! function_exists( 'lsx_text_disable_body_title' ) ) :
118
+if ( ! function_exists('lsx_text_disable_body_title')) :
119 119
 	/**
120 120
 	 * Disable the events title for the post archive if the dynamic setting is active.
121 121
 	 * @param $title
122 122
 	 *
123 123
 	 * @return string
124 124
 	 */
125
-	function lsx_text_disable_body_title( $title ) {
125
+	function lsx_text_disable_body_title($title) {
126 126
 		$title = '';
127
-		remove_filter( 'the_title', 'lsx_text_disable_body_title', 200, 1 );
127
+		remove_filter('the_title', 'lsx_text_disable_body_title', 200, 1);
128 128
 		return $title;
129 129
 	}
130 130
 
131 131
 endif;
132 132
 
133
-if ( ! function_exists( 'lsx_tec_breadcrumb_filter' ) ) :
133
+if ( ! function_exists('lsx_tec_breadcrumb_filter')) :
134 134
 	/**
135 135
 	 * Fixes the community events breadcrumb
136 136
 	 *
137 137
 	 * @package    lsx
138 138
 	 * @subpackage the-events-calendar
139 139
 	 */
140
-	function lsx_tec_breadcrumb_filter( $crumbs ) {
140
+	function lsx_tec_breadcrumb_filter($crumbs) {
141 141
 
142
-		if ( tribe_is_venue() || tribe_is_organizer() || tribe_is_community_edit_event_page() || tribe_is_community_my_events_page() ) {
142
+		if (tribe_is_venue() || tribe_is_organizer() || tribe_is_community_edit_event_page() || tribe_is_community_my_events_page()) {
143 143
 			$new_crumbs = array();
144 144
 			$new_crumbs[0] = $crumbs[0];
145 145
 
146
-			if ( function_exists( 'woocommerce_breadcrumb' ) ) {
146
+			if (function_exists('woocommerce_breadcrumb')) {
147 147
 				$new_crumbs[1] = array(
148
-					0	=> __( 'Events', 'lsx' ),
149
-					1	=> get_post_type_archive_link( 'tribe_events' ),
148
+					0	=> __('Events', 'lsx'),
149
+					1	=> get_post_type_archive_link('tribe_events'),
150 150
 				);
151 151
 			} else {
152 152
 				$new_crumbs[1] = array(
153
-					'text'	=> __( 'Events', 'lsx' ),
154
-					'url'	=> get_post_type_archive_link( 'tribe_events' ),
153
+					'text'	=> __('Events', 'lsx'),
154
+					'url'	=> get_post_type_archive_link('tribe_events'),
155 155
 				);
156 156
 			}
157 157
 
158
-			if ( tribe_is_community_my_events_page() ) {
158
+			if (tribe_is_community_my_events_page()) {
159 159
 				$new_crumbs[2] = $crumbs[2];
160
-			} else if ( tribe_is_community_edit_event_page() ) {
160
+			} else if (tribe_is_community_edit_event_page()) {
161 161
 
162
-				if ( function_exists( 'woocommerce_breadcrumb' ) ) {
162
+				if (function_exists('woocommerce_breadcrumb')) {
163 163
 					$new_crumbs[2] = array(
164
-						0	=> apply_filters( 'tribe_ce_submit_event_page_title', __( 'My Events', 'lsx' ) ),
164
+						0	=> apply_filters('tribe_ce_submit_event_page_title', __('My Events', 'lsx')),
165 165
 						1	=> tribe_community_events_list_events_link( ),
166 166
 					);
167 167
 				} else {
168 168
 					$new_crumbs[2] = array(
169
-						'text'	=> apply_filters( 'tribe_ce_submit_event_page_title', __( 'My Events', 'lsx' ) ),
169
+						'text'	=> apply_filters('tribe_ce_submit_event_page_title', __('My Events', 'lsx')),
170 170
 						'url'	=> tribe_community_events_list_events_link( ),
171 171
 					);
172 172
 				}
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
 		}
180 180
 		return $crumbs;
181 181
 	}
182
-	add_filter( 'wpseo_breadcrumb_links', 'lsx_tec_breadcrumb_filter', 30, 1 );
183
-	add_filter( 'woocommerce_get_breadcrumb', 'lsx_tec_breadcrumb_filter', 30, 1 );
182
+	add_filter('wpseo_breadcrumb_links', 'lsx_tec_breadcrumb_filter', 30, 1);
183
+	add_filter('woocommerce_get_breadcrumb', 'lsx_tec_breadcrumb_filter', 30, 1);
184 184
 
185 185
 endif;
Please login to merge, or discard this patch.
includes/template-tags.php 1 patch
Spacing   +167 added lines, -167 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
  * @subpackage template-tags
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! function_exists( 'lsx_breadcrumbs' ) ) :
13
+if ( ! function_exists('lsx_breadcrumbs')) :
14 14
 
15 15
 	/**
16 16
 	 * Breadcrumbs.
@@ -19,44 +19,44 @@  discard block
 block discarded – undo
19 19
 	 * @subpackage template-tags
20 20
 	 */
21 21
 	function lsx_breadcrumbs() {
22
-		if ( ! function_exists( 'yoast_breadcrumb' ) && ! function_exists( 'woocommerce_breadcrumb' ) ) {
22
+		if ( ! function_exists('yoast_breadcrumb') && ! function_exists('woocommerce_breadcrumb')) {
23 23
 			return null;
24 24
 		}
25 25
 
26
-		$show_on_front = get_option( 'show_on_front' );
26
+		$show_on_front = get_option('show_on_front');
27 27
 
28
-		if ( ( 'posts' === $show_on_front && is_home() ) || ( 'page' === $show_on_front && is_front_page() ) ) {
28
+		if (('posts' === $show_on_front && is_home()) || ('page' === $show_on_front && is_front_page())) {
29 29
 			return;
30 30
 		}
31 31
 
32
-		if ( function_exists( 'woocommerce_breadcrumb' ) ) {
32
+		if (function_exists('woocommerce_breadcrumb')) {
33 33
 			ob_start();
34 34
 
35
-			woocommerce_breadcrumb( array(
35
+			woocommerce_breadcrumb(array(
36 36
 				'wrap_before' => '<div class="breadcrumbs-container breadcrumbs-woocommerce"><div class="container"><div class="row"><div class="col-xs-12">',
37 37
 				'wrap_after'  => '</div></div></div></div>',
38 38
 				'before'      => '<span>',
39 39
 				'after'       => '</span>',
40
-			) );
40
+			));
41 41
 
42 42
 			$output = ob_get_clean();
43
-		} elseif ( function_exists( 'yoast_breadcrumb' ) ) {
44
-			$output = yoast_breadcrumb( null, null, false );
43
+		} elseif (function_exists('yoast_breadcrumb')) {
44
+			$output = yoast_breadcrumb(null, null, false);
45 45
 			$output = '<div class="breadcrumbs-container breadcrumbs-yoast"><div class="container"><div class="row"><div class="col-xs-12">' . $output . '</div></div></div></div>';
46 46
 		}
47 47
 
48
-		$output = apply_filters( 'lsx_breadcrumbs', $output );
48
+		$output = apply_filters('lsx_breadcrumbs', $output);
49 49
 
50
-		echo wp_kses_post( $output );
50
+		echo wp_kses_post($output);
51 51
 	}
52 52
 
53 53
 endif;
54 54
 
55
-add_action( 'lsx_header_after', 'lsx_breadcrumbs', 1 );
55
+add_action('lsx_header_after', 'lsx_breadcrumbs', 1);
56 56
 //add_action( 'lsx_banner_inner_bottom', 'lsx_breadcrumbs', 100 );
57 57
 //add_action( 'lsx_global_header_inner_bottom', 'lsx_breadcrumbs', 100 );
58 58
 
59
-if ( ! function_exists( 'lsx_breadcrumbs_wpseo_seperator_filter' ) ) :
59
+if ( ! function_exists('lsx_breadcrumbs_wpseo_seperator_filter')) :
60 60
 
61 61
 	/**
62 62
 	 * Replaces the seperator.
@@ -64,16 +64,16 @@  discard block
 block discarded – undo
64 64
 	 * @package    lsx
65 65
 	 * @subpackage template-tags
66 66
 	 */
67
-	function lsx_breadcrumbs_wpseo_seperator_filter( $seperator ) {
67
+	function lsx_breadcrumbs_wpseo_seperator_filter($seperator) {
68 68
 		$seperator = '<i class="fa fa-angle-right" aria-hidden="true"></i>';
69 69
 		return $seperator;
70 70
 	}
71 71
 
72 72
 endif;
73 73
 
74
-add_filter( 'wpseo_breadcrumb_separator', 'lsx_breadcrumbs_wpseo_seperator_filter' );
74
+add_filter('wpseo_breadcrumb_separator', 'lsx_breadcrumbs_wpseo_seperator_filter');
75 75
 
76
-if ( ! function_exists( 'lsx_breadcrumbs_woocommerce_seperator_filter' ) ) :
76
+if ( ! function_exists('lsx_breadcrumbs_woocommerce_seperator_filter')) :
77 77
 
78 78
 	/**
79 79
 	 * Replaces the seperator.
@@ -81,16 +81,16 @@  discard block
 block discarded – undo
81 81
 	 * @package    lsx
82 82
 	 * @subpackage template-tags
83 83
 	 */
84
-	function lsx_breadcrumbs_woocommerce_seperator_filter( $defaults ) {
84
+	function lsx_breadcrumbs_woocommerce_seperator_filter($defaults) {
85 85
 		$defaults['delimiter'] = '<i class="fa fa-angle-right" aria-hidden="true"></i>';
86 86
 		return $defaults;
87 87
 	}
88 88
 
89 89
 endif;
90 90
 
91
-add_filter( 'woocommerce_breadcrumb_defaults', 'lsx_breadcrumbs_woocommerce_seperator_filter' );
91
+add_filter('woocommerce_breadcrumb_defaults', 'lsx_breadcrumbs_woocommerce_seperator_filter');
92 92
 
93
-if ( ! function_exists( 'lsx_site_title' ) ) :
93
+if ( ! function_exists('lsx_site_title')) :
94 94
 
95 95
 	/**
96 96
 	 * Displays logo when applicable.
@@ -101,15 +101,15 @@  discard block
 block discarded – undo
101 101
 	function lsx_site_title() {
102 102
 		?>
103 103
 			<div class="site-branding">
104
-				<h1 class="site-title"><a title="<?php bloginfo( 'name' ); ?>" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
105
-				<p class="site-description"><?php bloginfo( 'description' ); ?></p>
104
+				<h1 class="site-title"><a title="<?php bloginfo('name'); ?>" href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a></h1>
105
+				<p class="site-description"><?php bloginfo('description'); ?></p>
106 106
 			</div>
107 107
 		<?php
108 108
 	}
109 109
 
110 110
 endif;
111 111
 
112
-if ( ! function_exists( 'lsx_post_meta_list_top' ) ) :
112
+if ( ! function_exists('lsx_post_meta_list_top')) :
113 113
 
114 114
 	/**
115 115
 	 * Add customisable post meta (post list - above title).
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 
131 131
 endif;
132 132
 
133
-if ( ! function_exists( 'lsx_post_meta_single_top' ) ) :
133
+if ( ! function_exists('lsx_post_meta_single_top')) :
134 134
 
135 135
 	/**
136 136
 	 * Add customisable post meta (single post - above title).
@@ -150,11 +150,11 @@  discard block
 block discarded – undo
150 150
 endif;
151 151
 
152 152
 //add_action( 'lsx_post_meta_top', 'lsx_post_meta_avatar' );
153
-add_action( 'lsx_post_meta_top', 'lsx_post_meta_author' );
154
-add_action( 'lsx_post_meta_top', 'lsx_post_meta_date' );
155
-add_action( 'lsx_post_meta_top', 'lsx_post_meta_category' );
153
+add_action('lsx_post_meta_top', 'lsx_post_meta_author');
154
+add_action('lsx_post_meta_top', 'lsx_post_meta_date');
155
+add_action('lsx_post_meta_top', 'lsx_post_meta_category');
156 156
 
157
-if ( ! function_exists( 'lsx_post_meta_single_bottom' ) ) :
157
+if ( ! function_exists('lsx_post_meta_single_bottom')) :
158 158
 
159 159
 	/**
160 160
 	 * Add customisable post meta (single post - below title).
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
 
174 174
 endif;
175 175
 
176
-if ( ! function_exists( 'lsx_post_meta_avatar' ) ) :
176
+if ( ! function_exists('lsx_post_meta_avatar')) :
177 177
 
178 178
 	/**
179 179
 	 * Add customisable post meta: author's avatar.
@@ -183,20 +183,20 @@  discard block
 block discarded – undo
183 183
 	 */
184 184
 	function lsx_post_meta_avatar() {
185 185
 		$author = get_the_author();
186
-		$author_id = get_the_author_meta( 'ID' );
187
-		$author_avatar = get_avatar( $author_id, 80 );
188
-		$author_url = get_author_posts_url( $author_id );
186
+		$author_id = get_the_author_meta('ID');
187
+		$author_avatar = get_avatar($author_id, 80);
188
+		$author_url = get_author_posts_url($author_id);
189 189
 
190 190
 		printf(
191 191
 			'<a href="%1$s" class="post-meta-avatar">%2$s</a>',
192
-			esc_url( $author_url ),
193
-			wp_kses_post( $author_avatar )
192
+			esc_url($author_url),
193
+			wp_kses_post($author_avatar)
194 194
 		);
195 195
 	}
196 196
 
197 197
 endif;
198 198
 
199
-if ( ! function_exists( 'lsx_post_meta_date' ) ) :
199
+if ( ! function_exists('lsx_post_meta_date')) :
200 200
 
201 201
 	/**
202 202
 	 * Add customisable post meta: post date.
@@ -207,23 +207,23 @@  discard block
 block discarded – undo
207 207
 	function lsx_post_meta_date() {
208 208
 		$time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
209 209
 
210
-		$time_string = sprintf( $time_string,
211
-			esc_attr( get_the_date( 'c' ) ),
210
+		$time_string = sprintf($time_string,
211
+			esc_attr(get_the_date('c')),
212 212
 			get_the_date(),
213
-			esc_attr( get_the_modified_date( 'c' ) ),
213
+			esc_attr(get_the_modified_date('c')),
214 214
 			get_the_modified_date()
215 215
 		);
216 216
 
217 217
 		printf(
218 218
 			'<span class="post-meta-time updated"><a href="%1$s" rel="bookmark">%2$s</a></span>',
219
-			esc_url( get_permalink() ),
220
-			wp_kses_post( $time_string )
219
+			esc_url(get_permalink()),
220
+			wp_kses_post($time_string)
221 221
 		);
222 222
 	}
223 223
 
224 224
 endif;
225 225
 
226
-if ( ! function_exists( 'lsx_post_meta_author' ) ) :
226
+if ( ! function_exists('lsx_post_meta_author')) :
227 227
 
228 228
 	/**
229 229
 	 * Add customisable post meta: post author.
@@ -233,27 +233,27 @@  discard block
 block discarded – undo
233 233
 	 */
234 234
 	function lsx_post_meta_author() {
235 235
 		$author = get_the_author();
236
-		$author_url = get_author_posts_url( get_the_author_meta( 'ID' ) );
236
+		$author_url = get_author_posts_url(get_the_author_meta('ID'));
237 237
 
238
-		if ( empty( $author ) ) {
238
+		if (empty($author)) {
239 239
 			global $post;
240 240
 
241
-			$author = get_user_by( 'ID', $post->post_author );
241
+			$author = get_user_by('ID', $post->post_author);
242 242
 			$author = $author->display_name;
243
-			$author_url = get_author_posts_url( $post->post_author );
243
+			$author_url = get_author_posts_url($post->post_author);
244 244
 		}
245 245
 
246 246
 		printf(
247 247
 			'<span class="vcard post-meta-author"><span>%1$s</span> <span class="fn"><a href="%2$s">%3$s</a>, </span></span>',
248
-			esc_html__( 'By ', 'lsx' ),
249
-			esc_url( $author_url ),
250
-			esc_html( $author )
248
+			esc_html__('By ', 'lsx'),
249
+			esc_url($author_url),
250
+			esc_html($author)
251 251
 		);
252 252
 	}
253 253
 
254 254
 endif;
255 255
 
256
-if ( ! function_exists( 'lsx_post_meta_category' ) ) :
256
+if ( ! function_exists('lsx_post_meta_category')) :
257 257
 
258 258
 	/**
259 259
 	 * Add customisable post meta: post category(ies).
@@ -262,25 +262,25 @@  discard block
 block discarded – undo
262 262
 	 * @subpackage template-tags
263 263
 	 */
264 264
 	function lsx_post_meta_category() {
265
-		$post_categories = wp_get_post_categories( get_the_ID() );
265
+		$post_categories = wp_get_post_categories(get_the_ID());
266 266
 		$cats = array();
267 267
 
268
-		foreach ( $post_categories as $c ) {
269
-			$cat = get_category( $c );
268
+		foreach ($post_categories as $c) {
269
+			$cat = get_category($c);
270 270
 			/* Translators: %s: category name */
271
-			$cats[] = '<a href="' . esc_url( get_category_link( $cat->term_id ) ) . '" title="' . sprintf( esc_html__( 'View all posts in %s' , 'lsx' ), $cat->name ) . '">' . $cat->name . '</a>';
271
+			$cats[] = '<a href="' . esc_url(get_category_link($cat->term_id)) . '" title="' . sprintf(esc_html__('View all posts in %s', 'lsx'), $cat->name) . '">' . $cat->name . '</a>';
272 272
 		}
273 273
 
274
-		if ( ! empty( $cats ) ) {
274
+		if ( ! empty($cats)) {
275 275
 			?>
276
-			<span class="post-meta-categories"><span><?php esc_html_e( 'Posted in: ', 'lsx' ); ?></span> <?php echo wp_kses_post( implode( ', ', $cats ) ); ?></span>
276
+			<span class="post-meta-categories"><span><?php esc_html_e('Posted in: ', 'lsx'); ?></span> <?php echo wp_kses_post(implode(', ', $cats)); ?></span>
277 277
 			<?php
278 278
 		}
279 279
 	}
280 280
 
281 281
 endif;
282 282
 
283
-if ( ! function_exists( 'lsx_post_tags' ) ) :
283
+if ( ! function_exists('lsx_post_tags')) :
284 284
 
285 285
 	/**
286 286
 	 * Add customisable post meta: post tag(s).
@@ -289,10 +289,10 @@  discard block
 block discarded – undo
289 289
 	 * @subpackage template-tags
290 290
 	 */
291 291
 	function lsx_post_tags() {
292
-		if ( has_tag() ) :
292
+		if (has_tag()) :
293 293
 			?>
294 294
 			<div class="post-tags">
295
-				<span><?php echo esc_html__( 'Tags: ', 'lsx' ); ?></span><?php echo wp_kses_post( get_the_tag_list( '' ) ); ?>
295
+				<span><?php echo esc_html__('Tags: ', 'lsx'); ?></span><?php echo wp_kses_post(get_the_tag_list('')); ?>
296 296
 			</div>
297 297
 			<?php
298 298
 		endif;
@@ -300,9 +300,9 @@  discard block
 block discarded – undo
300 300
 
301 301
 endif;
302 302
 
303
-add_action( 'lsx_content_post_tags', 'lsx_post_tags', 10 );
303
+add_action('lsx_content_post_tags', 'lsx_post_tags', 10);
304 304
 
305
-if ( ! function_exists( 'lsx_sharing_output' ) ) :
305
+if ( ! function_exists('lsx_sharing_output')) :
306 306
 
307 307
 	/**
308 308
 	 * Display sharing buttons.
@@ -312,14 +312,14 @@  discard block
 block discarded – undo
312 312
 	 */
313 313
 	function lsx_sharing_output() {
314 314
 		global $lsx_sharing;
315
-		echo wp_kses_post( $lsx_sharing->sharing_buttons() );
315
+		echo wp_kses_post($lsx_sharing->sharing_buttons());
316 316
 	}
317 317
 
318 318
 endif;
319 319
 
320
-add_action( 'lsx_content_sharing', 'lsx_sharing_output', 20 );
320
+add_action('lsx_content_sharing', 'lsx_sharing_output', 20);
321 321
 
322
-if ( ! function_exists( 'lsx_translate_format_to_fontawesome' ) ) :
322
+if ( ! function_exists('lsx_translate_format_to_fontawesome')) :
323 323
 
324 324
 	/**
325 325
 	 * Translate post format to Font Awesome class.
@@ -327,8 +327,8 @@  discard block
 block discarded – undo
327 327
 	 * @package    lsx
328 328
 	 * @subpackage template-tags
329 329
 	 */
330
-	function lsx_translate_format_to_fontawesome( $format ) {
331
-		switch ( $format ) {
330
+	function lsx_translate_format_to_fontawesome($format) {
331
+		switch ($format) {
332 332
 			case 'image':
333 333
 				$format = 'camera';
334 334
 				break;
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
 
361 361
 endif;
362 362
 
363
-if ( ! function_exists( 'lsx_paging_nav' ) ) :
363
+if ( ! function_exists('lsx_paging_nav')) :
364 364
 
365 365
 	/**
366 366
 	 * Display navigation to next/previous set of posts when applicable.
@@ -371,37 +371,37 @@  discard block
 block discarded – undo
371 371
 	function lsx_paging_nav() {
372 372
 		global $wp_query;
373 373
 
374
-		if ( $wp_query->max_num_pages < 2 ) {
374
+		if ($wp_query->max_num_pages < 2) {
375 375
 			return;
376 376
 		}
377 377
 
378
-		if ( true === apply_filters( 'lsx_paging_nav_disable', false ) ) {
378
+		if (true === apply_filters('lsx_paging_nav_disable', false)) {
379 379
 			return true;
380
-		} elseif ( current_theme_supports( 'infinite-scroll' ) && class_exists( 'The_Neverending_Home_Page' ) ) {
380
+		} elseif (current_theme_supports('infinite-scroll') && class_exists('The_Neverending_Home_Page')) {
381 381
 			return true;
382 382
 		} else {
383 383
 			$html = '';
384 384
 			$html .= '<div class="lsx-pagination-wrapper">' . PHP_EOL;
385 385
 			$html .= '<div class="lsx-breaker"></div>' . PHP_EOL;
386 386
 			$html .= '<div class="lsx-pagination">' . PHP_EOL;
387
-			$html .= paginate_links( array(
388
-				'base'               => str_replace( 999999999, '%#%', esc_url( get_pagenum_link( 999999999 ) ) ),
387
+			$html .= paginate_links(array(
388
+				'base'               => str_replace(999999999, '%#%', esc_url(get_pagenum_link(999999999))),
389 389
 				'format'             => '?paged=%#%',
390 390
 				'total'              => $wp_query->max_num_pages,
391
-				'current'            => max( 1, intval( get_query_var( 'paged' ) ) ),
392
-				'prev_text'          => '<span class="meta-nav">&larr;</span> ' . esc_html__( 'Previous', 'lsx' ),
393
-				'next_text'          => esc_html__( 'Next', 'lsx' ) . ' <span class="meta-nav">&rarr;</span>',
394
-			) );
391
+				'current'            => max(1, intval(get_query_var('paged'))),
392
+				'prev_text'          => '<span class="meta-nav">&larr;</span> ' . esc_html__('Previous', 'lsx'),
393
+				'next_text'          => esc_html__('Next', 'lsx') . ' <span class="meta-nav">&rarr;</span>',
394
+			));
395 395
 			$html .= '</div>' . PHP_EOL;
396 396
 			$html .= '</div>' . PHP_EOL;
397 397
 
398
-			echo wp_kses_post( $html );
398
+			echo wp_kses_post($html);
399 399
 		}
400 400
 	}
401 401
 
402 402
 endif;
403 403
 
404
-if ( ! function_exists( 'lsx_post_nav' ) ) :
404
+if ( ! function_exists('lsx_post_nav')) :
405 405
 
406 406
 	/**
407 407
 	 * Display navigation to next/previous post when applicable.
@@ -410,24 +410,24 @@  discard block
 block discarded – undo
410 410
 	 * @subpackage template-tags
411 411
 	 */
412 412
 	function lsx_post_nav() {
413
-		$previous = ( is_attachment() ) ? get_post( get_post()->post_parent ) : get_adjacent_post( false, '', true );
414
-		$next     = get_adjacent_post( false, '', false );
413
+		$previous = (is_attachment()) ? get_post(get_post()->post_parent) : get_adjacent_post(false, '', true);
414
+		$next     = get_adjacent_post(false, '', false);
415 415
 
416
-		if ( ! $next && ! $previous ) {
416
+		if ( ! $next && ! $previous) {
417 417
 			return;
418 418
 		}
419 419
 
420 420
 		$default_size = 'sm';
421
-		$size         = apply_filters( 'lsx_bootstrap_column_size', $default_size );
421
+		$size         = apply_filters('lsx_bootstrap_column_size', $default_size);
422 422
 		?>
423 423
 		<nav class="navigation post-navigation" role="navigation">
424 424
 			<div class="lsx-breaker"></div>
425 425
 			<div class="nav-links pager row">
426
-				<div class="previous <?php echo 'col-' . esc_attr( $size ) . '-6'; ?>">
427
-					<?php previous_post_link( '%link', '<p class="nav-links-description">' . esc_html_x( 'Previous Post', 'Previous post link', 'lsx' ) . '</p><h3>%title</h3>' ); ?>
426
+				<div class="previous <?php echo 'col-' . esc_attr($size) . '-6'; ?>">
427
+					<?php previous_post_link('%link', '<p class="nav-links-description">' . esc_html_x('Previous Post', 'Previous post link', 'lsx') . '</p><h3>%title</h3>'); ?>
428 428
 				</div>
429
-				<div class="next <?php echo 'col-' . esc_attr( $size ) . '-6'; ?>">
430
-					<?php next_post_link( '%link', '<p class="nav-links-description">' . esc_html_x( 'Next Post', 'Next post link', 'lsx' ) . '</p><h3>%title</h3>' ); ?>
429
+				<div class="next <?php echo 'col-' . esc_attr($size) . '-6'; ?>">
430
+					<?php next_post_link('%link', '<p class="nav-links-description">' . esc_html_x('Next Post', 'Next post link', 'lsx') . '</p><h3>%title</h3>'); ?>
431 431
 				</div>
432 432
 			</div><!-- .nav-links -->
433 433
 		</nav><!-- .navigation -->
@@ -436,7 +436,7 @@  discard block
 block discarded – undo
436 436
 
437 437
 endif;
438 438
 
439
-if ( ! function_exists( 'lsx_site_identity' ) ) :
439
+if ( ! function_exists('lsx_site_identity')) :
440 440
 
441 441
 	/**
442 442
 	 * Outputs either the Site Title or the Site Logo.
@@ -445,10 +445,10 @@  discard block
 block discarded – undo
445 445
 	 * @subpackage template-tags
446 446
 	 */
447 447
 	function lsx_site_identity() {
448
-		if ( function_exists( 'has_custom_logo' ) && has_custom_logo() ) {
448
+		if (function_exists('has_custom_logo') && has_custom_logo()) {
449 449
 			the_custom_logo();
450 450
 		} else {
451
-			if ( get_theme_mod( 'site_logo_header_text', 1 ) ) {
451
+			if (get_theme_mod('site_logo_header_text', 1)) {
452 452
 				lsx_site_title();
453 453
 			}
454 454
 		}
@@ -456,7 +456,7 @@  discard block
 block discarded – undo
456 456
 
457 457
 endif;
458 458
 
459
-if ( ! function_exists( 'lsx_navbar_header' ) ) :
459
+if ( ! function_exists('lsx_navbar_header')) :
460 460
 	/**
461 461
 	 * Outputs the Nav Menu.
462 462
 	 *
@@ -467,17 +467,17 @@  discard block
 block discarded – undo
467 467
 		?>
468 468
 		<div class="navbar-header" itemscope itemtype="http://schema.org/WebPage">
469 469
 			<?php
470
-				if ( has_nav_menu( 'primary' ) ) :
470
+				if (has_nav_menu('primary')) :
471 471
 					?>
472 472
 					<div class="wrapper-toggle" data-toggle="collapse" data-target=".primary-navbar">
473 473
 						<button type="button" class="navbar-toggle">
474
-							<span class="sr-only"><?php esc_html_e( 'Toggle navigation', 'lsx' ); ?></span>
474
+							<span class="sr-only"><?php esc_html_e('Toggle navigation', 'lsx'); ?></span>
475 475
 							<span class="icon-bar"></span>
476 476
 							<span class="icon-bar"></span>
477 477
 							<span class="icon-bar"></span>
478 478
 							<span class="icon-bar"></span>
479 479
 						</button>
480
-						<span class="mobile-menu-title"><?php esc_html_e( 'Menu', 'lsx' ); ?></span>
480
+						<span class="mobile-menu-title"><?php esc_html_e('Menu', 'lsx'); ?></span>
481 481
 					</div>
482 482
 					<?php
483 483
 				endif;
@@ -490,9 +490,9 @@  discard block
 block discarded – undo
490 490
 
491 491
 endif;
492 492
 
493
-add_action( 'lsx_nav_before', 'lsx_navbar_header' );
493
+add_action('lsx_nav_before', 'lsx_navbar_header');
494 494
 
495
-if ( ! function_exists( 'lsx_nav_menu' ) ) :
495
+if ( ! function_exists('lsx_nav_menu')) :
496 496
 	/**
497 497
 	 * Outputs the Nav Menu.
498 498
 	 *
@@ -500,17 +500,17 @@  discard block
 block discarded – undo
500 500
 	 * @subpackage template-tags
501 501
 	 */
502 502
 	function lsx_nav_menu() {
503
-		if ( has_nav_menu( 'primary' ) ) :
503
+		if (has_nav_menu('primary')) :
504 504
 			?>
505 505
 			<nav class="primary-navbar collapse navbar-collapse">
506 506
 				<?php
507
-					wp_nav_menu( array(
507
+					wp_nav_menu(array(
508 508
 						'theme_location' => 'primary',
509 509
 						'depth'          => 3,
510 510
 						'container'      => false,
511 511
 						'menu_class'     => 'nav navbar-nav',
512 512
 						'walker'         => new LSX_Bootstrap_Navwalker(),
513
-					) );
513
+					));
514 514
 				?>
515 515
 			</nav>
516 516
 			<?php
@@ -518,7 +518,7 @@  discard block
 block discarded – undo
518 518
 	}
519 519
 endif;
520 520
 
521
-if ( ! function_exists( 'lsx_sitemap_loops' ) ) {
521
+if ( ! function_exists('lsx_sitemap_loops')) {
522 522
 	/**
523 523
 	 * Outputs the loops on the sitemap
524 524
 	 *
@@ -526,19 +526,19 @@  discard block
 block discarded – undo
526 526
 	 * @subpackage template-tags
527 527
 	 */
528 528
 	function lsx_sitemap_loops() {
529
-		$sitemap_loops  = array(
529
+		$sitemap_loops = array(
530 530
 			'page'     => array(
531 531
 				'type'      => 'post_type',
532
-				'label'     => __( 'Pages', 'lsx' ),
532
+				'label'     => __('Pages', 'lsx'),
533 533
 				'heirarchy' => true,
534 534
 			),
535 535
 			'post'     => array(
536 536
 				'type'  => 'post_type',
537
-				'label' => __( 'Posts', 'lsx' ),
537
+				'label' => __('Posts', 'lsx'),
538 538
 			),
539 539
 			'category' => array(
540 540
 				'type'      => 'taxonomy',
541
-				'label'     => __( 'Categories', 'lsx' ),
541
+				'label'     => __('Categories', 'lsx'),
542 542
 				'heirarchy' => true,
543 543
 			),
544 544
 		);
@@ -547,49 +547,49 @@  discard block
 block discarded – undo
547 547
 			'_builtin' => false,
548 548
 			'show_ui'  => true,
549 549
 		);
550
-		$post_types     = get_post_types( $post_type_args, 'objects' );
551
-		if ( ! empty( $post_types ) ) {
552
-			foreach ( $post_types as $post_type_key => $post_type_obj ) {
553
-				$sitemap_loops[ $post_type_key ] = array(
550
+		$post_types = get_post_types($post_type_args, 'objects');
551
+		if ( ! empty($post_types)) {
552
+			foreach ($post_types as $post_type_key => $post_type_obj) {
553
+				$sitemap_loops[$post_type_key] = array(
554 554
 					'type'  => 'post_type',
555 555
 					'label' => $post_type_obj->label,
556 556
 				);
557 557
 			}
558 558
 		}
559
-		$taxonomy_args  = array(
559
+		$taxonomy_args = array(
560 560
 			'public'   => true,
561 561
 			'_builtin' => false,
562 562
 			'show_ui'  => true,
563 563
 		);
564
-		$taxonomies     = get_taxonomies( $taxonomy_args, 'objects' );
565
-		if ( ! empty( $taxonomies ) ) {
566
-			foreach ( $taxonomies as $tax_key => $tax_obj ) {
567
-				$sitemap_loops[ $tax_key ] = array(
564
+		$taxonomies = get_taxonomies($taxonomy_args, 'objects');
565
+		if ( ! empty($taxonomies)) {
566
+			foreach ($taxonomies as $tax_key => $tax_obj) {
567
+				$sitemap_loops[$tax_key] = array(
568 568
 					'type'  => 'taxonomy',
569 569
 					'label' => $tax_obj->label,
570 570
 				);
571 571
 			}
572 572
 		}
573
-		$sitemap_loops = apply_filters( 'lsx_sitemap_loops_list', $sitemap_loops );
574
-		foreach ( $sitemap_loops as $sitemap_key => $sitemap_values ) {
575
-			if ( 'post_type' === $sitemap_values['type'] ) {
576
-				if ( isset( $sitemap_values['heirarchy'] ) && true === $sitemap_values['heirarchy'] ) {
577
-					lsx_sitemap_pages( $sitemap_key, $sitemap_values['label'] );
573
+		$sitemap_loops = apply_filters('lsx_sitemap_loops_list', $sitemap_loops);
574
+		foreach ($sitemap_loops as $sitemap_key => $sitemap_values) {
575
+			if ('post_type' === $sitemap_values['type']) {
576
+				if (isset($sitemap_values['heirarchy']) && true === $sitemap_values['heirarchy']) {
577
+					lsx_sitemap_pages($sitemap_key, $sitemap_values['label']);
578 578
 				} else {
579
-					lsx_sitemap_custom_post_type( $sitemap_key, $sitemap_values['label'] );
579
+					lsx_sitemap_custom_post_type($sitemap_key, $sitemap_values['label']);
580 580
 				}
581 581
 			} else {
582
-				if ( isset( $sitemap_values['heirarchy'] ) && true === $sitemap_values['heirarchy'] ) {
583
-					lsx_sitemap_taxonomy( $sitemap_key, $sitemap_values['label'], true );
582
+				if (isset($sitemap_values['heirarchy']) && true === $sitemap_values['heirarchy']) {
583
+					lsx_sitemap_taxonomy($sitemap_key, $sitemap_values['label'], true);
584 584
 				} else {
585
-					lsx_sitemap_taxonomy( $sitemap_key, $sitemap_values['label'], false );
585
+					lsx_sitemap_taxonomy($sitemap_key, $sitemap_values['label'], false);
586 586
 				}
587 587
 			}
588 588
 		}
589 589
 	}
590 590
 }
591 591
 
592
-if ( ! function_exists( 'lsx_sitemap_pages' ) ) :
592
+if ( ! function_exists('lsx_sitemap_pages')) :
593 593
 
594 594
 	/**
595 595
 	 * Outputs Pages for the Sitemap Template.
@@ -597,7 +597,7 @@  discard block
 block discarded – undo
597 597
 	 * @package    lsx
598 598
 	 * @subpackage template-tags
599 599
 	 */
600
-	function lsx_sitemap_pages( $forced_type = '', $label = '' ) {
600
+	function lsx_sitemap_pages($forced_type = '', $label = '') {
601 601
 		$page_args = array(
602 602
 			'depth'        => 3,
603 603
 			'title_li'     => '',
@@ -606,15 +606,15 @@  discard block
 block discarded – undo
606 606
 			'post_type'    => $forced_type,
607 607
 			'item_spacing' => 'preserve',
608 608
 		);
609
-		echo '<h2>' . esc_html( $label ) . '</h2>';
609
+		echo '<h2>' . esc_html($label) . '</h2>';
610 610
 		echo '<ul>';
611
-		wp_list_pages( $page_args );
611
+		wp_list_pages($page_args);
612 612
 		echo '</ul>';
613 613
 	}
614 614
 
615 615
 endif;
616 616
 
617
-if ( ! function_exists( 'lsx_sitemap_custom_post_type' ) ) :
617
+if ( ! function_exists('lsx_sitemap_custom_post_type')) :
618 618
 
619 619
 	/**
620 620
 	 * Outputs a custom post type section.
@@ -622,18 +622,18 @@  discard block
 block discarded – undo
622 622
 	 * @package    lsx
623 623
 	 * @subpackage template-tags
624 624
 	 */
625
-	function lsx_sitemap_custom_post_type( $forced_type = '', $label = '' ) {
626
-		if ( '' !== $forced_type ) {
627
-			$post_types = array( $forced_type );
625
+	function lsx_sitemap_custom_post_type($forced_type = '', $label = '') {
626
+		if ('' !== $forced_type) {
627
+			$post_types = array($forced_type);
628 628
 		} else {
629 629
 			$args = array(
630 630
 				'public'   => true,
631 631
 				'_builtin' => false,
632 632
 			);
633
-			$post_types = get_post_types( $args, 'names' );
633
+			$post_types = get_post_types($args, 'names');
634 634
 		}
635 635
 
636
-		foreach ( $post_types as $post_type ) {
636
+		foreach ($post_types as $post_type) {
637 637
 			$post_type_args = array(
638 638
 				'post_type'      => 'page',
639 639
 				'posts_per_page' => 99,
@@ -641,24 +641,24 @@  discard block
 block discarded – undo
641 641
 				'post_type'      => $post_type,
642 642
 			);
643 643
 
644
-			$post_type_items  = new WP_Query( $post_type_args );
645
-			$post_type_object = get_post_type_object( $post_type );
644
+			$post_type_items  = new WP_Query($post_type_args);
645
+			$post_type_object = get_post_type_object($post_type);
646 646
 
647
-			if ( '' !== $label ) {
647
+			if ('' !== $label) {
648 648
 				$title = $label;
649
-			} elseif ( ! empty( $post_type_object ) ) {
649
+			} elseif ( ! empty($post_type_object)) {
650 650
 				$title = $post_type_object->labels->name;
651 651
 			} else {
652
-				$title = ucwords( $post_type );
652
+				$title = ucwords($post_type);
653 653
 			}
654 654
 
655
-			if ( $post_type_items->have_posts() ) {
656
-				echo '<h2>' . esc_html( $title ) . '</h2>';
655
+			if ($post_type_items->have_posts()) {
656
+				echo '<h2>' . esc_html($title) . '</h2>';
657 657
 				echo '<ul>';
658 658
 
659
-				while ( $post_type_items->have_posts() ) {
659
+				while ($post_type_items->have_posts()) {
660 660
 					$post_type_items->the_post();
661
-					echo '<li class="' . esc_attr( get_post_type() ) . '_item ' . esc_attr( get_post_type() ) . '-item-' . esc_attr( get_the_ID() ) . '"><a href="' . esc_url( get_permalink() ) . '" title="">' . get_the_title() . '</a></li>';
661
+					echo '<li class="' . esc_attr(get_post_type()) . '_item ' . esc_attr(get_post_type()) . '-item-' . esc_attr(get_the_ID()) . '"><a href="' . esc_url(get_permalink()) . '" title="">' . get_the_title() . '</a></li>';
662 662
 				}
663 663
 
664 664
 				echo '</ul>';
@@ -674,8 +674,8 @@  discard block
 block discarded – undo
674 674
  *
675 675
  * @return void
676 676
  */
677
-function lsx_sitemap_taxonomy( $taxonomy = '', $label = '', $hierarchical = false ) {
678
-	if ( '' !== $taxonomy ) {
677
+function lsx_sitemap_taxonomy($taxonomy = '', $label = '', $hierarchical = false) {
678
+	if ('' !== $taxonomy) {
679 679
 
680 680
 		$tax_args = array(
681 681
 			'echo'               => 0,
@@ -685,24 +685,24 @@  discard block
 block discarded – undo
685 685
 			'hierarchical'        => $hierarchical,
686 686
 			'separator'           => '<br />',
687 687
 			'show_count'          => 0,
688
-			'show_option_none'    => __( 'None', 'lsx' ),
688
+			'show_option_none'    => __('None', 'lsx'),
689 689
 			'style'               => 'list',
690 690
 			'taxonomy'            => $taxonomy,
691 691
 			'title_li'            => '',
692 692
 		);
693
-		$categories = wp_list_categories( $tax_args );
694
-		if ( ! empty( $categories ) ) {
693
+		$categories = wp_list_categories($tax_args);
694
+		if ( ! empty($categories)) {
695 695
 			echo '<div class="sitemap-rows">';
696
-			echo '<h2>' . wp_kses_post( $label ) . '</h2>';
696
+			echo '<h2>' . wp_kses_post($label) . '</h2>';
697 697
 			echo '<ul>';
698
-			echo wp_kses_post( $categories );
698
+			echo wp_kses_post($categories);
699 699
 			echo '</ul>';
700 700
 			echo '</div>';
701 701
 		}
702 702
 	}
703 703
 }
704 704
 
705
-if ( ! function_exists( 'lsx_sitemap_taxonomy_clouds' ) ) :
705
+if ( ! function_exists('lsx_sitemap_taxonomy_clouds')) :
706 706
 
707 707
 	/**
708 708
 	 * Outputs the public taxonomies.
@@ -716,18 +716,18 @@  discard block
 block discarded – undo
716 716
 			'_builtin' => false,
717 717
 		);
718 718
 
719
-		$taxonomies = get_taxonomies( $taxonomy_args );
719
+		$taxonomies = get_taxonomies($taxonomy_args);
720 720
 
721
-		if ( ! empty( $taxonomies ) ) {
722
-			foreach ( $taxonomies as $taxonomy_id => $taxonomy ) {
723
-				$tag_cloud = wp_tag_cloud( array(
721
+		if ( ! empty($taxonomies)) {
722
+			foreach ($taxonomies as $taxonomy_id => $taxonomy) {
723
+				$tag_cloud = wp_tag_cloud(array(
724 724
 					'taxonomy' => $taxonomy_id,
725 725
 					'echo'     => false,
726
-				) );
726
+				));
727 727
 
728
-				if ( ! empty( $tag_cloud ) ) {
729
-					echo '<h2>' . esc_html( $taxonomy ) . '</h2>';
730
-					echo '<aside id="' . esc_attr( $taxonomy_id ) . '" class="widget widget_' . esc_attr( $taxonomy_id ) . '">' . esc_html( $tag_cloud ) . '</aside>';
728
+				if ( ! empty($tag_cloud)) {
729
+					echo '<h2>' . esc_html($taxonomy) . '</h2>';
730
+					echo '<aside id="' . esc_attr($taxonomy_id) . '" class="widget widget_' . esc_attr($taxonomy_id) . '">' . esc_html($tag_cloud) . '</aside>';
731 731
 				}
732 732
 			}
733 733
 		}
@@ -735,7 +735,7 @@  discard block
 block discarded – undo
735 735
 
736 736
 endif;
737 737
 
738
-if ( ! function_exists( 'lsx_add_top_menu' ) ) :
738
+if ( ! function_exists('lsx_add_top_menu')) :
739 739
 
740 740
 	/**
741 741
 	 * Adds our top menu to the theme.
@@ -744,28 +744,28 @@  discard block
 block discarded – undo
744 744
 	 * @subpackage template-tags
745 745
 	 */
746 746
 	function lsx_add_top_menu() {
747
-		if ( has_nav_menu( 'top-menu' ) || has_nav_menu( 'top-menu-left' ) ) :
747
+		if (has_nav_menu('top-menu') || has_nav_menu('top-menu-left')) :
748 748
 			?>
749 749
 			<div id="top-menu" class="<?php lsx_top_menu_classes(); ?>">
750 750
 				<div class="container">
751
-					<?php if ( has_nav_menu( 'top-menu' ) ) : ?>
751
+					<?php if (has_nav_menu('top-menu')) : ?>
752 752
 						<nav class="top-menu">
753 753
 							<?php
754
-								wp_nav_menu( array(
754
+								wp_nav_menu(array(
755 755
 									'theme_location' => 'top-menu',
756 756
 									'walker'         => new LSX_Bootstrap_Navwalker(),
757
-								) );
757
+								));
758 758
 							?>
759 759
 						</nav>
760 760
 					<?php endif; ?>
761 761
 
762
-					<?php if ( has_nav_menu( 'top-menu-left' ) ) : ?>
762
+					<?php if (has_nav_menu('top-menu-left')) : ?>
763 763
 						<nav class="top-menu pull-left">
764 764
 							<?php
765
-								wp_nav_menu( array(
765
+								wp_nav_menu(array(
766 766
 									'theme_location' => 'top-menu-left',
767 767
 									'walker'         => new LSX_Bootstrap_Navwalker(),
768
-								) );
768
+								));
769 769
 							?>
770 770
 						</nav>
771 771
 					<?php endif; ?>
@@ -777,9 +777,9 @@  discard block
 block discarded – undo
777 777
 
778 778
 endif;
779 779
 
780
-add_action( 'lsx_header_before', 'lsx_add_top_menu' );
780
+add_action('lsx_header_before', 'lsx_add_top_menu');
781 781
 
782
-if ( ! function_exists( 'lsx_get_my_url' ) ) :
782
+if ( ! function_exists('lsx_get_my_url')) :
783 783
 
784 784
 	/**
785 785
 	 * Return URL from a link in the content.
@@ -788,11 +788,11 @@  discard block
 block discarded – undo
788 788
 	 * @subpackage template-tags
789 789
 	 */
790 790
 	function lsx_get_my_url() {
791
-		if ( ! preg_match( '/^<a\s[^>]*?href=[\'"](.+?)[\'"]$/is', get_the_content(), $matches ) ) {
791
+		if ( ! preg_match('/^<a\s[^>]*?href=[\'"](.+?)[\'"]$/is', get_the_content(), $matches)) {
792 792
 			return false;
793 793
 		}
794 794
 
795
-		return esc_url_raw( $matches[1] );
795
+		return esc_url_raw($matches[1]);
796 796
 	}
797 797
 
798 798
 endif;
Please login to merge, or discard this patch.
includes/sensei/class-lsx-sensei-lesson.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) {
2
+if ( ! defined('ABSPATH')) {
3 3
 	exit; // Exit if accessed directly
4 4
 }
5 5
 
@@ -19,9 +19,9 @@  discard block
 block discarded – undo
19 19
 	 * Constructor.
20 20
 	 */
21 21
 	public function __construct() {
22
-		add_action( 'init', array( $this, 'init' ) );
23
-		add_action( 'widgets_init', array( $this, 'lsx_widget_area_sensei_init' ), 100 );
24
-		add_filter( 'body_class', array( $this, 'lsx_widget_area_sensei_is_active' ) );
22
+		add_action('init', array($this, 'init'));
23
+		add_action('widgets_init', array($this, 'lsx_widget_area_sensei_init'), 100);
24
+		add_filter('body_class', array($this, 'lsx_widget_area_sensei_is_active'));
25 25
 	} // End __construct()
26 26
 
27 27
 	/**
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 	 * @return self
31 31
 	 */
32 32
 	public static function instance() {
33
-		if ( ! self::$instance ) {
33
+		if ( ! self::$instance) {
34 34
 			self::$instance = new self();
35 35
 		}
36 36
 		return self::$instance;
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 	 * Run our changes.
41 41
 	 */
42 42
 	public function init() {
43
-		add_action( 'lsx_content_top', array( $this, 'lsx_sensei_lesson_sidebar' ) );
43
+		add_action('lsx_content_top', array($this, 'lsx_sensei_lesson_sidebar'));
44 44
 
45 45
 	}
46 46
 
@@ -50,21 +50,21 @@  discard block
 block discarded – undo
50 50
 	 * @return void
51 51
 	 */
52 52
 	public function lsx_widget_area_sensei_init() {
53
-		if ( class_exists( 'Sensei_Course_Participants' ) || class_exists( 'Sensei_Course_Progress' ) ) {
54
-			register_sidebar( array(
55
-				'name'          => esc_html__( 'LSX Sensei Sidebar', 'lsx' ),
53
+		if (class_exists('Sensei_Course_Participants') || class_exists('Sensei_Course_Progress')) {
54
+			register_sidebar(array(
55
+				'name'          => esc_html__('LSX Sensei Sidebar', 'lsx'),
56 56
 				'id'            => 'lsx-sensei-sidebar',
57 57
 				'before_widget' => '<aside id="%1$s" class="widget %2$s">',
58 58
 				'after_widget'  => '</aside>',
59 59
 				'before_title'  => '<h3 class="widget-title">',
60 60
 				'after_title'   => '</h3>',
61
-			) );
61
+			));
62 62
 		}
63 63
 	}
64 64
 
65
-	public function lsx_widget_area_sensei_is_active( $classes ) {
65
+	public function lsx_widget_area_sensei_is_active($classes) {
66 66
 
67
-		if ( class_exists( 'Sensei_Lesson' ) && is_active_sidebar( 'lsx-sensei-sidebar' ) ) {
67
+		if (class_exists('Sensei_Lesson') && is_active_sidebar('lsx-sensei-sidebar')) {
68 68
 			$classes[] = 'lsx-sensei-sidebar-active';
69 69
 		}
70 70
 
@@ -77,11 +77,11 @@  discard block
 block discarded – undo
77 77
 	 * @return void
78 78
 	 */
79 79
 	public function lsx_sensei_lesson_sidebar() {
80
-		if ( class_exists( 'Sensei_Lesson' ) && ( class_exists( 'Sensei_Course_Participants' ) || class_exists( 'Sensei_Course_Progress' ) ) ) {
81
-			if ( ( is_single() && ( is_singular( 'lesson' ) ) ) || ( is_single() && ( is_singular( 'quiz' ) ) ) ) {
82
-				if ( is_active_sidebar( 'lsx-sensei-sidebar' ) ) {
80
+		if (class_exists('Sensei_Lesson') && (class_exists('Sensei_Course_Participants') || class_exists('Sensei_Course_Progress'))) {
81
+			if ((is_single() && (is_singular('lesson'))) || (is_single() && (is_singular('quiz')))) {
82
+				if (is_active_sidebar('lsx-sensei-sidebar')) {
83 83
 					echo '<div id="secondary" class="widget-area lsx-sensei-sidebar">';
84
-					dynamic_sidebar( 'lsx-sensei-sidebar' );
84
+					dynamic_sidebar('lsx-sensei-sidebar');
85 85
 					echo '</div>';
86 86
 				}
87 87
 			}
Please login to merge, or discard this patch.