Passed
Push — master ( 1675f8...04dd07 )
by Virginia
01:53
created
functions.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -7,25 +7,25 @@
 block discarded – undo
7 7
  * @package lsx
8 8
  */
9 9
 
10
-if ( ! defined( 'ABSPATH' ) ) {
10
+if ( ! defined('ABSPATH')) {
11 11
 	exit;
12 12
 }
13 13
 
14
-define( 'LSX_VERSION', '2.5.0' );
14
+define('LSX_VERSION', '2.5.0');
15 15
 
16
-if ( class_exists( 'WooCommerce' ) ) {
16
+if (class_exists('WooCommerce')) {
17 17
 	require get_template_directory() . '/includes/woocommerce/woocommerce.php';
18 18
 }
19 19
 
20
-if ( class_exists( 'Tribe__Events__Main' ) ) {
20
+if (class_exists('Tribe__Events__Main')) {
21 21
 	require get_template_directory() . '/includes/the-events-calendar/the-events-calendar.php';
22 22
 }
23 23
 
24
-if ( class_exists( 'Sensei_Main' ) || class_exists( 'Sensei_WC' ) ) {
24
+if (class_exists('Sensei_Main') || class_exists('Sensei_WC')) {
25 25
 	require get_template_directory() . '/includes/sensei/class-lsx-sensei.php';
26 26
 }
27 27
 
28
-if ( class_exists( 'bbPress' ) ) {
28
+if (class_exists('bbPress')) {
29 29
 	require get_template_directory() . '/includes/bbpress/bbpress.php';
30 30
 }
31 31
 
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.
includes/sensei/class-lsx-sensei-course.php 1 patch
Spacing   +31 added lines, -31 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,7 +19,7 @@  discard block
 block discarded – undo
19 19
 	 * Constructor.
20 20
 	 */
21 21
 	public function __construct() {
22
-		add_action( 'init', array( $this, 'init' ) );
22
+		add_action('init', array($this, 'init'));
23 23
 	} // End __construct()
24 24
 
25 25
 	/**
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 	 * @return self
29 29
 	 */
30 30
 	public static function instance() {
31
-		if ( ! self::$instance ) {
31
+		if ( ! self::$instance) {
32 32
 			self::$instance = new self();
33 33
 		}
34 34
 		return self::$instance;
@@ -42,32 +42,32 @@  discard block
 block discarded – undo
42 42
 		global $woothemes_sensei;
43 43
 
44 44
 		//Switching the course filters and the headers around
45
-		remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'archive_header' ), 10, 0 );
46
-		remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_sorting' ) );
47
-		remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_filters' ) );
48
-		add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'archive_header' ), 11, 0 );
49
-		add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_sorting' ), 12 );
50
-		add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_filters' ), 12 );
45
+		remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'archive_header'), 10, 0);
46
+		remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_sorting'));
47
+		remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_filters'));
48
+		add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'archive_header'), 11, 0);
49
+		add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_sorting'), 12);
50
+		add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_filters'), 12);
51 51
 
52 52
 		// First add the thumbnail.
53
-		add_action( 'sensei_course_content_inside_before', array( $this, 'get_course_thumbnail' ), 1 );
53
+		add_action('sensei_course_content_inside_before', array($this, 'get_course_thumbnail'), 1);
54 54
 
55 55
 		// This is for our wrapper, we run it on 2, after the thumbnail we added.
56
-		add_action( 'sensei_course_content_inside_before', array( $this, 'course_body_div_open' ), 1 );
57
-		add_action( 'sensei_course_content_inside_after', array( $this, 'course_body_div_close' ), 50 );
56
+		add_action('sensei_course_content_inside_before', array($this, 'course_body_div_open'), 1);
57
+		add_action('sensei_course_content_inside_after', array($this, 'course_body_div_close'), 50);
58 58
 
59 59
 		// This is for our wrapper, we run it on 2, after the thumbnail we added.
60
-		add_action( 'sensei_course_content_inside_before', array( $this, 'course_body_div_results_open' ), 20 );
61
-		add_action( 'sensei_course_content_inside_after', array( $this, 'course_body_div_results_close' ), 49 );
60
+		add_action('sensei_course_content_inside_before', array($this, 'course_body_div_results_open'), 20);
61
+		add_action('sensei_course_content_inside_after', array($this, 'course_body_div_results_close'), 49);
62 62
 
63
-		add_action( 'sensei_single_course_content_inside_before', array( $this, 'display_course_amount' ), 20 );
63
+		add_action('sensei_single_course_content_inside_before', array($this, 'display_course_amount'), 20);
64 64
 
65 65
 		// removes the course image above the content
66
-		remove_action( 'sensei_course_content_inside_before', array( $woothemes_sensei->course, 'course_image' ), 30, 1 );
66
+		remove_action('sensei_course_content_inside_before', array($woothemes_sensei->course, 'course_image'), 30, 1);
67 67
 		// add the course image to the left of the content
68
-		add_action( 'lsx_sensei_course_content_inside_before', array( $woothemes_sensei->course, 'course_image' ), 30, 1 );
68
+		add_action('lsx_sensei_course_content_inside_before', array($woothemes_sensei->course, 'course_image'), 30, 1);
69 69
 
70
-		add_filter( 'attach_shortcode_hooks', 'lsx_attach_shortcode_hooks', 10, 1 );
70
+		add_filter('attach_shortcode_hooks', 'lsx_attach_shortcode_hooks', 10, 1);
71 71
 
72 72
 	}
73 73
 
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 	public function get_course_thumbnail() {
80 80
 		?>
81 81
 		<div class="course-thumbnail">
82
-			<?php do_action( 'lsx_sensei_course_content_inside_before', get_the_ID() ); ?>
82
+			<?php do_action('lsx_sensei_course_content_inside_before', get_the_ID()); ?>
83 83
 		</div>
84 84
 		<?php
85 85
 	}
@@ -91,13 +91,13 @@  discard block
 block discarded – undo
91 91
 	 */
92 92
 	public function course_body_div_open() {
93 93
 		global $post, $current_user;
94
-		$is_user_taking_course = Sensei_Utils::user_started_course( $post->ID, $current_user->ID );
94
+		$is_user_taking_course = Sensei_Utils::user_started_course($post->ID, $current_user->ID);
95 95
 		$user_taking_course_class = '';
96
-		if ( ! empty( $is_user_taking_course ) ) {
96
+		if ( ! empty($is_user_taking_course)) {
97 97
 			$user_taking_course_class = 'currently-in-course';
98 98
 		}
99 99
 		?>
100
-		<div class="course-body <?php echo esc_html( $user_taking_course_class ); ?>">
100
+		<div class="course-body <?php echo esc_html($user_taking_course_class); ?>">
101 101
 		<?php
102 102
 	}
103 103
 
@@ -141,16 +141,16 @@  discard block
 block discarded – undo
141 141
 	 */
142 142
 	public function display_course_amount() {
143 143
 		global $post, $current_user;
144
-		$is_user_taking_course = Sensei_Utils::user_started_course( $post->ID, $current_user->ID );
145
-		$wc_post_id            = absint( get_post_meta( $post->ID, '_course_woocommerce_product', true ) );
146
-		if ( class_exists( 'Sensei_WC' ) ) {
147
-			$course_purchasable    = Sensei_WC::is_course_purchasable( $post->ID );
144
+		$is_user_taking_course = Sensei_Utils::user_started_course($post->ID, $current_user->ID);
145
+		$wc_post_id            = absint(get_post_meta($post->ID, '_course_woocommerce_product', true));
146
+		if (class_exists('Sensei_WC')) {
147
+			$course_purchasable    = Sensei_WC::is_course_purchasable($post->ID);
148 148
 			$currency              = get_woocommerce_currency_symbol();
149
-			$product               = new WC_Product( $wc_post_id );
150
-			if ( ( ! empty( $product->price ) ) && ( ! $is_user_taking_course ) ) {
151
-				echo '<span class="course-product-price price"><span>' . esc_html( $currency ) . ' </span>' . sprintf( '%0.2f', esc_html( $product->price ) ) . '</span>';
152
-			} elseif ( ( '' === $product->get_price() || 0 == $product->get_price() ) && $course_purchasable ) {
153
-				echo '<span class="course-product-price price">' . wp_kses_post( 'Free!', 'lsx' ) . '</span>';
149
+			$product               = new WC_Product($wc_post_id);
150
+			if (( ! empty($product->price)) && ( ! $is_user_taking_course)) {
151
+				echo '<span class="course-product-price price"><span>' . esc_html($currency) . ' </span>' . sprintf('%0.2f', esc_html($product->price)) . '</span>';
152
+			} elseif (('' === $product->get_price() || 0 == $product->get_price()) && $course_purchasable) {
153
+				echo '<span class="course-product-price price">' . wp_kses_post('Free!', 'lsx') . '</span>';
154 154
 			}
155 155
 		}
156 156
 	}
Please login to merge, or discard this patch.
includes/layout.php 1 patch
Spacing   +109 added lines, -109 removed lines patch added patch discarded remove patch
@@ -6,25 +6,25 @@  discard block
 block discarded – undo
6 6
  * @subpackage layout
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! function_exists( 'lsx_layout_selector' ) ) :
13
+if ( ! function_exists('lsx_layout_selector')) :
14 14
 	/**
15 15
 	 * Layout selector.
16 16
 	 *
17 17
 	 * @package    lsx
18 18
 	 * @subpackage layout
19 19
 	 */
20
-	function lsx_layout_selector( $class, $area = 'site' ) {
20
+	function lsx_layout_selector($class, $area = 'site') {
21 21
 		$return_class = '';
22
-		$layout       = get_theme_mod( 'lsx_layout', '1c' );
23
-		$layout       = apply_filters( 'lsx_layout', $layout );
22
+		$layout       = get_theme_mod('lsx_layout', '1c');
23
+		$layout       = apply_filters('lsx_layout', $layout);
24 24
 		$default_size = 'sm';
25
-		$size         = apply_filters( 'lsx_bootstrap_column_size', $default_size );
25
+		$size         = apply_filters('lsx_bootstrap_column_size', $default_size);
26 26
 
27
-		switch ( $layout ) {
27
+		switch ($layout) {
28 28
 			case '1c':
29 29
 				$main_class    = 'col-' . $size . '-12';
30 30
 				$sidebar_class = 'col-' . $size . '-12';
@@ -43,19 +43,19 @@  discard block
 block discarded – undo
43 43
 				break;
44 44
 		}
45 45
 
46
-		if ( 'main' === $class ) {
47
-			$return_class = apply_filters( 'lsx_layout_selector', $main_class, $class, $layout, $size );
46
+		if ('main' === $class) {
47
+			$return_class = apply_filters('lsx_layout_selector', $main_class, $class, $layout, $size);
48 48
 		}
49 49
 
50
-		if ( 'sidebar' === $class ) {
51
-			$return_class = apply_filters( 'lsx_layout_selector', $sidebar_class, $class, $layout, $size );
50
+		if ('sidebar' === $class) {
51
+			$return_class = apply_filters('lsx_layout_selector', $sidebar_class, $class, $layout, $size);
52 52
 		}
53 53
 
54 54
 		return $return_class;
55 55
 	}
56 56
 endif;
57 57
 
58
-if ( ! function_exists( 'lsx_main_class' ) ) :
58
+if ( ! function_exists('lsx_main_class')) :
59 59
 	/**
60 60
 	 * .main classes.
61 61
 	 *
@@ -63,11 +63,11 @@  discard block
 block discarded – undo
63 63
 	 * @subpackage layout
64 64
 	 */
65 65
 	function lsx_main_class() {
66
-		return lsx_layout_selector( 'main' );
66
+		return lsx_layout_selector('main');
67 67
 	}
68 68
 endif;
69 69
 
70
-if ( ! function_exists( 'lsx_sidebar_class' ) ) :
70
+if ( ! function_exists('lsx_sidebar_class')) :
71 71
 	/**
72 72
 	 * .sidebar classes.
73 73
 	 *
@@ -75,47 +75,47 @@  discard block
 block discarded – undo
75 75
 	 * @subpackage layout
76 76
 	 */
77 77
 	function lsx_sidebar_class() {
78
-		return lsx_layout_selector( 'sidebar' );
78
+		return lsx_layout_selector('sidebar');
79 79
 	}
80 80
 endif;
81 81
 
82
-if ( ! function_exists( 'lsx_header_classes' ) ) :
82
+if ( ! function_exists('lsx_header_classes')) :
83 83
 	/**
84 84
 	 * Output the classes for the header.
85 85
 	 *
86 86
 	 * @package    lsx
87 87
 	 * @subpackage layout
88 88
 	 */
89
-	function lsx_header_classes( $additional = false ) {
89
+	function lsx_header_classes($additional = false) {
90 90
 		$classes = 'banner navbar navbar-default';
91 91
 
92
-		if ( false !== $additional ) {
92
+		if (false !== $additional) {
93 93
 			$classes .= ' ' . $additional;
94 94
 		}
95 95
 
96
-		echo esc_attr( $classes );
96
+		echo esc_attr($classes);
97 97
 	}
98 98
 endif;
99 99
 
100
-if ( ! function_exists( 'lsx_top_menu_classes' ) ) :
100
+if ( ! function_exists('lsx_top_menu_classes')) :
101 101
 	/**
102 102
 	 * Output the classes for the top-menu.
103 103
 	 *
104 104
 	 * @package    lsx
105 105
 	 * @subpackage layout
106 106
 	 */
107
-	function lsx_top_menu_classes( $additional = false ) {
107
+	function lsx_top_menu_classes($additional = false) {
108 108
 		$classes = 'top-menu-default';
109 109
 
110
-		if ( false !== $additional ) {
110
+		if (false !== $additional) {
111 111
 			$classes .= ' ' . $additional;
112 112
 		}
113 113
 
114
-		echo esc_attr( $classes );
114
+		echo esc_attr($classes);
115 115
 	}
116 116
 endif;
117 117
 
118
-if ( ! function_exists( 'lsx_add_footer_sidebar_area' ) ) :
118
+if ( ! function_exists('lsx_add_footer_sidebar_area')) :
119 119
 	/**
120 120
 	 * Output the Footer CTA and/pr Footer Widgets.
121 121
 	 *
@@ -123,32 +123,32 @@  discard block
 block discarded – undo
123 123
 	 * @subpackage layout
124 124
 	 */
125 125
 	function lsx_add_footer_sidebar_area() {
126
-		if ( is_active_sidebar( 'sidebar-footer-cta' ) ) : ?>
126
+		if (is_active_sidebar('sidebar-footer-cta')) : ?>
127 127
 			<div id="footer-cta">
128 128
 				<div class="container">
129 129
 					<div class="lsx-full-width">
130 130
 						<div class="lsx-hero-unit">
131
-							<?php dynamic_sidebar( 'sidebar-footer-cta' ); ?>
131
+							<?php dynamic_sidebar('sidebar-footer-cta'); ?>
132 132
 						</div>
133 133
 					</div>
134 134
 				</div>
135 135
 			</div>
136 136
 		<?php endif; ?>
137 137
 
138
-		<?php if ( is_active_sidebar( 'sidebar-footer' ) ) : ?>
138
+		<?php if (is_active_sidebar('sidebar-footer')) : ?>
139 139
 			<div id="footer-widgets">
140 140
 				<div class="container">
141 141
 					<div class="row">
142
-						<?php dynamic_sidebar( 'sidebar-footer' ); ?>
142
+						<?php dynamic_sidebar('sidebar-footer'); ?>
143 143
 					</div>
144 144
 				</div>
145 145
 			</div>
146 146
 		<?php endif;
147 147
 	}
148
-	add_action( 'lsx_footer_before', 'lsx_add_footer_sidebar_area' );
148
+	add_action('lsx_footer_before', 'lsx_add_footer_sidebar_area');
149 149
 endif;
150 150
 
151
-if ( ! function_exists( 'lsx_global_header' ) ) :
151
+if ( ! function_exists('lsx_global_header')) :
152 152
 	/**
153 153
 	 * Displays the global header.
154 154
 	 *
@@ -156,23 +156,23 @@  discard block
 block discarded – undo
156 156
 	 * @subpackage layout
157 157
 	 */
158 158
 	function lsx_global_header() {
159
-		$show_on_front  = get_option( 'show_on_front' );
159
+		$show_on_front  = get_option('show_on_front');
160 160
 		$queried_object = get_queried_object();
161 161
 		$default_size   = 'sm';
162
-		$size           = apply_filters( 'lsx_bootstrap_column_size', $default_size );
162
+		$size           = apply_filters('lsx_bootstrap_column_size', $default_size);
163 163
 
164 164
 		//Pages have their own banner function 'lsx_page_banner()'
165 165
 		// if ( function_exists( 'is_woocommerce' ) && ( is_woocommerce() || is_checkout() || is_cart() || is_account_page() ) ) {
166 166
 		// 	return;
167 167
 		// }
168 168
 		//Product pages have their own banner function 'lsx_page_banner()'
169
-		if ( function_exists( 'is_woocommerce' ) && ( is_product() ) ) {
169
+		if (function_exists('is_woocommerce') && (is_product())) {
170 170
 			return;
171 171
 		}
172 172
 
173
-		if ( is_page() && ( 'page' !== $show_on_front || ! is_front_page() ) ) :
173
+		if (is_page() && ('page' !== $show_on_front || ! is_front_page())) :
174 174
 			?>
175
-			<div class="archive-header-wrapper banner-page col-<?php echo esc_attr( $size ); ?>-12">
175
+			<div class="archive-header-wrapper banner-page col-<?php echo esc_attr($size); ?>-12">
176 176
 				<?php lsx_global_header_inner_bottom(); ?>
177 177
 				<header class="archive-header">
178 178
 					<h1 class="archive-title"><?php the_title(); ?></h1>
@@ -180,26 +180,26 @@  discard block
 block discarded – undo
180 180
 
181 181
 			</div>
182 182
 			<?php
183
-		elseif ( is_single() && ! is_singular( 'post' ) ) :
183
+		elseif (is_single() && ! is_singular('post')) :
184 184
 			?>
185
-			<div class="archive-header-wrapper banner-single col-<?php echo esc_attr( $size ); ?>-12">
185
+			<div class="archive-header-wrapper banner-single col-<?php echo esc_attr($size); ?>-12">
186 186
 				<?php lsx_global_header_inner_bottom(); ?>
187 187
 				<header class="archive-header">
188
-					<h1 class="archive-title"><?php echo wp_kses_post( apply_filters( 'lsx_global_header_title', get_the_title() ) ); ?></h1>
188
+					<h1 class="archive-title"><?php echo wp_kses_post(apply_filters('lsx_global_header_title', get_the_title())); ?></h1>
189 189
 				</header>
190 190
 
191 191
 			</div>
192 192
 			<?php
193
-		elseif ( is_search() ) :
193
+		elseif (is_search()) :
194 194
 			?>
195
-			<div class="archive-header-wrapper banner-search col-<?php echo esc_attr( $size ); ?>-12">
195
+			<div class="archive-header-wrapper banner-search col-<?php echo esc_attr($size); ?>-12">
196 196
 				<?php lsx_global_header_inner_bottom(); ?>
197 197
 				<header class="archive-header">
198 198
 					<h1 class="archive-title">
199 199
 						<?php
200 200
 							printf(
201 201
 								/* Translators: %s: search term/query */
202
-								esc_html__( 'Search Results for: %s', 'lsx' ),
202
+								esc_html__('Search Results for: %s', 'lsx'),
203 203
 								'<span>' . get_search_query() . '</span>'
204 204
 							);
205 205
 						?>
@@ -208,12 +208,12 @@  discard block
 block discarded – undo
208 208
 
209 209
 			</div>
210 210
 			<?php
211
-		elseif ( is_author() ) :
211
+		elseif (is_author()) :
212 212
 			$author = get_the_author();
213
-			$author_avatar = get_avatar( get_the_author_meta( 'ID' ), 256 );
213
+			$author_avatar = get_avatar(get_the_author_meta('ID'), 256);
214 214
 			$author_bio = get_the_archive_description();
215 215
 			?>
216
-			<div class="archive-header-wrapper banner-archive-author col-<?php echo esc_attr( $size ); ?>-12">
216
+			<div class="archive-header-wrapper banner-archive-author col-<?php echo esc_attr($size); ?>-12">
217 217
 				<?php lsx_global_header_inner_bottom(); ?>
218 218
 				<header class="archive-header">
219 219
 					<h1 class="archive-title"><?php the_archive_title(); ?></h1>
@@ -221,16 +221,16 @@  discard block
 block discarded – undo
221 221
 
222 222
 			</div>
223 223
 			<?php
224
-		elseif ( is_archive() ) :
224
+		elseif (is_archive()) :
225 225
 			?>
226
-			<div class="archive-header-wrapper banner-archive col-<?php echo esc_attr( $size ); ?>-12">
226
+			<div class="archive-header-wrapper banner-archive col-<?php echo esc_attr($size); ?>-12">
227 227
 				<?php lsx_global_header_inner_bottom(); ?>
228 228
 				<header class="archive-header">
229 229
 					<h1 class="archive-title">
230
-						<?php if ( has_post_format() && ! is_category() && ! is_tag() && ! is_date() && ! is_tax( 'post_format' ) ) { ?>
231
-							<?php the_archive_title( esc_html__( 'Type:', 'lsx' ) ); ?>
230
+						<?php if (has_post_format() && ! is_category() && ! is_tag() && ! is_date() && ! is_tax('post_format')) { ?>
231
+							<?php the_archive_title(esc_html__('Type:', 'lsx')); ?>
232 232
 						<?php } else { ?>
233
-							<?php echo wp_kses_post( apply_filters( 'lsx_global_header_title', get_the_archive_title() ) ); ?>
233
+							<?php echo wp_kses_post(apply_filters('lsx_global_header_title', get_the_archive_title())); ?>
234 234
 						<?php } ?>
235 235
 					</h1>
236 236
 
@@ -238,36 +238,36 @@  discard block
 block discarded – undo
238 238
 				</header>
239 239
 			</div>
240 240
 			<?php
241
-		elseif ( 'page' === $show_on_front && (int) get_option( 'page_for_posts' ) === $queried_object->ID ) :
241
+		elseif ('page' === $show_on_front && (int) get_option('page_for_posts') === $queried_object->ID) :
242 242
 			?>
243
-			<div class="archive-header-wrapper banner-page col-<?php echo esc_attr( $size ); ?>-12">
243
+			<div class="archive-header-wrapper banner-page col-<?php echo esc_attr($size); ?>-12">
244 244
 				<?php lsx_global_header_inner_bottom(); ?>
245 245
 				<header class="archive-header">
246
-					<h1 class="archive-title"><?php esc_html_e( 'Blog', 'lsx' ); ?></h1>
246
+					<h1 class="archive-title"><?php esc_html_e('Blog', 'lsx'); ?></h1>
247 247
 				</header>
248 248
 
249 249
 			</div>
250 250
 			<?php
251
-		elseif ( ! is_singular( 'post' ) ) :
251
+		elseif ( ! is_singular('post')) :
252 252
 			// Display only the breadcrumbs
253 253
 			?>
254
-			<div class="archive-header-wrapper banner-singular col-<?php echo esc_attr( $size ); ?>-12">
254
+			<div class="archive-header-wrapper banner-singular col-<?php echo esc_attr($size); ?>-12">
255 255
 				<?php lsx_global_header_inner_bottom(); ?>
256 256
 			</div>
257 257
 			<?php
258
-		elseif ( ( true === apply_filters( 'lsx_global_header_disable', false ) ) && ( ! is_search() ) ) :
258
+		elseif ((true === apply_filters('lsx_global_header_disable', false)) && ( ! is_search())) :
259 259
 			// Display only the breadcrumbs
260 260
 			?>
261
-			<div class="archive-header-wrapper banner-global col-<?php echo esc_attr( $size ); ?>-12">
261
+			<div class="archive-header-wrapper banner-global col-<?php echo esc_attr($size); ?>-12">
262 262
 				<?php lsx_global_header_inner_bottom(); ?>
263 263
 			</div>
264 264
 			<?php
265 265
 		endif;
266 266
 	}
267
-	add_action( 'lsx_content_wrap_before', 'lsx_global_header' );
267
+	add_action('lsx_content_wrap_before', 'lsx_global_header');
268 268
 endif;
269 269
 
270
-if ( ! function_exists( 'lsx_author_extra_info' ) ) :
270
+if ( ! function_exists('lsx_author_extra_info')) :
271 271
 	/**
272 272
 	 * Displays the author extra info.
273 273
 	 *
@@ -276,83 +276,83 @@  discard block
 block discarded – undo
276 276
 	 */
277 277
 	function lsx_author_extra_info() {
278 278
 		$default_size   = 'sm';
279
-		$size           = apply_filters( 'lsx_bootstrap_column_size', $default_size );
279
+		$size           = apply_filters('lsx_bootstrap_column_size', $default_size);
280 280
 
281
-		if ( is_author() ) :
282
-			$author_id         = get_the_author_meta( 'ID' );
281
+		if (is_author()) :
282
+			$author_id         = get_the_author_meta('ID');
283 283
 			$author            = get_the_author();
284
-			$author_avatar     = get_avatar( $author_id, 400 );
284
+			$author_avatar     = get_avatar($author_id, 400);
285 285
 			$author_bio        = get_the_archive_description();
286
-			$author_url        = get_the_author_meta( 'url', $author_id );
287
-			$author_email      = get_the_author_meta( 'email', $author_id );
288
-			$author_facebook   = get_the_author_meta( 'facebook', $author_id );
289
-			$author_linkedin   = get_the_author_meta( 'linkedin', $author_id );
290
-			$author_twitter    = get_the_author_meta( 'twitter', $author_id );
291
-			$author_googleplus = get_the_author_meta( 'googleplus', $author_id );
286
+			$author_url        = get_the_author_meta('url', $author_id);
287
+			$author_email      = get_the_author_meta('email', $author_id);
288
+			$author_facebook   = get_the_author_meta('facebook', $author_id);
289
+			$author_linkedin   = get_the_author_meta('linkedin', $author_id);
290
+			$author_twitter    = get_the_author_meta('twitter', $author_id);
291
+			$author_googleplus = get_the_author_meta('googleplus', $author_id);
292 292
 			?>
293
-			<div class="col-<?php echo esc_attr( $size ); ?>-12">
293
+			<div class="col-<?php echo esc_attr($size); ?>-12">
294 294
 				<div class="archive-author-data">
295 295
 					<div class="row">
296
-						<?php if ( ! empty( $author_avatar ) ) : ?>
296
+						<?php if ( ! empty($author_avatar)) : ?>
297 297
 							<div class="col-xs-12 col-sm-4 col-md-3">
298
-							<figure class="archive-author-avatar"><?php echo wp_kses_post( $author_avatar ); ?></figure>
298
+							<figure class="archive-author-avatar"><?php echo wp_kses_post($author_avatar); ?></figure>
299 299
 							</div>
300 300
 						<?php endif; ?>
301 301
 						<div class="col-xs-12 col-sm-8 col-md-9">
302
-							<a class="back-to-blog" href="<?php echo ( esc_url( get_post_type_archive_link( 'post' ) ) ); ?>"><?php echo esc_html__( 'Back To Blog', 'lsx' ); ?></a>
302
+							<a class="back-to-blog" href="<?php echo (esc_url(get_post_type_archive_link('post'))); ?>"><?php echo esc_html__('Back To Blog', 'lsx'); ?></a>
303 303
 							<!-- Name -->
304 304
 							<h2 class="archive-author-title">
305 305
 								<?php
306
-								if ( '' !== $author ) {
307
-									echo esc_html( $author );
306
+								if ('' !== $author) {
307
+									echo esc_html($author);
308 308
 								}
309 309
 								?>
310 310
 							</h2>
311 311
 							<!-- Social -->
312
-							<?php if ( ! empty( $author_url ) || ! empty( $author_email ) || ! empty( $author_facebook ) || ! empty( $author_twitter ) || ! empty( $author_googleplus ) ) : ?>
312
+							<?php if ( ! empty($author_url) || ! empty($author_email) || ! empty($author_facebook) || ! empty($author_twitter) || ! empty($author_googleplus)) : ?>
313 313
 								<div class="archive-author-social-links">
314
-									<?php if ( ! empty( $author_url ) ) : ?>
315
-										<a href="<?php echo esc_url( $author_url ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-url"><i class="fa fa-link" aria-hidden="true"></i></a>
314
+									<?php if ( ! empty($author_url)) : ?>
315
+										<a href="<?php echo esc_url($author_url); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-url"><i class="fa fa-link" aria-hidden="true"></i></a>
316 316
 									<?php endif; ?>
317 317
 
318
-									<?php if ( ! empty( $author_email ) ) : ?>
319
-										<a href="mailto:<?php echo esc_attr( $author_email ); ?>" class="archive-author-social-link archive-author-social-link-email"><i class="fa fa-envelope" aria-hidden="true"></i></a>
318
+									<?php if ( ! empty($author_email)) : ?>
319
+										<a href="mailto:<?php echo esc_attr($author_email); ?>" class="archive-author-social-link archive-author-social-link-email"><i class="fa fa-envelope" aria-hidden="true"></i></a>
320 320
 									<?php endif; ?>
321 321
 
322
-									<?php if ( ! empty( $author_facebook ) ) : ?>
323
-										<a href="<?php echo esc_url( $author_facebook ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a>
322
+									<?php if ( ! empty($author_facebook)) : ?>
323
+										<a href="<?php echo esc_url($author_facebook); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a>
324 324
 									<?php endif; ?>
325 325
 
326
-									<?php if ( ! empty( $author_twitter ) ) : ?>
327
-										<a href="https://twitter.com/<?php echo esc_attr( $author_twitter ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a>
326
+									<?php if ( ! empty($author_twitter)) : ?>
327
+										<a href="https://twitter.com/<?php echo esc_attr($author_twitter); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a>
328 328
 									<?php endif; ?>
329 329
 
330
-									<?php if ( ! empty( $author_linkedin ) ) : ?>
331
-										<a href="<?php echo esc_url( $author_linkedin ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-linkedin"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
330
+									<?php if ( ! empty($author_linkedin)) : ?>
331
+										<a href="<?php echo esc_url($author_linkedin); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-linkedin"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
332 332
 									<?php endif; ?>
333 333
 
334
-									<?php if ( ! empty( $author_googleplus ) ) : ?>
335
-										<a href="<?php echo esc_url( $author_googleplus ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-googleplus"><i class="fa fa-google-plus" aria-hidden="true"></i></a>
334
+									<?php if ( ! empty($author_googleplus)) : ?>
335
+										<a href="<?php echo esc_url($author_googleplus); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-googleplus"><i class="fa fa-google-plus" aria-hidden="true"></i></a>
336 336
 									<?php endif; ?>
337 337
 								</div>
338 338
 							<?php endif; ?>
339 339
 
340 340
 							<!-- Bio -->
341
-							<?php if ( ! empty( $author_bio ) ) : ?>
342
-								<p class="archive-author-bio"><?php echo wp_kses_post( $author_bio ); ?></p>
341
+							<?php if ( ! empty($author_bio)) : ?>
342
+								<p class="archive-author-bio"><?php echo wp_kses_post($author_bio); ?></p>
343 343
 							<?php endif; ?>
344 344
 						</div>
345 345
 					</div>
346 346
 				</div>
347
-				<h2><?php echo esc_html__( 'Posts', 'lsx' ); ?></h2>
347
+				<h2><?php echo esc_html__('Posts', 'lsx'); ?></h2>
348 348
 			</div>
349 349
 			<?php
350 350
 		endif;
351 351
 	}
352
-	add_action( 'lsx_content_wrap_before', 'lsx_author_extra_info', 11 );
352
+	add_action('lsx_content_wrap_before', 'lsx_author_extra_info', 11);
353 353
 endif;
354 354
 
355
-if ( ! function_exists( 'lsx_post_header' ) ) :
355
+if ( ! function_exists('lsx_post_header')) :
356 356
 	/**
357 357
 	 * Displays the post header.
358 358
 	 *
@@ -361,21 +361,21 @@  discard block
 block discarded – undo
361 361
 	 */
362 362
 	function lsx_post_header() {
363 363
 		$default_size  = 'sm';
364
-		$size          = apply_filters( 'lsx_bootstrap_column_size', $default_size );
364
+		$size          = apply_filters('lsx_bootstrap_column_size', $default_size);
365 365
 
366
-		if ( is_singular( 'post' ) ) :
366
+		if (is_singular('post')) :
367 367
 			$format = get_post_format();
368 368
 
369
-			if ( false === $format ) {
369
+			if (false === $format) {
370 370
 				$format = 'standard';
371 371
 			}
372 372
 
373
-			$format = lsx_translate_format_to_fontawesome( $format );
373
+			$format = lsx_translate_format_to_fontawesome($format);
374 374
 			?>
375
-			<div class="archive-header-wrapper banner-post-header col-<?php echo esc_attr( $size ); ?>-12">
375
+			<div class="archive-header-wrapper banner-post-header col-<?php echo esc_attr($size); ?>-12">
376 376
 				<header class="archive-header">
377 377
 					<h1 class="archive-title">
378
-						<i class="format-link fa fa-<?php echo esc_attr( $format ); ?>"></i>
378
+						<i class="format-link fa fa-<?php echo esc_attr($format); ?>"></i>
379 379
 						<span><?php the_title(); ?></span>
380 380
 					</h1>
381 381
 				</header>
@@ -383,10 +383,10 @@  discard block
 block discarded – undo
383 383
 			<?php
384 384
 		endif;
385 385
 	}
386
-	add_action( 'lsx_entry_top', 'lsx_post_header' );
386
+	add_action('lsx_entry_top', 'lsx_post_header');
387 387
 endif;
388 388
 
389
-if ( ! function_exists( 'lsx_add_viewport_meta_tag' ) ) :
389
+if ( ! function_exists('lsx_add_viewport_meta_tag')) :
390 390
 	/**
391 391
 	 * Add Viewport Meta Tag to head.
392 392
 	 *
@@ -398,10 +398,10 @@  discard block
 block discarded – undo
398 398
 		<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0">
399 399
 		<?php
400 400
 	}
401
-	add_action( 'wp_head', 'lsx_add_viewport_meta_tag' );
401
+	add_action('wp_head', 'lsx_add_viewport_meta_tag');
402 402
 endif;
403 403
 
404
-if ( ! function_exists( 'lsx_header_search_form' ) ) :
404
+if ( ! function_exists('lsx_header_search_form')) :
405 405
 	/**
406 406
 	 * Add a search form to just above the nav menu.
407 407
 	 *
@@ -409,19 +409,19 @@  discard block
 block discarded – undo
409 409
 	 * @subpackage layout
410 410
 	 */
411 411
 	function lsx_header_search_form() {
412
-		$search_form = get_theme_mod( 'lsx_header_search', false );
412
+		$search_form = get_theme_mod('lsx_header_search', false);
413 413
 
414
-		if ( false !== $search_form || is_customize_preview() ) {
415
-			get_search_form( true );
414
+		if (false !== $search_form || is_customize_preview()) {
415
+			get_search_form(true);
416 416
 		}
417 417
 	}
418
-	add_action( 'lsx_nav_before', 'lsx_header_search_form', 0 );
418
+	add_action('lsx_nav_before', 'lsx_header_search_form', 0);
419 419
 endif;
420 420
 
421 421
 // Add entry meta to single post if active
422
-if ( ! function_exists( 'lsx_add_entry_meta' ) ) :
422
+if ( ! function_exists('lsx_add_entry_meta')) :
423 423
 	function lsx_add_entry_meta() {
424
-		if ( is_single() && is_singular( 'post' ) ) {
424
+		if (is_single() && is_singular('post')) {
425 425
 			?>
426 426
 			<div class="entry-meta">
427 427
 				<?php lsx_post_meta_single_top(); ?>
@@ -429,5 +429,5 @@  discard block
 block discarded – undo
429 429
 			<?php
430 430
 		}
431 431
 	}
432
-	add_action( 'lsx_entry_top', 'lsx_add_entry_meta', 999 );
432
+	add_action('lsx_entry_top', 'lsx_add_entry_meta', 999);
433 433
 endif;
Please login to merge, or discard this patch.
includes/extras.php 1 patch
Spacing   +157 added lines, -157 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
  * @subpackage extras
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
@@ -16,10 +16,10 @@  discard block
 block discarded – undo
16 16
  * @package    lsx
17 17
  * @subpackage extras
18 18
  */
19
-add_filter( 'widget_text', 'shortcode_unautop' );
20
-add_filter( 'widget_text', 'do_shortcode' );
19
+add_filter('widget_text', 'shortcode_unautop');
20
+add_filter('widget_text', 'do_shortcode');
21 21
 
22
-if ( ! function_exists( 'lsx_kses_allowed_html' ) ) :
22
+if ( ! function_exists('lsx_kses_allowed_html')) :
23 23
 
24 24
 	/**
25 25
 	 * Enable extra attributes (srcset, sizes) in img tag.
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 	 * @package    lsx
28 28
 	 * @subpackage extras
29 29
 	 */
30
-	function lsx_kses_allowed_html( $allowedtags, $context ) {
30
+	function lsx_kses_allowed_html($allowedtags, $context) {
31 31
 		$allowedtags['img']['srcset'] = true;
32 32
 		$allowedtags['img']['sizes']  = true;
33 33
 
@@ -42,9 +42,9 @@  discard block
 block discarded – undo
42 42
 
43 43
 endif;
44 44
 
45
-add_filter( 'wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2 );
45
+add_filter('wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2);
46 46
 
47
-if ( ! function_exists( 'lsx_body_class' ) ) :
47
+if ( ! function_exists('lsx_body_class')) :
48 48
 
49 49
 	/**
50 50
 	 * Add and remove body_class() classes.
@@ -52,55 +52,55 @@  discard block
 block discarded – undo
52 52
 	 * @package    lsx
53 53
 	 * @subpackage extras
54 54
 	 */
55
-	function lsx_body_class( $classes ) {
55
+	function lsx_body_class($classes) {
56 56
 		global $post;
57 57
 
58
-		$header_layout = get_theme_mod( 'lsx_header_layout', 'inline' );
58
+		$header_layout = get_theme_mod('lsx_header_layout', 'inline');
59 59
 		$classes[]     = 'header-' . $header_layout;
60 60
 
61
-		if ( isset( $post ) ) {
61
+		if (isset($post)) {
62 62
 			$classes[] = $post->post_name;
63 63
 		}
64 64
 
65
-		if ( class_exists( 'LSX_Banners' ) || empty( apply_filters( 'lsx_banner_plugin_disable', false ) ) ) {
66
-			$post_types = array( 'page', 'post' );
67
-			$post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types );
65
+		if (class_exists('LSX_Banners') || empty(apply_filters('lsx_banner_plugin_disable', false))) {
66
+			$post_types = array('page', 'post');
67
+			$post_types = apply_filters('lsx_allowed_post_type_banners', $post_types);
68 68
 
69
-			if ( is_singular( $post_types ) && has_post_thumbnail() ) {
69
+			if (is_singular($post_types) && has_post_thumbnail()) {
70 70
 				$classes[] = 'page-has-banner';
71 71
 			}
72 72
 		}
73 73
 
74
-		if ( function_exists( 'tour_operator' ) ) {
75
-			$post_types = array( 'page', 'post' );
74
+		if (function_exists('tour_operator')) {
75
+			$post_types = array('page', 'post');
76 76
 
77 77
 			$classes[] = 'to-active';
78 78
 		}
79 79
 
80
-		if ( has_nav_menu( 'top-menu' ) || has_nav_menu( 'top-menu-left' ) ) {
80
+		if (has_nav_menu('top-menu') || has_nav_menu('top-menu-left')) {
81 81
 			$classes[] = 'has-top-menu';
82 82
 		}
83 83
 
84
-		$fixed_header = get_theme_mod( 'lsx_header_fixed', false );
84
+		$fixed_header = get_theme_mod('lsx_header_fixed', false);
85 85
 
86
-		if ( false !== $fixed_header ) {
86
+		if (false !== $fixed_header) {
87 87
 			$classes[] = 'top-menu-fixed';
88 88
 		}
89 89
 
90
-		$search_form  = get_theme_mod( 'lsx_header_search', false );
90
+		$search_form = get_theme_mod('lsx_header_search', false);
91 91
 
92
-		if ( false !== $search_form ) {
92
+		if (false !== $search_form) {
93 93
 			$classes[] = 'has-header-search';
94 94
 		}
95 95
 
96
-		$preloader_content  = get_theme_mod( 'lsx_preloader_content_status', false );
96
+		$preloader_content = get_theme_mod('lsx_preloader_content_status', false);
97 97
 
98
-		if ( false !== $preloader_content ) {
98
+		if (false !== $preloader_content) {
99 99
 			$classes[] = 'preloader-content-enable';
100 100
 		}
101 101
 
102
-		$register_enabled = get_option( 'users_can_register', false );
103
-		if ( ( $register_enabled ) && is_page( 'my-account' ) && is_singular() ) {
102
+		$register_enabled = get_option('users_can_register', false);
103
+		if (($register_enabled) && is_page('my-account') && is_singular()) {
104 104
 			$classes[] = 'register-enabled';
105 105
 		}
106 106
 
@@ -109,9 +109,9 @@  discard block
 block discarded – undo
109 109
 
110 110
 endif;
111 111
 
112
-add_filter( 'body_class', 'lsx_body_class' );
112
+add_filter('body_class', 'lsx_body_class');
113 113
 
114
-if ( ! function_exists( 'lsx_embed_wrap' ) ) :
114
+if ( ! function_exists('lsx_embed_wrap')) :
115 115
 
116 116
 	/**
117 117
 	 * Wrap embedded media as suggested by Readability.
@@ -122,8 +122,8 @@  discard block
 block discarded – undo
122 122
 	 * @link https://gist.github.com/965956
123 123
 	 * @link http://www.readability.com/publishers/guidelines#publisher
124 124
 	 */
125
-	function lsx_embed_wrap( $cache, $url, $attr = '', $post_id = '' ) {
126
-		if ( false !== strpos( $cache, '<iframe' ) ) {
125
+	function lsx_embed_wrap($cache, $url, $attr = '', $post_id = '') {
126
+		if (false !== strpos($cache, '<iframe')) {
127 127
 			return '<div class="entry-content-asset">' . $cache . '</div>';
128 128
 		}
129 129
 
@@ -132,9 +132,9 @@  discard block
 block discarded – undo
132 132
 
133 133
 endif;
134 134
 
135
-add_filter( 'embed_oembed_html', 'lsx_embed_wrap', 10, 4 );
135
+add_filter('embed_oembed_html', 'lsx_embed_wrap', 10, 4);
136 136
 
137
-if ( ! function_exists( 'lsx_remove_self_closing_tags' ) ) :
137
+if ( ! function_exists('lsx_remove_self_closing_tags')) :
138 138
 
139 139
 	/**
140 140
 	 * Remove unnecessary self-closing tags.
@@ -142,17 +142,17 @@  discard block
 block discarded – undo
142 142
 	 * @package    lsx
143 143
 	 * @subpackage extras
144 144
 	 */
145
-	function lsx_remove_self_closing_tags( $input ) {
146
-		return str_replace( ' />', '>', $input );
145
+	function lsx_remove_self_closing_tags($input) {
146
+		return str_replace(' />', '>', $input);
147 147
 	}
148 148
 
149 149
 endif;
150 150
 
151
-add_filter( 'get_avatar',          'lsx_remove_self_closing_tags' ); // <img />
152
-add_filter( 'comment_id_fields',   'lsx_remove_self_closing_tags' ); // <input />
153
-add_filter( 'post_thumbnail_html', 'lsx_remove_self_closing_tags' ); // <img />
151
+add_filter('get_avatar', 'lsx_remove_self_closing_tags'); // <img />
152
+add_filter('comment_id_fields', 'lsx_remove_self_closing_tags'); // <input />
153
+add_filter('post_thumbnail_html', 'lsx_remove_self_closing_tags'); // <img />
154 154
 
155
-if ( ! function_exists( 'lsx_is_element_empty' ) ) :
155
+if ( ! function_exists('lsx_is_element_empty')) :
156 156
 
157 157
 	/**
158 158
 	 * Checks if a Nav $element is empty or not.
@@ -160,14 +160,14 @@  discard block
 block discarded – undo
160 160
 	 * @package    lsx
161 161
 	 * @subpackage extras
162 162
 	 */
163
-	function lsx_is_element_empty( $element ) {
164
-		$element = trim( $element );
165
-		return empty( $element ) ? false : true;
163
+	function lsx_is_element_empty($element) {
164
+		$element = trim($element);
165
+		return empty($element) ? false : true;
166 166
 	}
167 167
 
168 168
 endif;
169 169
 
170
-if ( ! function_exists( 'lsx_get_thumbnail' ) ) :
170
+if ( ! function_exists('lsx_get_thumbnail')) :
171 171
 
172 172
 	/**
173 173
 	 * return the responsive images.
@@ -175,58 +175,58 @@  discard block
 block discarded – undo
175 175
 	 * @package    lsx
176 176
 	 * @subpackage extras
177 177
 	 */
178
-	function lsx_get_thumbnail( $size, $image_src = false ) {
179
-		if ( false === $image_src ) {
178
+	function lsx_get_thumbnail($size, $image_src = false) {
179
+		if (false === $image_src) {
180 180
 			$post_id           = get_the_ID();
181
-			$post_thumbnail_id = get_post_thumbnail_id( $post_id );
182
-		} elseif ( false !== $image_src ) {
183
-			if ( is_numeric( $image_src ) ) {
181
+			$post_thumbnail_id = get_post_thumbnail_id($post_id);
182
+		} elseif (false !== $image_src) {
183
+			if (is_numeric($image_src)) {
184 184
 				$post_thumbnail_id = $image_src;
185 185
 			} else {
186
-				$post_thumbnail_id = lsx_get_attachment_id_from_src( $image_src );
186
+				$post_thumbnail_id = lsx_get_attachment_id_from_src($image_src);
187 187
 			}
188 188
 		}
189 189
 
190
-		$size = apply_filters( 'lsx_thumbnail_size', $size );
190
+		$size = apply_filters('lsx_thumbnail_size', $size);
191 191
 		$img       = '';
192 192
 		$lazy_img  = '';
193 193
 		$image_url = '';
194 194
 
195
-		if ( 'lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size ) {
195
+		if ('lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size) {
196 196
 			$srcset = false;
197
-			$temp_img    = wp_get_attachment_image_src( $post_thumbnail_id, $size );
198
-			if ( ! empty( $temp_img ) ) {
199
-				$img    = $temp_img[0];
197
+			$temp_img = wp_get_attachment_image_src($post_thumbnail_id, $size);
198
+			if ( ! empty($temp_img)) {
199
+				$img = $temp_img[0];
200 200
 			}
201 201
 		} else {
202 202
 			$srcset = true;
203
-			$img = wp_get_attachment_image_srcset( $post_thumbnail_id, $size );
203
+			$img = wp_get_attachment_image_srcset($post_thumbnail_id, $size);
204 204
 
205
-			$temp_lazy = wp_get_attachment_image_src( $post_thumbnail_id, $size );
206
-			if ( ! empty( $temp_lazy ) ) {
205
+			$temp_lazy = wp_get_attachment_image_src($post_thumbnail_id, $size);
206
+			if ( ! empty($temp_lazy)) {
207 207
 				$lazy_img = $temp_lazy[0];
208 208
 			}
209 209
 
210
-			if ( empty( $img ) ) {
210
+			if (empty($img)) {
211 211
 				$srcset = false;
212
-				if ( ! empty( $lazy_img ) ) {
212
+				if ( ! empty($lazy_img)) {
213 213
 					$img = $lazy_img;
214 214
 				}
215 215
 			}
216 216
 		}
217 217
 
218
-		if ( '' !== $img ) {
218
+		if ('' !== $img) {
219 219
 			$image_url = $img;
220
-			$img = '<img alt="' . the_title_attribute( 'echo=0' ) . '" class="attachment-responsive wp-post-image lsx-responsive" ';
221
-			if ( $srcset ) {
222
-				$img .= 'srcset="' . esc_attr( $image_url ) . '" ';
220
+			$img = '<img alt="' . the_title_attribute('echo=0') . '" class="attachment-responsive wp-post-image lsx-responsive" ';
221
+			if ($srcset) {
222
+				$img .= 'srcset="' . esc_attr($image_url) . '" ';
223 223
 			} else {
224
-				$img .= 'src="' . esc_url( $image_url ) . '" ';
224
+				$img .= 'src="' . esc_url($image_url) . '" ';
225 225
 			}
226 226
 			$img .= '/>';
227 227
 
228
-			$img = apply_filters( 'lsx_lazyload_filter_images', $img );
229
-			$img = apply_filters( 'lsx_lazyload_slider_images', $img, $post_thumbnail_id, $size, $srcset, $image_url );
228
+			$img = apply_filters('lsx_lazyload_filter_images', $img);
229
+			$img = apply_filters('lsx_lazyload_slider_images', $img, $post_thumbnail_id, $size, $srcset, $image_url);
230 230
 		}
231 231
 
232 232
 		return $img;
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
 
235 235
 endif;
236 236
 
237
-if ( ! function_exists( 'lsx_thumbnail' ) ) :
237
+if ( ! function_exists('lsx_thumbnail')) :
238 238
 
239 239
 	/**
240 240
 	 * Output the Resonsive Images.
@@ -242,13 +242,13 @@  discard block
 block discarded – undo
242 242
 	 * @package    lsx
243 243
 	 * @subpackage extras
244 244
 	 */
245
-	function lsx_thumbnail( $size = 'thumbnail', $image_src = false ) {
246
-		echo wp_kses_post( lsx_get_thumbnail( $size, $image_src ) );
245
+	function lsx_thumbnail($size = 'thumbnail', $image_src = false) {
246
+		echo wp_kses_post(lsx_get_thumbnail($size, $image_src));
247 247
 	}
248 248
 
249 249
 endif;
250 250
 
251
-if ( ! function_exists( 'lsx_get_attachment_id_from_src' ) ) :
251
+if ( ! function_exists('lsx_get_attachment_id_from_src')) :
252 252
 
253 253
 	/**
254 254
 	 * Gets the attachments ID from the src.
@@ -256,13 +256,13 @@  discard block
 block discarded – undo
256 256
 	 * @package    lsx
257 257
 	 * @subpackage extras
258 258
 	 */
259
-	function lsx_get_attachment_id_from_src( $image_src ) {
260
-		$post_id = wp_cache_get( $image_src, 'lsx_get_attachment_id_from_src' );
259
+	function lsx_get_attachment_id_from_src($image_src) {
260
+		$post_id = wp_cache_get($image_src, 'lsx_get_attachment_id_from_src');
261 261
 
262
-		if ( false === $post_id ) {
262
+		if (false === $post_id) {
263 263
 			global $wpdb;
264
-			$post_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src ) );
265
-			wp_cache_set( $image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600 );
264
+			$post_id = $wpdb->get_var($wpdb->prepare("SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src));
265
+			wp_cache_set($image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600);
266 266
 		}
267 267
 
268 268
 		return $post_id;
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
 
271 271
 endif;
272 272
 
273
-if ( ! function_exists( 'lsx_page_banner' ) ) :
273
+if ( ! function_exists('lsx_page_banner')) :
274 274
 
275 275
 	/**
276 276
 	 * Add Featured Image as Banner on Single Pages.
@@ -279,30 +279,30 @@  discard block
 block discarded – undo
279 279
 	 * @subpackage extras
280 280
 	 */
281 281
 	function lsx_page_banner() {
282
-		if ( true === apply_filters( 'lsx_page_banner_disable', false ) ) {
282
+		if (true === apply_filters('lsx_page_banner_disable', false)) {
283 283
 			return;
284 284
 		}
285 285
 
286
-		$post_types = array( 'page', 'post' );
287
-		$post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types );
286
+		$post_types = array('page', 'post');
287
+		$post_types = apply_filters('lsx_allowed_post_type_banners', $post_types);
288 288
 
289
-		if ( is_singular( $post_types ) && has_post_thumbnail() ) :
289
+		if (is_singular($post_types) && has_post_thumbnail()) :
290 290
 			$bg_image = '';
291 291
 
292
-			if ( has_post_thumbnail() ) {
293
-				$temp_bg_image = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'full' );
294
-				if ( ! empty( $temp_bg_image ) ) {
292
+			if (has_post_thumbnail()) {
293
+				$temp_bg_image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), 'full');
294
+				if ( ! empty($temp_bg_image)) {
295 295
 					$bg_image = $temp_bg_image[0];
296 296
 				}
297 297
 			}
298 298
 
299
-			if ( '' !== $bg_image ) :
299
+			if ('' !== $bg_image) :
300 300
 				?>
301 301
 					<div class="page-banner-wrap">
302 302
 						<div class="page-banner">
303 303
 							<?php lsx_banner_inner_top(); ?>
304 304
 
305
-							<div class="page-banner-image" style="background-image:url(<?php echo esc_attr( $bg_image ); ?>);"></div>
305
+							<div class="page-banner-image" style="background-image:url(<?php echo esc_attr($bg_image); ?>);"></div>
306 306
 
307 307
 							<div class="container">
308 308
 								<header class="page-header">
@@ -321,11 +321,11 @@  discard block
 block discarded – undo
321 321
 
322 322
 endif;
323 323
 
324
-add_filter( 'lsx_banner_disable', 'lsx_disable_banner_for_blocks' );
325
-add_filter( 'lsx_global_header_disable', 'lsx_disable_banner_for_blocks' );
324
+add_filter('lsx_banner_disable', 'lsx_disable_banner_for_blocks');
325
+add_filter('lsx_global_header_disable', 'lsx_disable_banner_for_blocks');
326 326
 
327 327
 
328
-if ( ! function_exists( 'lsx_disable_banner_for_blocks' ) ) :
328
+if ( ! function_exists('lsx_disable_banner_for_blocks')) :
329 329
 
330 330
 	/**
331 331
 	 * Disable the Banner if the page is using Blocks
@@ -336,15 +336,15 @@  discard block
 block discarded – undo
336 336
 	 * @param  $disable boolean
337 337
 	 * @return boolean
338 338
 	 */
339
-	function lsx_disable_banner_for_blocks( $disable ) {
339
+	function lsx_disable_banner_for_blocks($disable) {
340 340
 		$queried_object = get_queried_object_id();
341
-		$show_on_front  = get_option( 'show_on_front' );
341
+		$show_on_front  = get_option('show_on_front');
342 342
 
343
-		if ( 'page' === $show_on_front && (int) get_option( 'page_for_posts' ) === $queried_object ) {
343
+		if ('page' === $show_on_front && (int) get_option('page_for_posts') === $queried_object) {
344 344
 			return $disable;
345 345
 		}
346 346
 
347
-		if ( function_exists( 'has_blocks' ) && has_blocks() && ( ! is_archive() ) ) {
347
+		if (function_exists('has_blocks') && has_blocks() && ( ! is_archive())) {
348 348
 			$disable = true;
349 349
 		}
350 350
 		return $disable;
@@ -352,9 +352,9 @@  discard block
 block discarded – undo
352 352
 
353 353
 endif;
354 354
 
355
-add_action( 'lsx_header_after', 'lsx_page_banner' );
355
+add_action('lsx_header_after', 'lsx_page_banner');
356 356
 
357
-if ( ! function_exists( 'lsx_form_submit_button' ) ) :
357
+if ( ! function_exists('lsx_form_submit_button')) :
358 358
 
359 359
 	/**
360 360
 	 * filter the Gravity Forms button type.
@@ -366,15 +366,15 @@  discard block
 block discarded – undo
366 366
 	 * @param  $form   Object
367 367
 	 * @return String
368 368
 	 */
369
-	function lsx_form_submit_button( $button, $form ) {
369
+	function lsx_form_submit_button($button, $form) {
370 370
 		return "<button class='btn btn-primary' id='gform_submit_button_{$form["id"]}'><span>Submit</span></button>";
371 371
 	}
372 372
 
373 373
 endif;
374 374
 
375
-add_filter( 'gform_submit_button', 'lsx_form_submit_button', 10, 2 );
375
+add_filter('gform_submit_button', 'lsx_form_submit_button', 10, 2);
376 376
 
377
-if ( ! function_exists( 'lsx_excerpt_more' ) ) :
377
+if ( ! function_exists('lsx_excerpt_more')) :
378 378
 
379 379
 	/**
380 380
 	 * Replaces the excerpt "more" text by a link.
@@ -382,15 +382,15 @@  discard block
 block discarded – undo
382 382
 	 * @package    lsx
383 383
 	 * @subpackage extras
384 384
 	 */
385
-	function lsx_excerpt_more( $more ) {
385
+	function lsx_excerpt_more($more) {
386 386
 		return '...';
387 387
 	}
388 388
 
389 389
 endif;
390 390
 
391
-add_filter( 'excerpt_more', 'lsx_excerpt_more' );
391
+add_filter('excerpt_more', 'lsx_excerpt_more');
392 392
 
393
-if ( ! function_exists( 'lsx_the_excerpt_filter' ) ) :
393
+if ( ! function_exists('lsx_the_excerpt_filter')) :
394 394
 
395 395
 	/**
396 396
 	 * Add a continue reading link to the excerpt.
@@ -398,7 +398,7 @@  discard block
 block discarded – undo
398 398
 	 * @package    lsx
399 399
 	 * @subpackage extras
400 400
 	 */
401
-	function lsx_the_excerpt_filter( $excerpt ) {
401
+	function lsx_the_excerpt_filter($excerpt) {
402 402
 
403 403
 		$post_formats = array(
404 404
 			'aside'   => 'aside',
@@ -411,23 +411,23 @@  discard block
 block discarded – undo
411 411
 			'audio'   => 'audio',
412 412
 		);
413 413
 
414
-		$show_full_content = has_post_format( apply_filters( 'lsx_the_excerpt_filter_post_types', $post_formats ) );
414
+		$show_full_content = has_post_format(apply_filters('lsx_the_excerpt_filter_post_types', $post_formats));
415 415
 
416
-		if ( ! $show_full_content ) {
417
-			if ( '' !== $excerpt && ! stristr( $excerpt, 'moretag' ) ) {
418
-				$pagination = wp_link_pages( array(
416
+		if ( ! $show_full_content) {
417
+			if ('' !== $excerpt && ! stristr($excerpt, 'moretag')) {
418
+				$pagination = wp_link_pages(array(
419 419
 					'before'      => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
420 420
 					'after'       => '</div></div>',
421 421
 					'link_before' => '<span>',
422 422
 					'link_after'  => '</span>',
423 423
 					'echo'        => 0,
424
-				) );
424
+				));
425 425
 
426
-				if ( ! empty( $pagination ) ) {
426
+				if ( ! empty($pagination)) {
427 427
 					$excerpt .= $pagination;
428 428
 				} else {
429
-					$excerpt_more = '<p><a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'Read More', 'lsx' ) . '</a></p>';
430
-					$excerpt .= apply_filters( 'excerpt_more_p', $excerpt_more );
429
+					$excerpt_more = '<p><a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('Read More', 'lsx') . '</a></p>';
430
+					$excerpt .= apply_filters('excerpt_more_p', $excerpt_more);
431 431
 				}
432 432
 			}
433 433
 		}
@@ -437,9 +437,9 @@  discard block
 block discarded – undo
437 437
 
438 438
 endif;
439 439
 
440
-add_filter( 'the_excerpt', 'lsx_the_excerpt_filter' , 1 , 20 );
440
+add_filter('the_excerpt', 'lsx_the_excerpt_filter', 1, 20);
441 441
 
442
-if ( ! function_exists( 'lsx_full_width_widget_classes' ) ) :
442
+if ( ! function_exists('lsx_full_width_widget_classes')) :
443 443
 
444 444
 	/**
445 445
 	 * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget.
@@ -447,8 +447,8 @@  discard block
 block discarded – undo
447 447
 	 * @package    lsx
448 448
 	 * @subpackage extras
449 449
 	 */
450
-	function lsx_full_width_widget_classes( $params ) {
451
-		if ( is_admin() ) {
450
+	function lsx_full_width_widget_classes($params) {
451
+		if (is_admin()) {
452 452
 			return $params;
453 453
 		}
454 454
 
@@ -457,9 +457,9 @@  discard block
 block discarded – undo
457 457
 		$widget_id   = $params[0]['widget_id'];
458 458
 		$widget_name = $params[0]['widget_name'];
459 459
 
460
-		if ( 'Text' === $widget_name ) {
461
-			$wp_registered_widgets[ $widget_id ]['original_callback'] = $wp_registered_widgets[ $widget_id ]['callback'];
462
-			$wp_registered_widgets[ $widget_id ]['callback'] = 'lsx_full_width_widget_custom_callback';
460
+		if ('Text' === $widget_name) {
461
+			$wp_registered_widgets[$widget_id]['original_callback'] = $wp_registered_widgets[$widget_id]['callback'];
462
+			$wp_registered_widgets[$widget_id]['callback'] = 'lsx_full_width_widget_custom_callback';
463 463
 		}
464 464
 
465 465
 		return $params;
@@ -467,9 +467,9 @@  discard block
 block discarded – undo
467 467
 
468 468
 endif;
469 469
 
470
-add_filter( 'dynamic_sidebar_params', 'lsx_full_width_widget_classes' );
470
+add_filter('dynamic_sidebar_params', 'lsx_full_width_widget_classes');
471 471
 
472
-if ( ! function_exists( 'lsx_full_width_widget_custom_callback' ) ) :
472
+if ( ! function_exists('lsx_full_width_widget_custom_callback')) :
473 473
 
474 474
 	/**
475 475
 	 * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget.
@@ -483,25 +483,25 @@  discard block
 block discarded – undo
483 483
 		$original_callback_params = func_get_args();
484 484
 		$widget_id = $original_callback_params[0]['widget_id'];
485 485
 
486
-		$original_callback = $wp_registered_widgets[ $widget_id ]['original_callback'];
487
-		$wp_registered_widgets[ $widget_id ]['callback'] = $original_callback;
486
+		$original_callback = $wp_registered_widgets[$widget_id]['original_callback'];
487
+		$wp_registered_widgets[$widget_id]['callback'] = $original_callback;
488 488
 
489
-		$widget_id_base = $wp_registered_widgets[ $widget_id ]['callback'][0]->id_base;
489
+		$widget_id_base = $wp_registered_widgets[$widget_id]['callback'][0]->id_base;
490 490
 
491 491
 		$widget_classname = '';
492 492
 
493
-		if ( is_callable( $original_callback ) ) {
493
+		if (is_callable($original_callback)) {
494 494
 			ob_start();
495
-			call_user_func_array( $original_callback, $original_callback_params );
495
+			call_user_func_array($original_callback, $original_callback_params);
496 496
 			$widget_output = ob_get_clean();
497 497
 
498
-			echo wp_kses_post( apply_filters( 'lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id ) );
498
+			echo wp_kses_post(apply_filters('lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id));
499 499
 		}
500 500
 	}
501 501
 
502 502
 endif;
503 503
 
504
-if ( ! function_exists( 'lsx_full_width_widget_output' ) ) :
504
+if ( ! function_exists('lsx_full_width_widget_output')) :
505 505
 
506 506
 	/**
507 507
 	 * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget.
@@ -509,12 +509,12 @@  discard block
 block discarded – undo
509 509
 	 * @package    lsx
510 510
 	 * @subpackage extras
511 511
 	 */
512
-	function lsx_full_width_widget_output( $widget_output, $widget_id_base, $widget_id ) {
513
-		if ( 'text' === $widget_id_base ) {
514
-			if ( false !== strpos( $widget_output, '<div class="lsx-full-width-alt">' ) ) {
515
-				$widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output );
516
-			} elseif ( false !== strpos( $widget_output, '<div class="lsx-full-width">' ) ) {
517
-				$widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output );
512
+	function lsx_full_width_widget_output($widget_output, $widget_id_base, $widget_id) {
513
+		if ('text' === $widget_id_base) {
514
+			if (false !== strpos($widget_output, '<div class="lsx-full-width-alt">')) {
515
+				$widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output);
516
+			} elseif (false !== strpos($widget_output, '<div class="lsx-full-width">')) {
517
+				$widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output);
518 518
 			}
519 519
 		}
520 520
 
@@ -523,13 +523,13 @@  discard block
 block discarded – undo
523 523
 
524 524
 endif;
525 525
 
526
-add_filter( 'lsx_widget_output', 'lsx_full_width_widget_output', 10, 3 );
526
+add_filter('lsx_widget_output', 'lsx_full_width_widget_output', 10, 3);
527 527
 
528 528
 /**
529 529
  * Check if the content has a restricted post format that needs to show a full excerpt.
530 530
  */
531 531
 function lsx_post_format_force_content_on_list() {
532
-	$post_formats = apply_filters( 'lsx_post_format_force_content_on_list',
532
+	$post_formats = apply_filters('lsx_post_format_force_content_on_list',
533 533
 		array(
534 534
 				'video' => 'video',
535 535
 				'audio' => 'audio',
@@ -538,7 +538,7 @@  discard block
 block discarded – undo
538 538
 			)
539 539
 	);
540 540
 	$return = false;
541
-	if ( ! has_post_format( $post_formats ) ) {
541
+	if ( ! has_post_format($post_formats)) {
542 542
 		$return = true;
543 543
 	}
544 544
 	return $return;
@@ -547,67 +547,67 @@  discard block
 block discarded – undo
547 547
 /**
548 548
  * Remove the Hentry Class Every
549 549
  */
550
-function lsx_remove_hentry( $classes ) {
551
-	if ( 'post' !== get_post_type() ) {
552
-		$classes = array_diff( $classes, array( 'hentry' ) );
550
+function lsx_remove_hentry($classes) {
551
+	if ('post' !== get_post_type()) {
552
+		$classes = array_diff($classes, array('hentry'));
553 553
 	}
554 554
 	return $classes;
555 555
 }
556
-add_filter( 'post_class','lsx_remove_hentry' );
556
+add_filter('post_class', 'lsx_remove_hentry');
557 557
 
558 558
 /**
559 559
  * Strip Excerpts.
560 560
  *
561 561
  */
562
-function lsx_strip_excerpt( $content ) {
563
-	if ( is_search() || is_archive() || ( is_blog_installed() && ! is_single() && ! is_page() ) ) {
564
-		$content = strip_shortcodes( $content );
565
-		$content = str_replace( ']]>', ']]&gt;', $content );
566
-		$content = strip_tags( $content );
562
+function lsx_strip_excerpt($content) {
563
+	if (is_search() || is_archive() || (is_blog_installed() && ! is_single() && ! is_page())) {
564
+		$content = strip_shortcodes($content);
565
+		$content = str_replace(']]>', ']]&gt;', $content);
566
+		$content = strip_tags($content);
567 567
 	}
568 568
 	return $content;
569 569
 }
570
-add_filter( 'the_content', 'lsx_strip_excerpt' );
570
+add_filter('the_content', 'lsx_strip_excerpt');
571 571
 
572 572
 /**
573 573
  * Disable Gutenberg for LSX Custom Post Tpes.
574 574
  *
575 575
  */
576
-function lsx_disable_gutenberg_product_type( $is_enabled, $post_type ) {
577
-	if ( 'testimonial' === $post_type || 'team' === $post_type || 'project' === $post_type ) {
576
+function lsx_disable_gutenberg_product_type($is_enabled, $post_type) {
577
+	if ('testimonial' === $post_type || 'team' === $post_type || 'project' === $post_type) {
578 578
 		return false;
579 579
 	}
580 580
 
581 581
 	return $is_enabled;
582 582
 }
583
-add_filter( 'gutenberg_add_edit_link_for_post_type', 'lsx_disable_gutenberg_product_type', 10, 2 );
583
+add_filter('gutenberg_add_edit_link_for_post_type', 'lsx_disable_gutenberg_product_type', 10, 2);
584 584
 
585 585
 /**
586 586
  * Add the "Blog" link to the breadcrumbs
587 587
  * @param $crumbs
588 588
  * @return array
589 589
  */
590
-function lsx_breadcrumbs_blog_link( $crumbs ) {
590
+function lsx_breadcrumbs_blog_link($crumbs) {
591 591
 
592
-	$show_on_front = get_option( 'show_on_front' );
592
+	$show_on_front = get_option('show_on_front');
593 593
 
594
-	if ( 'page' === $show_on_front && ( is_category() || is_tag() ) ) {
594
+	if ('page' === $show_on_front && (is_category() || is_tag())) {
595 595
 
596
-		$blog_page = get_option( 'page_for_posts' );
597
-		if ( false !== $blog_page && '' !== $blog_page ) {
596
+		$blog_page = get_option('page_for_posts');
597
+		if (false !== $blog_page && '' !== $blog_page) {
598 598
 
599 599
 			$new_crumbs = array();
600 600
 			$new_crumbs[0] = $crumbs[0];
601 601
 
602
-			if ( function_exists( 'woocommerce_breadcrumb' ) ) {
602
+			if (function_exists('woocommerce_breadcrumb')) {
603 603
 				$new_crumbs[1] = array(
604
-					0	=> get_the_title( $blog_page ),
605
-					1	=> get_permalink( $blog_page ),
604
+					0	=> get_the_title($blog_page),
605
+					1	=> get_permalink($blog_page),
606 606
 				);
607 607
 			} else {
608 608
 				$new_crumbs[1] = array(
609
-					'text'	=> get_the_title( $blog_page ),
610
-					'url'	=> get_permalink( $blog_page ),
609
+					'text'	=> get_the_title($blog_page),
610
+					'url'	=> get_permalink($blog_page),
611 611
 				);
612 612
 			}
613 613
 			$new_crumbs[2] = $crumbs[1];
@@ -617,5 +617,5 @@  discard block
 block discarded – undo
617 617
 	}
618 618
 	return $crumbs;
619 619
 }
620
-add_filter( 'wpseo_breadcrumb_links', 'lsx_breadcrumbs_blog_link', 30, 1 );
621
-add_filter( 'woocommerce_get_breadcrumb', 'lsx_breadcrumbs_blog_link', 30, 1 );
620
+add_filter('wpseo_breadcrumb_links', 'lsx_breadcrumbs_blog_link', 30, 1);
621
+add_filter('woocommerce_get_breadcrumb', 'lsx_breadcrumbs_blog_link', 30, 1);
Please login to merge, or discard this patch.
includes/sensei/class-lsx-sensei.php 1 patch
Spacing   +160 added lines, -160 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,57 +50,57 @@  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_results_breadcrumb_filter' ), 40, 1 );
100
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_results_breadcrumb_filter' ), 40, 1 );
99
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_results_breadcrumb_filter'), 40, 1);
100
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_results_breadcrumb_filter'), 40, 1);
101 101
 
102
-			add_action( 'sensei_archive_before_message_loop', array( $this, 'lsx_sensei_back_message_button' ) );
103
-			add_action( 'sensei_content_message_after', array( $this, 'lsx_sensei_view_message_button' ) );
102
+			add_action('sensei_archive_before_message_loop', array($this, 'lsx_sensei_back_message_button'));
103
+			add_action('sensei_content_message_after', array($this, 'lsx_sensei_view_message_button'));
104 104
 
105 105
 		}
106 106
 
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 		 */
113 113
 		public static function get_instance() {
114 114
 			// If the single instance hasn't been set, set it now.
115
-			if ( null === self::$instance ) {
115
+			if (null === self::$instance) {
116 116
 				self::$instance = new self;
117 117
 			}
118 118
 			return self::$instance;
@@ -125,8 +125,8 @@  discard block
 block discarded – undo
125 125
 		 * @subpackage sensei
126 126
 		 */
127 127
 		public function lsx_sensei_scripts_add_styles() {
128
-			wp_enqueue_style( 'sensei-lsx', get_template_directory_uri() . '/assets/css/sensei/sensei.css', array( 'lsx_main' ), LSX_VERSION );
129
-			wp_style_add_data( 'sensei-lsx', 'rtl', 'replace' );
128
+			wp_enqueue_style('sensei-lsx', get_template_directory_uri() . '/assets/css/sensei/sensei.css', array('lsx_main'), LSX_VERSION);
129
+			wp_style_add_data('sensei-lsx', 'rtl', 'replace');
130 130
 		}
131 131
 
132 132
 		/**
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 		 */
138 138
 		public function lsx_sensei_theme_wrapper_start() {
139 139
 			lsx_content_wrap_before();
140
-			echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">';
140
+			echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">';
141 141
 			lsx_content_before();
142 142
 			echo '<main id="main" class="site-main" role="main">';
143 143
 			lsx_content_top();
@@ -163,18 +163,18 @@  discard block
 block discarded – undo
163 163
 		 * @param [type] $title
164 164
 		 * @return void
165 165
 		 */
166
-		public function lsx_sensei_modify_archive_title( $title ) {
167
-			if ( is_archive() && is_post_type_archive( 'course' ) ) {
168
-				$title = __( 'Courses', 'lsx' );
166
+		public function lsx_sensei_modify_archive_title($title) {
167
+			if (is_archive() && is_post_type_archive('course')) {
168
+				$title = __('Courses', 'lsx');
169 169
 			}
170
-			if ( is_archive() && is_post_type_archive( 'sensei_message' ) ) {
171
-				$title = __( 'Messages', 'lsx' );
170
+			if (is_archive() && is_post_type_archive('sensei_message')) {
171
+				$title = __('Messages', 'lsx');
172 172
 			}
173
-			if ( is_archive() && is_post_type_archive( 'lesson' ) ) {
174
-				$title = __( 'Lessons', 'lsx' );
173
+			if (is_archive() && is_post_type_archive('lesson')) {
174
+				$title = __('Lessons', 'lsx');
175 175
 			}
176
-			if ( is_archive() && is_tax() ) {
177
-				$title = single_term_title( '', false );
176
+			if (is_archive() && is_tax()) {
177
+				$title = single_term_title('', false);
178 178
 			}
179 179
 			return $title;
180 180
 		}
@@ -185,8 +185,8 @@  discard block
 block discarded – undo
185 185
 		 * @package    lsx
186 186
 		 * @subpackage sensei
187 187
 		 */
188
-		public function lsx_sensei_disable_lsx_banner( $disabled ) {
189
-			if ( is_sensei() ) {
188
+		public function lsx_sensei_disable_lsx_banner($disabled) {
189
+			if (is_sensei()) {
190 190
 				$disabled = true;
191 191
 			}
192 192
 
@@ -199,8 +199,8 @@  discard block
 block discarded – undo
199 199
 		 * @package    lsx
200 200
 		 * @subpackage sensei
201 201
 		 */
202
-		public function lsx_sensei_archive_title( $html ) {
203
-			$html = preg_replace( '/<header class="archive-header"><h1>([^<]+)<\/h1><\/header>/i', '<h1>$1</h1>', $html );
202
+		public function lsx_sensei_archive_title($html) {
203
+			$html = preg_replace('/<header class="archive-header"><h1>([^<]+)<\/h1><\/header>/i', '<h1>$1</h1>', $html);
204 204
 			return $html;
205 205
 		}
206 206
 
@@ -210,8 +210,8 @@  discard block
 block discarded – undo
210 210
 		 * @package    lsx
211 211
 		 * @subpackage sensei
212 212
 		 */
213
-		public function lsx_sensei_category_title( $html ) {
214
-			$html = str_replace( 'h2', 'h1', $html );
213
+		public function lsx_sensei_category_title($html) {
214
+			$html = str_replace('h2', 'h1', $html);
215 215
 			return $html;
216 216
 		}
217 217
 
@@ -221,18 +221,18 @@  discard block
 block discarded – undo
221 221
 		 * @package    lsx
222 222
 		 * @subpackage sensei
223 223
 		 */
224
-		public function lsx_sensei_add_buttons( $course_id ) {
224
+		public function lsx_sensei_add_buttons($course_id) {
225 225
 			global $post, $current_user;
226
-			$is_user_taking_course = Sensei_Utils::user_started_course( $post->ID, $current_user->ID );
227
-			if ( class_exists( 'Sensei_WC' ) ) {
228
-				$course_purchasable = Sensei_WC::is_course_purchasable( $post->ID );
226
+			$is_user_taking_course = Sensei_Utils::user_started_course($post->ID, $current_user->ID);
227
+			if (class_exists('Sensei_WC')) {
228
+				$course_purchasable = Sensei_WC::is_course_purchasable($post->ID);
229 229
 			}
230 230
 
231 231
 			?>
232 232
 				<section class="entry-actions">
233 233
 					<?php
234
-					if ( ( ! $is_user_taking_course ) && $course_purchasable ) {
235
-						Sensei_WC::the_add_to_cart_button_html( $post->ID );
234
+					if (( ! $is_user_taking_course) && $course_purchasable) {
235
+						Sensei_WC::the_add_to_cart_button_html($post->ID);
236 236
 					}
237 237
 					?>
238 238
 				</section>
@@ -245,8 +245,8 @@  discard block
 block discarded – undo
245 245
 		 * @package    lsx
246 246
 		 * @subpackage sensei
247 247
 		 */
248
-		public function lsx_sensei_add_to_cart_text( $text ) {
249
-			$text = esc_html__( 'Add to cart', 'lsx' );
248
+		public function lsx_sensei_add_to_cart_text($text) {
249
+			$text = esc_html__('Add to cart', 'lsx');
250 250
 			return $text;
251 251
 		}
252 252
 
@@ -256,46 +256,46 @@  discard block
 block discarded – undo
256 256
 		 * @package    lsx
257 257
 		 * @subpackage layout
258 258
 		 */
259
-		public function lsx_sensei_results_header( $user ) {
259
+		public function lsx_sensei_results_header($user) {
260 260
 
261 261
 			$default_size = 'sm';
262
-			$size         = apply_filters( 'lsx_bootstrap_column_size', $default_size );
262
+			$size         = apply_filters('lsx_bootstrap_column_size', $default_size);
263 263
 			global $wp_query;
264
-			if ( isset( $wp_query->query_vars['course_results'] ) ) {
264
+			if (isset($wp_query->query_vars['course_results'])) {
265 265
 				$is_results = $wp_query->query_vars['course_results'];
266 266
 			} else {
267 267
 				$is_results = false;
268 268
 			}
269
-			if ( isset( $wp_query->query_vars['learner_profile'] ) ) {
269
+			if (isset($wp_query->query_vars['learner_profile'])) {
270 270
 				$is_profile = $wp_query->query_vars['learner_profile'];
271 271
 			} else {
272 272
 				$is_profile = false;
273 273
 			}
274 274
 
275
-			if ( is_sticky() && $is_results ) :
276
-				$course_for_results = get_page_by_path( $is_results, OBJECT, 'course' );
275
+			if (is_sticky() && $is_results) :
276
+				$course_for_results = get_page_by_path($is_results, OBJECT, 'course');
277 277
 
278
-					$course_title = esc_html( $course_for_results->post_title );
278
+					$course_title = esc_html($course_for_results->post_title);
279 279
 				?>
280
-				<div class="archive-header-wrapper banner-single col-<?php echo esc_attr( $size ); ?>-12">
280
+				<div class="archive-header-wrapper banner-single col-<?php echo esc_attr($size); ?>-12">
281 281
 					<?php lsx_global_header_inner_bottom(); ?>
282 282
 					<header class="archive-header">
283
-						<h1 class="archive-title"><?php echo wp_kses_post( $course_title ); ?></h1>
283
+						<h1 class="archive-title"><?php echo wp_kses_post($course_title); ?></h1>
284 284
 					</header>
285 285
 
286 286
 				</div>
287 287
 				<?php
288 288
 			endif;
289 289
 
290
-			if ( is_sticky() && $is_profile ) :
290
+			if (is_sticky() && $is_profile) :
291 291
 				$query_var    = $wp_query->query_vars['learner_profile'];
292
-				$learner_user = Sensei_Learner::find_by_query_var( $query_var );
292
+				$learner_user = Sensei_Learner::find_by_query_var($query_var);
293 293
 				$learner_name = $learner_user->display_name;
294 294
 				?>
295
-				<div class="archive-header-wrapper banner-single col-<?php echo esc_attr( $size ); ?>-12">
295
+				<div class="archive-header-wrapper banner-single col-<?php echo esc_attr($size); ?>-12">
296 296
 					<?php lsx_global_header_inner_bottom(); ?>
297 297
 					<header class="archive-header">
298
-						<h1 class="archive-title"><?php echo esc_html( $learner_name ); ?></h1>
298
+						<h1 class="archive-title"><?php echo esc_html($learner_name); ?></h1>
299 299
 					</header>
300 300
 
301 301
 				</div>
@@ -308,21 +308,21 @@  discard block
 block discarded – undo
308 308
 		 * @param $crumbs
309 309
 		 * @return array
310 310
 		 */
311
-		public function lsx_sensei_course_breadcrumb_filter( $crumbs, $id = 0 ) {
312
-			if ( is_single() && ( is_singular( 'course' ) ) ) {
311
+		public function lsx_sensei_course_breadcrumb_filter($crumbs, $id = 0) {
312
+			if (is_single() && (is_singular('course'))) {
313 313
 				global $course;
314 314
 				$lesson          = get_the_title();
315
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
316
-				$course_page_url = get_permalink( $course_page_url );
315
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
316
+				$course_page_url = get_permalink($course_page_url);
317 317
 
318
-				if ( $lesson ) {
318
+				if ($lesson) {
319 319
 
320 320
 					$new_crumbs    = array();
321 321
 					$new_crumbs[0] = $crumbs[0];
322 322
 
323
-					if ( function_exists( 'woocommerce_breadcrumb' ) ) {
323
+					if (function_exists('woocommerce_breadcrumb')) {
324 324
 						$new_crumbs[1] = array(
325
-							0 => __( 'All Courses', 'lsx' ),
325
+							0 => __('All Courses', 'lsx'),
326 326
 							1 => $course_page_url,
327 327
 						);
328 328
 						$new_crumbs[2] = array(
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
 						);
331 331
 					} else {
332 332
 						$new_crumbs[1] = array(
333
-							'text' => __( 'All Courses', 'lsx' ),
333
+							'text' => __('All Courses', 'lsx'),
334 334
 							'url'  => $course_page_url,
335 335
 						);
336 336
 						$new_crumbs[2] = array(
@@ -348,34 +348,34 @@  discard block
 block discarded – undo
348 348
 		 * @param $crumbs
349 349
 		 * @return array
350 350
 		 */
351
-		public function lsx_sensei_lesson_breadcrumb_filter( $crumbs, $id = 0 ) {
352
-			if ( is_sensei() && is_single() && ( is_singular( 'lesson' ) ) ) {
351
+		public function lsx_sensei_lesson_breadcrumb_filter($crumbs, $id = 0) {
352
+			if (is_sensei() && is_single() && (is_singular('lesson'))) {
353 353
 				global $course;
354 354
 				$lesson          = get_the_title();
355
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
356
-				$course_page_url = get_permalink( $course_page_url );
355
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
356
+				$course_page_url = get_permalink($course_page_url);
357 357
 
358
-				if ( empty( $id ) ) {
358
+				if (empty($id)) {
359 359
 					$id = get_the_ID();
360 360
 				}
361 361
 
362
-				if ( 0 < intval( $id ) ) {
363
-					$course       = intval( get_post_meta( $id, '_lesson_course', true ) );
364
-					$course_id    = esc_url( get_permalink( $course ) );
365
-					$course_title = esc_html( get_the_title( $course ) );
366
-					if ( ! $course ) {
362
+				if (0 < intval($id)) {
363
+					$course       = intval(get_post_meta($id, '_lesson_course', true));
364
+					$course_id    = esc_url(get_permalink($course));
365
+					$course_title = esc_html(get_the_title($course));
366
+					if ( ! $course) {
367 367
 						return;
368 368
 					}
369 369
 				}
370 370
 
371
-				if ( $course_id ) {
371
+				if ($course_id) {
372 372
 
373 373
 					$new_crumbs    = array();
374 374
 					$new_crumbs[0] = $crumbs[0];
375 375
 
376
-					if ( function_exists( 'woocommerce_breadcrumb' ) ) {
376
+					if (function_exists('woocommerce_breadcrumb')) {
377 377
 						$new_crumbs[1] = array(
378
-							0 => __( 'Courses', 'lsx' ),
378
+							0 => __('Courses', 'lsx'),
379 379
 							1 => $course_page_url,
380 380
 						);
381 381
 						$new_crumbs[2] = array(
@@ -387,7 +387,7 @@  discard block
 block discarded – undo
387 387
 						);
388 388
 					} else {
389 389
 						$new_crumbs[1] = array(
390
-							'text' => __( 'Courses', 'lsx' ),
390
+							'text' => __('Courses', 'lsx'),
391 391
 							'url'  => $course_page_url,
392 392
 						);
393 393
 						$new_crumbs[2] = array(
@@ -409,27 +409,27 @@  discard block
 block discarded – undo
409 409
 		 * @param $crumbs
410 410
 		 * @return array
411 411
 		 */
412
-		public function lsx_sensei_module_breadcrumb_filter( $crumbs, $id = 0 ) {
413
-			if ( ! empty( get_queried_object()->name ) ) {
414
-				$title = apply_filters( 'sensei_module_archive_title', get_queried_object()->name );
412
+		public function lsx_sensei_module_breadcrumb_filter($crumbs, $id = 0) {
413
+			if ( ! empty(get_queried_object()->name)) {
414
+				$title = apply_filters('sensei_module_archive_title', get_queried_object()->name);
415 415
 			}
416 416
 
417
-			if ( is_sensei() && is_tax() && is_archive() && ( ! empty( $title ) ) ) {
417
+			if (is_sensei() && is_tax() && is_archive() && ( ! empty($title))) {
418 418
 
419 419
 				$lesson          = get_the_archive_title();
420
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
421
-				$course_page_url = get_permalink( $course_page_url );
420
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
421
+				$course_page_url = get_permalink($course_page_url);
422 422
 
423
-				if ( empty( $id ) ) {
423
+				if (empty($id)) {
424 424
 					$id = get_the_ID();
425 425
 				}
426 426
 
427 427
 				$new_crumbs    = array();
428 428
 				$new_crumbs[0] = $crumbs[0];
429 429
 
430
-				if ( function_exists( 'woocommerce_breadcrumb' ) ) {
430
+				if (function_exists('woocommerce_breadcrumb')) {
431 431
 					$new_crumbs[1] = array(
432
-						0 => __( 'Courses', 'lsx' ),
432
+						0 => __('Courses', 'lsx'),
433 433
 						1 => $course_page_url,
434 434
 					);
435 435
 					$new_crumbs[2] = array(
@@ -437,7 +437,7 @@  discard block
 block discarded – undo
437 437
 					);
438 438
 				} else {
439 439
 					$new_crumbs[1] = array(
440
-						'text' => __( 'Courses', 'lsx' ),
440
+						'text' => __('Courses', 'lsx'),
441 441
 						'url'  => $course_page_url,
442 442
 					);
443 443
 					$new_crumbs[2] = array(
@@ -454,38 +454,38 @@  discard block
 block discarded – undo
454 454
 		 * @param $crumbs
455 455
 		 * @return array
456 456
 		 */
457
-		public function lsx_sensei_learner_breadcrumb_filter( $crumbs, $id = 0 ) {
457
+		public function lsx_sensei_learner_breadcrumb_filter($crumbs, $id = 0) {
458 458
 			global $wp_query;
459 459
 
460
-			if ( isset( $wp_query->query_vars['learner_profile'] ) ) {
460
+			if (isset($wp_query->query_vars['learner_profile'])) {
461 461
 				$is_profile = $wp_query->query_vars['learner_profile'];
462 462
 			} else {
463 463
 				$is_profile = false;
464 464
 			}
465 465
 
466
-			if ( is_sticky() && $is_profile ) {
466
+			if (is_sticky() && $is_profile) {
467 467
 
468
-				if ( empty( $id ) ) {
468
+				if (empty($id)) {
469 469
 					$id = get_the_ID();
470 470
 				}
471 471
 
472 472
 				$query_var    = $wp_query->query_vars['learner_profile'];
473
-				$learner_user = Sensei_Learner::find_by_query_var( $query_var );
473
+				$learner_user = Sensei_Learner::find_by_query_var($query_var);
474 474
 				$learner_name = $learner_user->display_name;
475 475
 
476 476
 				$new_crumbs    = array();
477 477
 				$new_crumbs[0] = $crumbs[0];
478 478
 
479
-				if ( function_exists( 'woocommerce_breadcrumb' ) ) {
479
+				if (function_exists('woocommerce_breadcrumb')) {
480 480
 					$new_crumbs[1] = array(
481
-						0 => __( 'Learners', 'lsx' ),
481
+						0 => __('Learners', 'lsx'),
482 482
 					);
483 483
 					$new_crumbs[2] = array(
484 484
 						0 => $learner_name,
485 485
 					);
486 486
 				} else {
487 487
 					$new_crumbs[1] = array(
488
-						'text' => __( 'Learners', 'lsx' ),
488
+						'text' => __('Learners', 'lsx'),
489 489
 					);
490 490
 					$new_crumbs[2] = array(
491 491
 						'text' => $learner_name,
@@ -501,36 +501,36 @@  discard block
 block discarded – undo
501 501
 		 * @param $crumbs
502 502
 		 * @return array
503 503
 		 */
504
-		public function lsx_sensei_messages_breadcrumb_filter( $crumbs, $id = 0 ) {
505
-			if ( is_archive() && ( is_post_type_archive( 'sensei_message' ) ) ) {
504
+		public function lsx_sensei_messages_breadcrumb_filter($crumbs, $id = 0) {
505
+			if (is_archive() && (is_post_type_archive('sensei_message'))) {
506 506
 
507
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
508
-				$course_page_url = get_permalink( $course_page_url );
507
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
508
+				$course_page_url = get_permalink($course_page_url);
509 509
 
510
-				if ( empty( $id ) ) {
510
+				if (empty($id)) {
511 511
 					$id = get_the_ID();
512 512
 				}
513 513
 
514
-				if ( $id ) {
514
+				if ($id) {
515 515
 
516 516
 					$new_crumbs    = array();
517 517
 					$new_crumbs[0] = $crumbs[0];
518 518
 
519
-					if ( function_exists( 'woocommerce_breadcrumb' ) ) {
519
+					if (function_exists('woocommerce_breadcrumb')) {
520 520
 						$new_crumbs[1] = array(
521
-							0 => __( 'Courses', 'lsx' ),
521
+							0 => __('Courses', 'lsx'),
522 522
 							1 => $course_page_url,
523 523
 						);
524 524
 						$new_crumbs[2] = array(
525
-							0 => __( 'Messages', 'lsx' ),
525
+							0 => __('Messages', 'lsx'),
526 526
 						);
527 527
 					} else {
528 528
 						$new_crumbs[1] = array(
529
-							'text' => __( 'Courses', 'lsx' ),
529
+							'text' => __('Courses', 'lsx'),
530 530
 							'url'  => $course_page_url,
531 531
 						);
532 532
 						$new_crumbs[2] = array(
533
-							'text' => __( 'Messages', 'lsx' ),
533
+							'text' => __('Messages', 'lsx'),
534 534
 						);
535 535
 					}
536 536
 					$crumbs = $new_crumbs;
@@ -544,35 +544,35 @@  discard block
 block discarded – undo
544 544
 		 * @param $crumbs
545 545
 		 * @return array
546 546
 		 */
547
-		public function lsx_sensei_quiz_breadcrumb_filter( $crumbs, $id = 0 ) {
548
-			if ( ( is_single() && ( is_singular( 'quiz' ) ) ) ) {
547
+		public function lsx_sensei_quiz_breadcrumb_filter($crumbs, $id = 0) {
548
+			if ((is_single() && (is_singular('quiz')))) {
549 549
 				global $course;
550
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
551
-				$course_page_url = get_permalink( $course_page_url );
550
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
551
+				$course_page_url = get_permalink($course_page_url);
552 552
 				$lesson          = get_the_title();
553 553
 
554
-				if ( empty( $id ) ) {
554
+				if (empty($id)) {
555 555
 					$id = get_the_ID();
556 556
 				}
557 557
 
558
-				if ( 0 < intval( $id ) ) {
558
+				if (0 < intval($id)) {
559 559
 
560
-					$course       = intval( get_post_meta( $id, '_quiz_lesson', true ) );
561
-					$course_id    = esc_url( get_permalink( $course ) );
562
-					$course_title = esc_html( get_the_title( $course ) );
563
-					if ( ! $course ) {
560
+					$course       = intval(get_post_meta($id, '_quiz_lesson', true));
561
+					$course_id    = esc_url(get_permalink($course));
562
+					$course_title = esc_html(get_the_title($course));
563
+					if ( ! $course) {
564 564
 						return;
565 565
 					}
566 566
 				}
567 567
 
568
-				if ( $course_id ) {
568
+				if ($course_id) {
569 569
 
570 570
 					$new_crumbs    = array();
571 571
 					$new_crumbs[0] = $crumbs[0];
572 572
 
573
-					if ( function_exists( 'woocommerce_breadcrumb' ) ) {
573
+					if (function_exists('woocommerce_breadcrumb')) {
574 574
 						$new_crumbs[1] = array(
575
-							0 => __( 'Courses', 'lsx' ),
575
+							0 => __('Courses', 'lsx'),
576 576
 							1 => $course_page_url,
577 577
 						);
578 578
 						$new_crumbs[2] = array(
@@ -584,7 +584,7 @@  discard block
 block discarded – undo
584 584
 						);
585 585
 					} else {
586 586
 						$new_crumbs[1] = array(
587
-							'text' => __( 'Courses', 'lsx' ),
587
+							'text' => __('Courses', 'lsx'),
588 588
 							'url'  => $course_page_url,
589 589
 						);
590 590
 						$new_crumbs[2] = array(
@@ -607,36 +607,36 @@  discard block
 block discarded – undo
607 607
 		 * @param $crumbs
608 608
 		 * @return array
609 609
 		 */
610
-		public function lsx_sensei_results_breadcrumb_filter( $crumbs, $id = 0 ) {
611
-			if ( is_sticky() ) {
610
+		public function lsx_sensei_results_breadcrumb_filter($crumbs, $id = 0) {
611
+			if (is_sticky()) {
612 612
 				global $wp_query;
613 613
 				$course_id = '';
614
-				if ( isset( $wp_query->query_vars['course_results'] ) ) {
614
+				if (isset($wp_query->query_vars['course_results'])) {
615 615
 					$is_results = $wp_query->query_vars['course_results'];
616 616
 				}
617
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
618
-				$course_page_url = get_permalink( $course_page_url );
617
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
618
+				$course_page_url = get_permalink($course_page_url);
619 619
 
620
-				if ( empty( $id ) ) {
620
+				if (empty($id)) {
621 621
 					$id = get_the_ID();
622 622
 				}
623 623
 
624
-				if ( isset( $is_results ) ) {
625
-					$course_for_results = get_page_by_path( $is_results, OBJECT, 'course' );
624
+				if (isset($is_results)) {
625
+					$course_for_results = get_page_by_path($is_results, OBJECT, 'course');
626 626
 
627
-					$course_id    = esc_url( get_permalink( $course_for_results ) );
628
-					$course_title = esc_html( $course_for_results->post_title );
627
+					$course_id    = esc_url(get_permalink($course_for_results));
628
+					$course_title = esc_html($course_for_results->post_title);
629 629
 
630 630
 				}
631 631
 
632
-				if ( $course_id ) {
632
+				if ($course_id) {
633 633
 					$new_crumbs    = array();
634 634
 					$new_crumbs[0] = $crumbs[0];
635 635
 
636
-					if ( $is_results ) {
637
-						if ( function_exists( 'woocommerce_breadcrumb' ) ) {
636
+					if ($is_results) {
637
+						if (function_exists('woocommerce_breadcrumb')) {
638 638
 							$new_crumbs[1] = array(
639
-								0 => __( 'Courses', 'lsx' ),
639
+								0 => __('Courses', 'lsx'),
640 640
 								1 => $course_page_url,
641 641
 							);
642 642
 							$new_crumbs[2] = array(
@@ -644,15 +644,15 @@  discard block
 block discarded – undo
644 644
 								1 => $course_id,
645 645
 							);
646 646
 							$new_crumbs[3] = array(
647
-								0 => __( 'Results', 'lsx' ),
647
+								0 => __('Results', 'lsx'),
648 648
 							);
649 649
 						} else {
650 650
 							$new_crumbs[1] = array(
651
-								'text' => __( 'Courses', 'lsx' ),
651
+								'text' => __('Courses', 'lsx'),
652 652
 								'url'  => $course_page_url,
653 653
 							);
654 654
 							$new_crumbs[2] = array(
655
-								'text' => __( 'Results', 'lsx' ),
655
+								'text' => __('Results', 'lsx'),
656 656
 							);
657 657
 						}
658 658
 					}
@@ -668,9 +668,9 @@  discard block
 block discarded – undo
668 668
 		 * @param [type] $message_post_id
669 669
 		 * @return void
670 670
 		 */
671
-		public function lsx_sensei_view_message_button( $message_post_id ) {
672
-			$message_link = get_the_permalink( $message_post_id );
673
-			echo '<a href="' . esc_url_raw( $message_link ) . '" class="btn view-msg-btn">' . wp_kses_post( 'View Message', 'lsx' ) . '</a>';
671
+		public function lsx_sensei_view_message_button($message_post_id) {
672
+			$message_link = get_the_permalink($message_post_id);
673
+			echo '<a href="' . esc_url_raw($message_link) . '" class="btn view-msg-btn">' . wp_kses_post('View Message', 'lsx') . '</a>';
674 674
 		}
675 675
 
676 676
 		/**
@@ -679,9 +679,9 @@  discard block
 block discarded – undo
679 679
 		 * @param [type] $message_post_id
680 680
 		 * @return void
681 681
 		 */
682
-		public function lsx_sensei_back_message_button( $courses_link ) {
682
+		public function lsx_sensei_back_message_button($courses_link) {
683 683
 			$courses_link = '/my-courses/';
684
-			echo '<a href="' . esc_url_raw( $courses_link ) . '" class="btn border-btn my-courses-btn">' . wp_kses_post( 'My Courses', 'lsx' ) . '</a>';
684
+			echo '<a href="' . esc_url_raw($courses_link) . '" class="btn border-btn my-courses-btn">' . wp_kses_post('My Courses', 'lsx') . '</a>';
685 685
 		}
686 686
 	}
687 687
 
Please login to merge, or discard this patch.