Completed
Push — master ( d27ae5...a77c7a )
by Warwick
03:15
created
tribe-events/list/single-event.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -8,8 +8,8 @@  discard block
 block discarded – undo
8 8
  * @version 4.6.3
9 9
  *
10 10
  */
11
-if ( ! defined( 'ABSPATH' ) ) {
12
-	die( '-1' );
11
+if ( ! defined('ABSPATH')) {
12
+	die('-1');
13 13
 }
14 14
 
15 15
 // Setup an array of venue details for use later in the template
@@ -20,45 +20,45 @@  discard block
 block discarded – undo
20 20
 $venue_address = tribe_get_address();
21 21
 
22 22
 // Venue
23
-$has_venue_address = ( ! empty( $venue_details['address'] ) ) ? ' location' : '';
23
+$has_venue_address = ( ! empty($venue_details['address'])) ? ' location' : '';
24 24
 
25 25
 // Organizer
26 26
 $organizer = tribe_get_organizer();
27 27
 
28 28
 // Event Image
29
-echo tribe_event_featured_image( null, 'medium' );
29
+echo tribe_event_featured_image(null, 'medium');
30 30
 ?>
31 31
 
32 32
 <div class="tribe-events-event-content">
33 33
 	<!-- Event Title -->
34
-	<?php do_action( 'tribe_events_before_the_event_title' ) ?>
34
+	<?php do_action('tribe_events_before_the_event_title') ?>
35 35
 	<h2 class="tribe-events-list-event-title">
36
-		<a class="tribe-event-url" href="<?php echo esc_url( tribe_get_event_link() ); ?>" title="<?php the_title_attribute() ?>" rel="bookmark">
36
+		<a class="tribe-event-url" href="<?php echo esc_url(tribe_get_event_link()); ?>" title="<?php the_title_attribute() ?>" rel="bookmark">
37 37
 			<?php the_title() ?>
38 38
 		</a>
39 39
 	</h2>
40
-	<?php do_action( 'tribe_events_after_the_event_title' ) ?>
40
+	<?php do_action('tribe_events_after_the_event_title') ?>
41 41
 
42 42
 	<!-- Event Meta -->
43
-	<?php do_action( 'tribe_events_before_the_meta' ) ?>
43
+	<?php do_action('tribe_events_before_the_meta') ?>
44 44
 	<div class="tribe-events-event-meta">
45
-		<div class="author <?php echo esc_attr( $has_venue_address ); ?>">
45
+		<div class="author <?php echo esc_attr($has_venue_address); ?>">
46 46
 
47 47
 			<!-- Schedule & Recurrence Details -->
48 48
 			<div class="tribe-event-schedule-details">
49 49
 				<?php echo tribe_events_event_schedule_details() ?>
50 50
 			</div>
51 51
 
52
-			<?php if ( $venue_details ) : ?>
52
+			<?php if ($venue_details) : ?>
53 53
 				<!-- Venue Display Info -->
54 54
 				<div class="tribe-events-venue-details">
55 55
 				<?php
56
-					$address_delimiter = empty( $venue_address ) ? ' ' : ', ';
56
+					$address_delimiter = empty($venue_address) ? ' ' : ', ';
57 57
 
58 58
 					// These details are already escaped in various ways earlier in the process.
59
-					echo implode( $address_delimiter, $venue_details );
59
+					echo implode($address_delimiter, $venue_details);
60 60
 
61
-					if ( tribe_show_google_map_link() ) {
61
+					if (tribe_show_google_map_link()) {
62 62
 						echo tribe_get_map_link_html();
63 63
 					}
64 64
 				?>
@@ -69,29 +69,29 @@  discard block
 block discarded – undo
69 69
 	</div><!-- .tribe-events-event-meta -->
70 70
 
71 71
 	<!-- Event Cost -->
72
-	<?php if ( tribe_get_cost() ) : ?>
72
+	<?php if (tribe_get_cost()) : ?>
73 73
 		<div class="tribe-events-event-cost">
74
-			<?php esc_html_e( 'Price:', 'lsx' ) ?>
75
-			<span class="ticket-cost"><?php echo tribe_get_cost( null, true ); ?></span>
74
+			<?php esc_html_e('Price:', 'lsx') ?>
75
+			<span class="ticket-cost"><?php echo tribe_get_cost(null, true); ?></span>
76 76
 			<?php
77 77
 			/**
78 78
 			 * Runs after cost is displayed in list style views
79 79
 			 *
80 80
 			 * @since 4.5
81 81
 			 */
82
-			do_action( 'tribe_events_inside_cost' )
82
+			do_action('tribe_events_inside_cost')
83 83
 			?>
84 84
 		</div>
85 85
 	<?php endif; ?>
86 86
 
87
-	<?php do_action( 'tribe_events_after_the_meta' ) ?>
87
+	<?php do_action('tribe_events_after_the_meta') ?>
88 88
 
89 89
 	<!-- Event Content -->
90
-	<?php do_action( 'tribe_events_before_the_content' ); ?>
90
+	<?php do_action('tribe_events_before_the_content'); ?>
91 91
 	<div class="tribe-events-list-event-description tribe-events-content description entry-summary">
92
-		<?php echo tribe_events_get_the_excerpt( null, wp_kses_allowed_html( 'post' ) ); ?>
93
-		<a href="<?php echo esc_url( tribe_get_event_link() ); ?>" class="tribe-events-read-more" rel="bookmark"><?php esc_html_e( 'Find out more', 'lsx' ) ?></a>
92
+		<?php echo tribe_events_get_the_excerpt(null, wp_kses_allowed_html('post')); ?>
93
+		<a href="<?php echo esc_url(tribe_get_event_link()); ?>" class="tribe-events-read-more" rel="bookmark"><?php esc_html_e('Find out more', 'lsx') ?></a>
94 94
 	</div><!-- .tribe-events-list-event-description -->
95 95
 
96
-	<?php do_action( 'tribe_events_after_the_content' ); ?>
96
+	<?php do_action('tribe_events_after_the_content'); ?>
97 97
 </div>
Please login to merge, or discard this patch.
tribe-events/list/single-featured.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -8,51 +8,51 @@  discard block
 block discarded – undo
8 8
  * @version 4.6.3
9 9
  *
10 10
  */
11
-if ( ! defined( 'ABSPATH' ) ) {
12
-	die( '-1' );
11
+if ( ! defined('ABSPATH')) {
12
+	die('-1');
13 13
 }
14 14
 
15 15
 // Setup an array of venue details for use later in the template
16 16
 $venue_details = tribe_get_venue_details();
17 17
 
18 18
 // Venue
19
-$has_venue_address = ( ! empty( $venue_details['address'] ) ) ? ' location' : '';
19
+$has_venue_address = ( ! empty($venue_details['address'])) ? ' location' : '';
20 20
 
21 21
 // Organizer
22 22
 $organizer = tribe_get_organizer();
23 23
 
24 24
 // Event Image
25
-echo tribe_event_featured_image( null, 'large' );
25
+echo tribe_event_featured_image(null, 'large');
26 26
 ?>
27 27
 
28 28
 <div class="tribe-events-event-content">
29 29
 	<!-- Event Title -->
30
-	<?php do_action( 'tribe_events_before_the_event_title' ) ?>
30
+	<?php do_action('tribe_events_before_the_event_title') ?>
31 31
 	<h2 class="tribe-events-list-event-title">
32
-		<a class="tribe-event-url" href="<?php echo esc_url( tribe_get_event_link() ); ?>" title="<?php the_title_attribute() ?>" rel="bookmark">
32
+		<a class="tribe-event-url" href="<?php echo esc_url(tribe_get_event_link()); ?>" title="<?php the_title_attribute() ?>" rel="bookmark">
33 33
 			<?php the_title() ?>
34 34
 		</a>
35 35
 
36
-		<span class="label label-default"><?php esc_html_e( 'Featured', 'lsx' ) ?></span>
36
+		<span class="label label-default"><?php esc_html_e('Featured', 'lsx') ?></span>
37 37
 	</h2>
38
-	<?php do_action( 'tribe_events_after_the_event_title' ) ?>
38
+	<?php do_action('tribe_events_after_the_event_title') ?>
39 39
 
40 40
 	<!-- Event Meta -->
41
-	<?php do_action( 'tribe_events_before_the_meta' ) ?>
41
+	<?php do_action('tribe_events_before_the_meta') ?>
42 42
 	<div class="tribe-events-event-meta">
43
-		<div class="author <?php echo esc_attr( $has_venue_address ); ?>">
43
+		<div class="author <?php echo esc_attr($has_venue_address); ?>">
44 44
 
45 45
 			<!-- Schedule & Recurrence Details -->
46 46
 			<div class="tribe-event-schedule-details">
47 47
 				<?php echo tribe_events_event_schedule_details() ?>
48 48
 			</div>
49 49
 
50
-			<?php if ( $venue_details ) : ?>
50
+			<?php if ($venue_details) : ?>
51 51
 				<!-- Venue Display Info -->
52 52
 				<div class="tribe-events-venue-details">
53
-					<?php echo implode( ', ', $venue_details ); ?>
53
+					<?php echo implode(', ', $venue_details); ?>
54 54
 					<?php
55
-					if ( tribe_show_google_map_link() ) {
55
+					if (tribe_show_google_map_link()) {
56 56
 						echo tribe_get_map_link_html();
57 57
 					}
58 58
 					?>
@@ -61,26 +61,26 @@  discard block
 block discarded – undo
61 61
 
62 62
 		</div>
63 63
 	</div><!-- .tribe-events-event-meta -->
64
-	<?php do_action( 'tribe_events_after_the_meta' ) ?>
64
+	<?php do_action('tribe_events_after_the_meta') ?>
65 65
 
66 66
 	<!-- Event Cost -->
67
-	<?php if ( tribe_get_cost() ) : ?>
67
+	<?php if (tribe_get_cost()) : ?>
68 68
 		<div class="tribe-events-event-cost featured-event">
69
-			<?php esc_html_e( 'Price:', 'lsx' ) ?>
70
-			<span class="ticket-cost"><?php echo esc_html( tribe_get_cost( null, true ) ); ?></span>
69
+			<?php esc_html_e('Price:', 'lsx') ?>
70
+			<span class="ticket-cost"><?php echo esc_html(tribe_get_cost(null, true)); ?></span>
71 71
 			<?php
72 72
 			/** This action is documented in the-events-calendar/src/views/list/single-event.php */
73
-			do_action( 'tribe_events_inside_cost' )
73
+			do_action('tribe_events_inside_cost')
74 74
 			?>
75 75
 		</div>
76 76
 	<?php endif; ?>
77 77
 
78 78
 	<!-- Event Content -->
79
-	<?php do_action( 'tribe_events_before_the_content' ) ?>
79
+	<?php do_action('tribe_events_before_the_content') ?>
80 80
 	<div class="tribe-events-list-event-description tribe-events-content">
81
-		<?php echo tribe_events_get_the_excerpt( null, wp_kses_allowed_html( 'post' ) ); ?>
82
-		<a href="<?php echo esc_url( tribe_get_event_link() ); ?>" class="tribe-events-read-more" rel="bookmark"><?php esc_html_e( 'Find out more', 'lsx' ) ?></a>
81
+		<?php echo tribe_events_get_the_excerpt(null, wp_kses_allowed_html('post')); ?>
82
+		<a href="<?php echo esc_url(tribe_get_event_link()); ?>" class="tribe-events-read-more" rel="bookmark"><?php esc_html_e('Find out more', 'lsx') ?></a>
83 83
 	</div><!-- .tribe-events-list-event-description -->
84 84
 
85
-	<?php do_action( 'tribe_events_after_the_content' ); ?>
85
+	<?php do_action('tribe_events_after_the_content'); ?>
86 86
 </div>
Please login to merge, or discard this patch.
page-templates/template-wc-thank-you.php 1 patch
Spacing   +54 added lines, -54 removed lines patch added patch discarded remove patch
@@ -20,47 +20,47 @@  discard block
 block discarded – undo
20 20
 
21 21
 		<?php lsx_content_top(); ?>
22 22
 
23
-		<?php if ( have_posts() ) : ?>
23
+		<?php if (have_posts()) : ?>
24 24
 
25
-			<?php while ( have_posts() ) : the_post(); ?>
25
+			<?php while (have_posts()) : the_post(); ?>
26 26
 
27 27
 				<?php
28 28
 					WC()->payment_gateways()->payment_gateways;
29
-					$order_key = isset( $_GET['key'] ) ? wc_clean( $_GET['key'] ) : '';
30
-					$order_id  = absint( $wp->query_vars['order-received'] );
31
-					$order = wc_get_order( $order_id );
29
+					$order_key = isset($_GET['key']) ? wc_clean($_GET['key']) : '';
30
+					$order_id  = absint($wp->query_vars['order-received']);
31
+					$order = wc_get_order($order_id);
32 32
 				?>
33 33
 
34
-				<?php if ( $order && $order->get_id() === $order_id && $order->get_order_key() === $order_key ) : ?>
34
+				<?php if ($order && $order->get_id() === $order_id && $order->get_order_key() === $order_key) : ?>
35 35
 
36 36
 					<?php // @codingStandardsIgnoreStart ?>
37 37
 
38
-					<div class="alert alert-success"><?php echo apply_filters( 'woocommerce_thankyou_order_received_text', esc_html__( 'Thank you. Your order has been received.', 'lsx' ), $order ); ?></div>
38
+					<div class="alert alert-success"><?php echo apply_filters('woocommerce_thankyou_order_received_text', esc_html__('Thank you. Your order has been received.', 'lsx'), $order); ?></div>
39 39
 
40 40
 					<div class="row">
41 41
 						<div class="col-xs-12 col-sm-6">
42
-							<h2><?php esc_html_e( 'Order Details', 'lsx' ); ?></h2>
42
+							<h2><?php esc_html_e('Order Details', 'lsx'); ?></h2>
43 43
 
44 44
 							<table class="table">
45 45
 								<tbody>
46 46
 									<tr>
47
-										<th><?php esc_html_e( 'Order:', 'lsx' ); ?></th>
47
+										<th><?php esc_html_e('Order:', 'lsx'); ?></th>
48 48
 										<td><?php echo $order->get_order_number(); ?></td>
49 49
 									</tr>
50 50
 
51 51
 									<tr>
52
-										<th><?php esc_html_e( 'Date:', 'lsx' ); ?></th>
53
-										<td><?php echo date_i18n( get_option( 'date_format' ), strtotime( $order->order_date ) ); ?></td>
52
+										<th><?php esc_html_e('Date:', 'lsx'); ?></th>
53
+										<td><?php echo date_i18n(get_option('date_format'), strtotime($order->order_date)); ?></td>
54 54
 									</tr>
55 55
 
56 56
 									<tr>
57
-										<th><?php esc_html_e( 'Total:', 'lsx' ); ?></th>
57
+										<th><?php esc_html_e('Total:', 'lsx'); ?></th>
58 58
 										<td><?php echo $order->get_formatted_order_total(); ?></td>
59 59
 									</tr>
60 60
 
61
-									<?php if ( $order->payment_method_title ) : ?>
61
+									<?php if ($order->payment_method_title) : ?>
62 62
 										<tr>
63
-											<th><?php esc_html_e( 'Payment method:', 'lsx' ); ?></th>
63
+											<th><?php esc_html_e('Payment method:', 'lsx'); ?></th>
64 64
 											<td><?php echo $order->payment_method_title; ?></td>
65 65
 										</tr>
66 66
 									<?php endif; ?>
@@ -69,48 +69,48 @@  discard block
 block discarded – undo
69 69
 
70 70
 							<?php // do_action( 'woocommerce_order_details_after_order_table', $order ); ?>
71 71
 
72
-							<h2><?php esc_html_e( 'Customer details', 'lsx' ); ?></h2>
72
+							<h2><?php esc_html_e('Customer details', 'lsx'); ?></h2>
73 73
 
74 74
 							<dl class="customer_details">
75 75
 								<?php
76
-									if ( $order->billing_email ) echo '<dt>' . esc_html__( 'Email:', 'lsx' ) . '</dt><dd>' . $order->billing_email . '</dd>';
77
-									if ( $order->billing_phone ) echo '<dt>' . esc_html__( 'Telephone:', 'lsx' ) . '</dt><dd>' . $order->billing_phone . '</dd>';
76
+									if ($order->billing_email) echo '<dt>' . esc_html__('Email:', 'lsx') . '</dt><dd>' . $order->billing_email . '</dd>';
77
+									if ($order->billing_phone) echo '<dt>' . esc_html__('Telephone:', 'lsx') . '</dt><dd>' . $order->billing_phone . '</dd>';
78 78
 
79 79
 									// Additional customer details hook
80
-									do_action( 'woocommerce_order_details_after_customer_details', $order );
80
+									do_action('woocommerce_order_details_after_customer_details', $order);
81 81
 								?>
82 82
 							</dl>
83 83
 
84
-							<?php if ( ! wc_ship_to_billing_address_only() && $order->needs_shipping_address() && get_option( 'woocommerce_calc_shipping' ) !== 'no' ) : ?>
84
+							<?php if ( ! wc_ship_to_billing_address_only() && $order->needs_shipping_address() && get_option('woocommerce_calc_shipping') !== 'no') : ?>
85 85
 
86 86
 								<div class="row">
87 87
 									<div class="col-xs-12 col-sm-6">
88 88
 
89 89
 							<?php endif; ?>
90 90
 
91
-										<h3><?php esc_html_e( 'Billing Address', 'lsx' ); ?></h3>
91
+										<h3><?php esc_html_e('Billing Address', 'lsx'); ?></h3>
92 92
 
93 93
 										<address>
94 94
 											<?php
95
-												if ( ! $order->get_formatted_billing_address() ) {
96
-													esc_html_e( 'N/A', 'lsx' );
95
+												if ( ! $order->get_formatted_billing_address()) {
96
+													esc_html_e('N/A', 'lsx');
97 97
 												} else {
98 98
 													echo $order->get_formatted_billing_address();
99 99
 												}
100 100
 											?>
101 101
 										</address>
102 102
 
103
-							<?php if ( ! wc_ship_to_billing_address_only() && $order->needs_shipping_address() && get_option( 'woocommerce_calc_shipping' ) !== 'no' ) : ?>
103
+							<?php if ( ! wc_ship_to_billing_address_only() && $order->needs_shipping_address() && get_option('woocommerce_calc_shipping') !== 'no') : ?>
104 104
 
105 105
 									</div>
106 106
 
107 107
 									<div class="col-xs-12 col-sm-6">
108
-										<h3><?php esc_html_e( 'Shipping Address', 'lsx' ); ?></h3>
108
+										<h3><?php esc_html_e('Shipping Address', 'lsx'); ?></h3>
109 109
 
110 110
 										<address>
111 111
 											<?php
112
-												if ( ! $order->get_formatted_shipping_address() ) {
113
-													esc_html_e( 'N/A', 'lsx' );
112
+												if ( ! $order->get_formatted_shipping_address()) {
113
+													esc_html_e('N/A', 'lsx');
114 114
 												} else {
115 115
 													echo $order->get_formatted_shipping_address();
116 116
 												}
@@ -123,68 +123,68 @@  discard block
 block discarded – undo
123 123
 						</div>
124 124
 
125 125
 						<div class="col-xs-12 col-sm-6">
126
-							<h2><?php esc_html_e( 'Products details', 'lsx' ); ?></h2>
126
+							<h2><?php esc_html_e('Products details', 'lsx'); ?></h2>
127 127
 
128 128
 							<table class="table">
129 129
 								<thead>
130 130
 									<tr>
131
-										<th><?php esc_html_e( 'Product', 'lsx' ); ?></th>
132
-										<th><?php esc_html_e( 'Total', 'lsx' ); ?></th>
131
+										<th><?php esc_html_e('Product', 'lsx'); ?></th>
132
+										<th><?php esc_html_e('Total', 'lsx'); ?></th>
133 133
 									</tr>
134 134
 								</thead>
135 135
 
136 136
 								<tbody>
137 137
 									<?php
138
-										if ( sizeof( $order->get_items() ) > 0 ) :
139
-											foreach( $order->get_items() as $item ) :
140
-												$_product = apply_filters( 'woocommerce_order_item_product', $order->get_product_from_item( $item ), $item );
141
-												$item_meta = new WC_Order_Item_Meta( $item['item_meta'], $_product );
138
+										if (sizeof($order->get_items()) > 0) :
139
+											foreach ($order->get_items() as $item) :
140
+												$_product = apply_filters('woocommerce_order_item_product', $order->get_product_from_item($item), $item);
141
+												$item_meta = new WC_Order_Item_Meta($item['item_meta'], $_product);
142 142
 											?>
143 143
 
144 144
 											<tr>
145 145
 												<td>
146 146
 													<?php
147
-														if ( $_product && ! $_product->is_visible() ) {
148
-															echo apply_filters( 'woocommerce_order_item_name', $item['name'], $item );
147
+														if ($_product && ! $_product->is_visible()) {
148
+															echo apply_filters('woocommerce_order_item_name', $item['name'], $item);
149 149
 														} else {
150
-															echo apply_filters( 'woocommerce_order_item_name', sprintf( '<a href="%s">%s</a>', get_permalink( $item['product_id'] ), $item['name'] ), $item );
150
+															echo apply_filters('woocommerce_order_item_name', sprintf('<a href="%s">%s</a>', get_permalink($item['product_id']), $item['name']), $item);
151 151
 														}
152 152
 
153
-														echo apply_filters( 'woocommerce_order_item_quantity_html', ' <strong class="product-quantity">' . sprintf( '&times; %s', $item['qty'] ) . '</strong>', $item );
153
+														echo apply_filters('woocommerce_order_item_quantity_html', ' <strong class="product-quantity">' . sprintf('&times; %s', $item['qty']) . '</strong>', $item);
154 154
 
155 155
 														ob_start();
156 156
 														$item_meta->display();
157 157
 														$_item_meta = ob_get_clean();
158 158
 
159
-														if ( ! empty( $_item_meta ) ) {
159
+														if ( ! empty($_item_meta)) {
160 160
 															echo $_item_meta;
161 161
 														} else {
162 162
 															echo '<br>';
163 163
 														}
164 164
 
165
-														if ( $_product && $_product->exists() && $_product->is_downloadable() && $order->is_download_permitted() ) {
166
-															$download_files = $order->get_item_downloads( $item );
165
+														if ($_product && $_product->exists() && $_product->is_downloadable() && $order->is_download_permitted()) {
166
+															$download_files = $order->get_item_downloads($item);
167 167
 															$i = 0;
168 168
 															$links = array();
169 169
 
170
-															if ( empty( $download_files ) ) {
170
+															if (empty($download_files)) {
171 171
 																$download_files = $_product->get_files();
172 172
 															}
173 173
 
174
-															foreach ( $download_files as $download_id => $file ) {
174
+															foreach ($download_files as $download_id => $file) {
175 175
 																$i++;
176 176
 
177
-																if ( $i > 1 ) {
177
+																if ($i > 1) {
178 178
 																	echo '<br>';
179 179
 																}
180 180
 
181
-																if ( ! empty( $_item_meta ) ) {
181
+																if ( ! empty($_item_meta)) {
182 182
 																	echo '<span style="margin-top: -2.4rem; display: block;">';
183 183
 																} else {
184 184
 																	echo '<span>';
185 185
 																}
186 186
 
187
-																echo '<a href="' . esc_url( $file['download_url'] ? $file['download_url'] : $file['file'] ) . '">' . sprintf( esc_html__( 'Download file%s', 'lsx' ), ( count( $download_files ) > 1 ? ' ' . $i . ': ' : ': ' ) ) . esc_html( $file['name'] ) . '</a>';
187
+																echo '<a href="' . esc_url($file['download_url'] ? $file['download_url'] : $file['file']) . '">' . sprintf(esc_html__('Download file%s', 'lsx'), (count($download_files) > 1 ? ' ' . $i . ': ' : ': ')) . esc_html($file['name']) . '</a>';
188 188
 																echo '</span>';
189 189
 															}
190 190
 														}
@@ -192,15 +192,15 @@  discard block
 block discarded – undo
192 192
 												</td>
193 193
 
194 194
 												<td>
195
-													<?php echo $order->get_formatted_line_subtotal( $item ); ?>
195
+													<?php echo $order->get_formatted_line_subtotal($item); ?>
196 196
 												</td>
197 197
 											</tr>
198 198
 
199 199
 											<?php
200
-												if ( $order->has_status( array( 'completed', 'processing' ) ) && ( $purchase_note = get_post_meta( $_product->id, '_purchase_note', true ) ) ) {
200
+												if ($order->has_status(array('completed', 'processing')) && ($purchase_note = get_post_meta($_product->id, '_purchase_note', true))) {
201 201
 													?>
202 202
 													<tr class="product-purchase-note">
203
-														<td colspan="3"><?php echo wpautop( do_shortcode( wp_kses_post( $purchase_note ) ) ); ?></td>
203
+														<td colspan="3"><?php echo wpautop(do_shortcode(wp_kses_post($purchase_note))); ?></td>
204 204
 													</tr>
205 205
 													<?php
206 206
 												}
@@ -213,8 +213,8 @@  discard block
 block discarded – undo
213 213
 
214 214
 								<tfoot>
215 215
 									<?php
216
-										if ( $totals = $order->get_order_item_totals() ) :
217
-											foreach ( $totals as $total ) :
216
+										if ($totals = $order->get_order_item_totals()) :
217
+											foreach ($totals as $total) :
218 218
 												?>
219 219
 												<tr>
220 220
 													<th scope="row"><?php echo $total['label']; ?></th>
@@ -227,9 +227,9 @@  discard block
 block discarded – undo
227 227
 								</tfoot>
228 228
 							</table>
229 229
 
230
-							<?php if ( 'bacs' === $order->get_payment_method() ) { ?>
231
-								<h2><?php esc_html_e( 'Bank Details', 'lsx' ); ?></h2>
232
-								<?php do_action( 'woocommerce_thankyou_' . $order->get_payment_method(), $order->get_id() ); ?>
230
+							<?php if ('bacs' === $order->get_payment_method()) { ?>
231
+								<h2><?php esc_html_e('Bank Details', 'lsx'); ?></h2>
232
+								<?php do_action('woocommerce_thankyou_' . $order->get_payment_method(), $order->get_id()); ?>
233 233
 							<?php } ?>
234 234
 						</div>
235 235
 					</div>
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
 
239 239
 				<?php else : ?>
240 240
 
241
-					<div class="alert alert-danger"><?php esc_html_e( 'Invalid order.', 'lsx' ); ?></div>
241
+					<div class="alert alert-danger"><?php esc_html_e('Invalid order.', 'lsx'); ?></div>
242 242
 
243 243
 				<?php endif; ?>
244 244
 
Please login to merge, or discard this patch.
includes/template-tags.php 1 patch
Spacing   +133 added lines, -133 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,43 +19,43 @@  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_banner_inner_bottom', 'lsx_breadcrumbs', 100 );
56
-add_action( 'lsx_global_header_inner_bottom', 'lsx_breadcrumbs', 100 );
55
+add_action('lsx_banner_inner_bottom', 'lsx_breadcrumbs', 100);
56
+add_action('lsx_global_header_inner_bottom', 'lsx_breadcrumbs', 100);
57 57
 
58
-if ( ! function_exists( 'lsx_breadcrumbs_wpseo_seperator_filter' ) ) :
58
+if ( ! function_exists('lsx_breadcrumbs_wpseo_seperator_filter')) :
59 59
 
60 60
 	/**
61 61
 	 * Replaces the seperator.
@@ -63,16 +63,16 @@  discard block
 block discarded – undo
63 63
 	 * @package    lsx
64 64
 	 * @subpackage template-tags
65 65
 	 */
66
-	function lsx_breadcrumbs_wpseo_seperator_filter( $seperator ) {
66
+	function lsx_breadcrumbs_wpseo_seperator_filter($seperator) {
67 67
 		$seperator = '<i class="fa fa-angle-right" aria-hidden="true"></i>';
68 68
 		return $seperator;
69 69
 	}
70 70
 
71 71
 endif;
72 72
 
73
-add_filter( 'wpseo_breadcrumb_separator', 'lsx_breadcrumbs_wpseo_seperator_filter' );
73
+add_filter('wpseo_breadcrumb_separator', 'lsx_breadcrumbs_wpseo_seperator_filter');
74 74
 
75
-if ( ! function_exists( 'lsx_breadcrumbs_woocommerce_seperator_filter' ) ) :
75
+if ( ! function_exists('lsx_breadcrumbs_woocommerce_seperator_filter')) :
76 76
 
77 77
 	/**
78 78
 	 * Replaces the seperator.
@@ -80,16 +80,16 @@  discard block
 block discarded – undo
80 80
 	 * @package    lsx
81 81
 	 * @subpackage template-tags
82 82
 	 */
83
-	function lsx_breadcrumbs_woocommerce_seperator_filter( $defaults ) {
83
+	function lsx_breadcrumbs_woocommerce_seperator_filter($defaults) {
84 84
 		$defaults['delimiter'] = '<i class="fa fa-angle-right" aria-hidden="true"></i>';
85 85
 		return $defaults;
86 86
 	}
87 87
 
88 88
 endif;
89 89
 
90
-add_filter( 'woocommerce_breadcrumb_defaults', 'lsx_breadcrumbs_woocommerce_seperator_filter' );
90
+add_filter('woocommerce_breadcrumb_defaults', 'lsx_breadcrumbs_woocommerce_seperator_filter');
91 91
 
92
-if ( ! function_exists( 'lsx_site_title' ) ) :
92
+if ( ! function_exists('lsx_site_title')) :
93 93
 
94 94
 	/**
95 95
 	 * Displays logo when applicable.
@@ -100,15 +100,15 @@  discard block
 block discarded – undo
100 100
 	function lsx_site_title() {
101 101
 		?>
102 102
 			<div class="site-branding">
103
-				<h1 class="site-title"><a title="<?php bloginfo( 'name' ); ?>" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
104
-				<p class="site-description"><?php bloginfo( 'description' ); ?></p>
103
+				<h1 class="site-title"><a title="<?php bloginfo('name'); ?>" href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a></h1>
104
+				<p class="site-description"><?php bloginfo('description'); ?></p>
105 105
 			</div>
106 106
 		<?php
107 107
 	}
108 108
 
109 109
 endif;
110 110
 
111
-if ( ! function_exists( 'lsx_post_meta_list_top' ) ) :
111
+if ( ! function_exists('lsx_post_meta_list_top')) :
112 112
 
113 113
 	/**
114 114
 	 * Add customisable post meta (post list - above title).
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
 
130 130
 endif;
131 131
 
132
-if ( ! function_exists( 'lsx_post_meta_single_top' ) ) :
132
+if ( ! function_exists('lsx_post_meta_single_top')) :
133 133
 
134 134
 	/**
135 135
 	 * Add customisable post meta (single post - above title).
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
 
151 151
 endif;
152 152
 
153
-if ( ! function_exists( 'lsx_post_meta_single_bottom' ) ) :
153
+if ( ! function_exists('lsx_post_meta_single_bottom')) :
154 154
 
155 155
 	/**
156 156
 	 * Add customisable post meta (single post - below title).
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 
170 170
 endif;
171 171
 
172
-if ( ! function_exists( 'lsx_post_meta_avatar' ) ) :
172
+if ( ! function_exists('lsx_post_meta_avatar')) :
173 173
 
174 174
 	/**
175 175
 	 * Add customisable post meta: author's avatar.
@@ -179,20 +179,20 @@  discard block
 block discarded – undo
179 179
 	 */
180 180
 	function lsx_post_meta_avatar() {
181 181
 		$author = get_the_author();
182
-		$author_id = get_the_author_meta( 'ID' );
183
-		$author_avatar = get_avatar( $author_id, 80 );
184
-		$author_url = get_author_posts_url( $author_id );
182
+		$author_id = get_the_author_meta('ID');
183
+		$author_avatar = get_avatar($author_id, 80);
184
+		$author_url = get_author_posts_url($author_id);
185 185
 
186 186
 		printf(
187 187
 			'<a href="%1$s" class="post-meta-avatar">%2$s</a>',
188
-			esc_url( $author_url ),
189
-			wp_kses_post( $author_avatar )
188
+			esc_url($author_url),
189
+			wp_kses_post($author_avatar)
190 190
 		);
191 191
 	}
192 192
 
193 193
 endif;
194 194
 
195
-if ( ! function_exists( 'lsx_post_meta_date' ) ) :
195
+if ( ! function_exists('lsx_post_meta_date')) :
196 196
 
197 197
 	/**
198 198
 	 * Add customisable post meta: post date.
@@ -203,23 +203,23 @@  discard block
 block discarded – undo
203 203
 	function lsx_post_meta_date() {
204 204
 		$time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
205 205
 
206
-		$time_string = sprintf( $time_string,
207
-			esc_attr( get_the_date( 'c' ) ),
206
+		$time_string = sprintf($time_string,
207
+			esc_attr(get_the_date('c')),
208 208
 			get_the_date(),
209
-			esc_attr( get_the_modified_date( 'c' ) ),
209
+			esc_attr(get_the_modified_date('c')),
210 210
 			get_the_modified_date()
211 211
 		);
212 212
 
213 213
 		printf(
214 214
 			'<span class="post-meta-time updated"><a href="%1$s" rel="bookmark">%2$s</a></span>',
215
-			esc_url( get_permalink() ),
216
-			wp_kses_post( $time_string )
215
+			esc_url(get_permalink()),
216
+			wp_kses_post($time_string)
217 217
 		);
218 218
 	}
219 219
 
220 220
 endif;
221 221
 
222
-if ( ! function_exists( 'lsx_post_meta_author' ) ) :
222
+if ( ! function_exists('lsx_post_meta_author')) :
223 223
 
224 224
 	/**
225 225
 	 * Add customisable post meta: post author.
@@ -229,27 +229,27 @@  discard block
 block discarded – undo
229 229
 	 */
230 230
 	function lsx_post_meta_author() {
231 231
 		$author = get_the_author();
232
-		$author_url = get_author_posts_url( get_the_author_meta( 'ID' ) );
232
+		$author_url = get_author_posts_url(get_the_author_meta('ID'));
233 233
 
234
-		if ( empty( $author ) ) {
234
+		if (empty($author)) {
235 235
 			global $post;
236 236
 
237
-			$author = get_user_by( 'ID', $post->post_author );
237
+			$author = get_user_by('ID', $post->post_author);
238 238
 			$author = $author->display_name;
239
-			$author_url = get_author_posts_url( $post->post_author );
239
+			$author_url = get_author_posts_url($post->post_author);
240 240
 		}
241 241
 
242 242
 		printf(
243 243
 			'<span class="vcard post-meta-author"><span>%1$s</span> <span class="fn"><a href="%2$s">%3$s</a></span></span>',
244
-			esc_html__( 'by', 'lsx' ),
245
-			esc_url( $author_url ),
246
-			esc_html( $author )
244
+			esc_html__('by', 'lsx'),
245
+			esc_url($author_url),
246
+			esc_html($author)
247 247
 		);
248 248
 	}
249 249
 
250 250
 endif;
251 251
 
252
-if ( ! function_exists( 'lsx_post_meta_category' ) ) :
252
+if ( ! function_exists('lsx_post_meta_category')) :
253 253
 
254 254
 	/**
255 255
 	 * Add customisable post meta: post category(ies).
@@ -258,25 +258,25 @@  discard block
 block discarded – undo
258 258
 	 * @subpackage template-tags
259 259
 	 */
260 260
 	function lsx_post_meta_category() {
261
-		$post_categories = wp_get_post_categories( get_the_ID() );
261
+		$post_categories = wp_get_post_categories(get_the_ID());
262 262
 		$cats = array();
263 263
 
264
-		foreach ( $post_categories as $c ) {
265
-			$cat = get_category( $c );
264
+		foreach ($post_categories as $c) {
265
+			$cat = get_category($c);
266 266
 			/* Translators: %s: category name */
267
-			$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>';
267
+			$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>';
268 268
 		}
269 269
 
270
-		if ( ! empty( $cats ) ) {
270
+		if ( ! empty($cats)) {
271 271
 			?>
272
-			<span class="post-meta-categories"><span><?php esc_html_e( 'Posted in', 'lsx' ); ?></span> <?php echo wp_kses_post( implode( ', ', $cats ) ); ?></span>
272
+			<span class="post-meta-categories"><span><?php esc_html_e('Posted in', 'lsx'); ?></span> <?php echo wp_kses_post(implode(', ', $cats)); ?></span>
273 273
 			<?php
274 274
 		}
275 275
 	}
276 276
 
277 277
 endif;
278 278
 
279
-if ( ! function_exists( 'lsx_post_tags' ) ) :
279
+if ( ! function_exists('lsx_post_tags')) :
280 280
 
281 281
 	/**
282 282
 	 * Add customisable post meta: post tag(s).
@@ -285,10 +285,10 @@  discard block
 block discarded – undo
285 285
 	 * @subpackage template-tags
286 286
 	 */
287 287
 	function lsx_post_tags() {
288
-		if ( has_tag() ) :
288
+		if (has_tag()) :
289 289
 			?>
290 290
 			<div class="post-tags">
291
-				<?php echo wp_kses_post( get_the_tag_list( '' ) ); ?>
291
+				<?php echo wp_kses_post(get_the_tag_list('')); ?>
292 292
 			</div>
293 293
 			<?php
294 294
 		endif;
@@ -296,9 +296,9 @@  discard block
 block discarded – undo
296 296
 
297 297
 endif;
298 298
 
299
-add_action( 'lsx_content_post_tags', 'lsx_post_tags', 10 );
299
+add_action('lsx_content_post_tags', 'lsx_post_tags', 10);
300 300
 
301
-if ( ! function_exists( 'lsx_sharing_output' ) ) :
301
+if ( ! function_exists('lsx_sharing_output')) :
302 302
 
303 303
 	/**
304 304
 	 * Display sharing buttons.
@@ -308,14 +308,14 @@  discard block
 block discarded – undo
308 308
 	 */
309 309
 	function lsx_sharing_output() {
310 310
 		global $lsx_sharing;
311
-		echo wp_kses_post( $lsx_sharing->sharing_buttons() );
311
+		echo wp_kses_post($lsx_sharing->sharing_buttons());
312 312
 	}
313 313
 
314 314
 endif;
315 315
 
316
-add_action( 'lsx_content_sharing', 'lsx_sharing_output', 20 );
316
+add_action('lsx_content_sharing', 'lsx_sharing_output', 20);
317 317
 
318
-if ( ! function_exists( 'lsx_translate_format_to_fontawesome' ) ) :
318
+if ( ! function_exists('lsx_translate_format_to_fontawesome')) :
319 319
 
320 320
 	/**
321 321
 	 * Translate post format to Font Awesome class.
@@ -323,8 +323,8 @@  discard block
 block discarded – undo
323 323
 	 * @package    lsx
324 324
 	 * @subpackage template-tags
325 325
 	 */
326
-	function lsx_translate_format_to_fontawesome( $format ) {
327
-		switch ( $format ) {
326
+	function lsx_translate_format_to_fontawesome($format) {
327
+		switch ($format) {
328 328
 			case 'image':
329 329
 				$format = 'camera';
330 330
 				break;
@@ -356,7 +356,7 @@  discard block
 block discarded – undo
356 356
 
357 357
 endif;
358 358
 
359
-if ( ! function_exists( 'lsx_paging_nav' ) ) :
359
+if ( ! function_exists('lsx_paging_nav')) :
360 360
 
361 361
 	/**
362 362
 	 * Display navigation to next/previous set of posts when applicable.
@@ -367,37 +367,37 @@  discard block
 block discarded – undo
367 367
 	function lsx_paging_nav() {
368 368
 		global $wp_query;
369 369
 
370
-		if ( $wp_query->max_num_pages < 2 ) {
370
+		if ($wp_query->max_num_pages < 2) {
371 371
 			return;
372 372
 		}
373 373
 
374
-		if ( true === apply_filters( 'lsx_paging_nav_disable', false ) ) {
374
+		if (true === apply_filters('lsx_paging_nav_disable', false)) {
375 375
 			return true;
376
-		} elseif ( current_theme_supports( 'infinite-scroll' ) && class_exists( 'The_Neverending_Home_Page' ) ) {
376
+		} elseif (current_theme_supports('infinite-scroll') && class_exists('The_Neverending_Home_Page')) {
377 377
 			return true;
378 378
 		} else {
379 379
 			$html = '';
380 380
 			$html .= '<div class="lsx-pagination-wrapper">' . PHP_EOL;
381 381
 			$html .= '<div class="lsx-breaker"></div>' . PHP_EOL;
382 382
 			$html .= '<div class="lsx-pagination">' . PHP_EOL;
383
-			$html .= paginate_links( array(
384
-				'base'               => str_replace( 999999999, '%#%', esc_url( get_pagenum_link( 999999999 ) ) ),
383
+			$html .= paginate_links(array(
384
+				'base'               => str_replace(999999999, '%#%', esc_url(get_pagenum_link(999999999))),
385 385
 				'format'             => '?paged=%#%',
386 386
 				'total'              => $wp_query->max_num_pages,
387
-				'current'            => max( 1, intval( get_query_var( 'paged' ) ) ),
388
-				'prev_text'          => '<span class="meta-nav">&larr;</span> ' . esc_html__( 'Previous', 'lsx' ),
389
-				'next_text'          => esc_html__( 'Next', 'lsx' ) . ' <span class="meta-nav">&rarr;</span>',
390
-			) );
387
+				'current'            => max(1, intval(get_query_var('paged'))),
388
+				'prev_text'          => '<span class="meta-nav">&larr;</span> ' . esc_html__('Previous', 'lsx'),
389
+				'next_text'          => esc_html__('Next', 'lsx') . ' <span class="meta-nav">&rarr;</span>',
390
+			));
391 391
 			$html .= '</div>' . PHP_EOL;
392 392
 			$html .= '</div>' . PHP_EOL;
393 393
 
394
-			echo wp_kses_post( $html );
394
+			echo wp_kses_post($html);
395 395
 		}
396 396
 	}
397 397
 
398 398
 endif;
399 399
 
400
-if ( ! function_exists( 'lsx_post_nav' ) ) :
400
+if ( ! function_exists('lsx_post_nav')) :
401 401
 
402 402
 	/**
403 403
 	 * Display navigation to next/previous post when applicable.
@@ -406,24 +406,24 @@  discard block
 block discarded – undo
406 406
 	 * @subpackage template-tags
407 407
 	 */
408 408
 	function lsx_post_nav() {
409
-		$previous = ( is_attachment() ) ? get_post( get_post()->post_parent ) : get_adjacent_post( false, '', true );
410
-		$next     = get_adjacent_post( false, '', false );
409
+		$previous = (is_attachment()) ? get_post(get_post()->post_parent) : get_adjacent_post(false, '', true);
410
+		$next     = get_adjacent_post(false, '', false);
411 411
 
412
-		if ( ! $next && ! $previous ) {
412
+		if ( ! $next && ! $previous) {
413 413
 			return;
414 414
 		}
415 415
 
416 416
 		$default_size = 'sm';
417
-		$size         = apply_filters( 'lsx_bootstrap_column_size', $default_size );
417
+		$size         = apply_filters('lsx_bootstrap_column_size', $default_size);
418 418
 		?>
419 419
 		<nav class="navigation post-navigation" role="navigation">
420 420
 			<div class="lsx-breaker"></div>
421 421
 			<div class="nav-links pager row">
422
-				<div class="previous <?php echo 'col-' . esc_attr( $size ) . '-6'; ?>">
423
-					<?php previous_post_link( '%link', '<p class="nav-links-description">' . esc_html_x( 'Previous Post', 'Previous post link', 'lsx' ) . '</p><h3>%title</h3>' ); ?>
422
+				<div class="previous <?php echo 'col-' . esc_attr($size) . '-6'; ?>">
423
+					<?php previous_post_link('%link', '<p class="nav-links-description">' . esc_html_x('Previous Post', 'Previous post link', 'lsx') . '</p><h3>%title</h3>'); ?>
424 424
 				</div>
425
-				<div class="next <?php echo 'col-' . esc_attr( $size ) . '-6'; ?>">
426
-					<?php next_post_link( '%link', '<p class="nav-links-description">' . esc_html_x( 'Next Post', 'Next post link', 'lsx' ) . '</p><h3>%title</h3>' ); ?>
425
+				<div class="next <?php echo 'col-' . esc_attr($size) . '-6'; ?>">
426
+					<?php next_post_link('%link', '<p class="nav-links-description">' . esc_html_x('Next Post', 'Next post link', 'lsx') . '</p><h3>%title</h3>'); ?>
427 427
 				</div>
428 428
 			</div><!-- .nav-links -->
429 429
 		</nav><!-- .navigation -->
@@ -432,7 +432,7 @@  discard block
 block discarded – undo
432 432
 
433 433
 endif;
434 434
 
435
-if ( ! function_exists( 'lsx_site_identity' ) ) :
435
+if ( ! function_exists('lsx_site_identity')) :
436 436
 
437 437
 	/**
438 438
 	 * Outputs either the Site Title or the Site Logo.
@@ -441,10 +441,10 @@  discard block
 block discarded – undo
441 441
 	 * @subpackage template-tags
442 442
 	 */
443 443
 	function lsx_site_identity() {
444
-		if ( function_exists( 'has_custom_logo' ) && has_custom_logo() ) {
444
+		if (function_exists('has_custom_logo') && has_custom_logo()) {
445 445
 			the_custom_logo();
446 446
 		} else {
447
-			if ( get_theme_mod( 'site_logo_header_text', 1 ) ) {
447
+			if (get_theme_mod('site_logo_header_text', 1)) {
448 448
 				lsx_site_title();
449 449
 			}
450 450
 		}
@@ -452,7 +452,7 @@  discard block
 block discarded – undo
452 452
 
453 453
 endif;
454 454
 
455
-if ( ! function_exists( 'lsx_navbar_header' ) ) :
455
+if ( ! function_exists('lsx_navbar_header')) :
456 456
 	/**
457 457
 	 * Outputs the Nav Menu.
458 458
 	 *
@@ -463,17 +463,17 @@  discard block
 block discarded – undo
463 463
 		?>
464 464
 		<div class="navbar-header" itemscope itemtype="http://schema.org/WebPage">
465 465
 			<?php
466
-				if ( has_nav_menu( 'primary' ) ) :
466
+				if (has_nav_menu('primary')) :
467 467
 					?>
468 468
 					<div class="wrapper-toggle" data-toggle="collapse" data-target=".primary-navbar">
469 469
 						<button type="button" class="navbar-toggle">
470
-							<span class="sr-only"><?php esc_html_e( 'Toggle navigation', 'lsx' ); ?></span>
470
+							<span class="sr-only"><?php esc_html_e('Toggle navigation', 'lsx'); ?></span>
471 471
 							<span class="icon-bar"></span>
472 472
 							<span class="icon-bar"></span>
473 473
 							<span class="icon-bar"></span>
474 474
 							<span class="icon-bar"></span>
475 475
 						</button>
476
-						<span class="mobile-menu-title"><?php esc_html_e( 'Menu', 'lsx' ); ?></span>
476
+						<span class="mobile-menu-title"><?php esc_html_e('Menu', 'lsx'); ?></span>
477 477
 					</div>
478 478
 					<?php
479 479
 				endif;
@@ -486,9 +486,9 @@  discard block
 block discarded – undo
486 486
 
487 487
 endif;
488 488
 
489
-add_action( 'lsx_nav_before', 'lsx_navbar_header' );
489
+add_action('lsx_nav_before', 'lsx_navbar_header');
490 490
 
491
-if ( ! function_exists( 'lsx_nav_menu' ) ) :
491
+if ( ! function_exists('lsx_nav_menu')) :
492 492
 
493 493
 	/**
494 494
 	 * Outputs the Nav Menu.
@@ -497,17 +497,17 @@  discard block
 block discarded – undo
497 497
 	 * @subpackage template-tags
498 498
 	 */
499 499
 	function lsx_nav_menu() {
500
-		if ( has_nav_menu( 'primary' ) ) :
500
+		if (has_nav_menu('primary')) :
501 501
 			?>
502 502
 			<nav class="primary-navbar collapse navbar-collapse">
503 503
 				<?php
504
-					wp_nav_menu( array(
504
+					wp_nav_menu(array(
505 505
 						'theme_location' => 'primary',
506 506
 						'depth'          => 3,
507 507
 						'container'      => false,
508 508
 						'menu_class'     => 'nav navbar-nav',
509 509
 						'walker'         => new LSX_Bootstrap_Navwalker(),
510
-					) );
510
+					));
511 511
 				?>
512 512
 			</nav>
513 513
 			<?php
@@ -516,7 +516,7 @@  discard block
 block discarded – undo
516 516
 
517 517
 endif;
518 518
 
519
-if ( ! function_exists( 'lsx_sitemap_pages' ) ) :
519
+if ( ! function_exists('lsx_sitemap_pages')) :
520 520
 
521 521
 	/**
522 522
 	 * Outputs Pages for the Sitemap Template.
@@ -532,15 +532,15 @@  discard block
 block discarded – undo
532 532
 			'post_type'      => 'page',
533 533
 		);
534 534
 
535
-		$pages = new WP_Query( $page_args );
535
+		$pages = new WP_Query($page_args);
536 536
 
537
-		if ( $pages->have_posts() ) {
538
-			echo '<h2>' . esc_html__( 'Pages', 'lsx' ) . '</h2>';
537
+		if ($pages->have_posts()) {
538
+			echo '<h2>' . esc_html__('Pages', 'lsx') . '</h2>';
539 539
 			echo '<ul>';
540 540
 
541
-			while ( $pages->have_posts() ) {
541
+			while ($pages->have_posts()) {
542 542
 				$pages->the_post();
543
-				echo '<li class="page_item page-item-' . esc_attr( get_the_ID() ) . '"><a href="' . esc_url( get_permalink() ) . '" title="">' . get_the_title() . '</a></li>';
543
+				echo '<li class="page_item page-item-' . esc_attr(get_the_ID()) . '"><a href="' . esc_url(get_permalink()) . '" title="">' . get_the_title() . '</a></li>';
544 544
 			}
545 545
 
546 546
 			echo '</ul>';
@@ -550,7 +550,7 @@  discard block
 block discarded – undo
550 550
 
551 551
 endif;
552 552
 
553
-if ( ! function_exists( 'lsx_sitemap_custom_post_type' ) ) :
553
+if ( ! function_exists('lsx_sitemap_custom_post_type')) :
554 554
 
555 555
 	/**
556 556
 	 * Outputs a custom post type section.
@@ -564,9 +564,9 @@  discard block
 block discarded – undo
564 564
 			'_builtin' => false,
565 565
 		);
566 566
 
567
-		$post_types = get_post_types( $args , 'names' );
567
+		$post_types = get_post_types($args, 'names');
568 568
 
569
-		foreach ( $post_types as $post_type ) {
569
+		foreach ($post_types as $post_type) {
570 570
 			$post_type_args = array(
571 571
 				'post_type'      => 'page',
572 572
 				'posts_per_page' => 99,
@@ -574,22 +574,22 @@  discard block
 block discarded – undo
574 574
 				'post_type'      => $post_type,
575 575
 			);
576 576
 
577
-			$post_type_items  = new WP_Query( $post_type_args );
578
-			$post_type_object = get_post_type_object( $post_type );
577
+			$post_type_items  = new WP_Query($post_type_args);
578
+			$post_type_object = get_post_type_object($post_type);
579 579
 
580
-			if ( ! empty( $post_type_object ) ) {
580
+			if ( ! empty($post_type_object)) {
581 581
 				$title = $post_type_object->labels->name;
582 582
 			} else {
583
-				$title = ucwords( $post_type );
583
+				$title = ucwords($post_type);
584 584
 			}
585 585
 
586
-			if ( $post_type_items->have_posts() ) {
587
-				echo '<h2>' . esc_html( $title ) . '</h2>';
586
+			if ($post_type_items->have_posts()) {
587
+				echo '<h2>' . esc_html($title) . '</h2>';
588 588
 				echo '<ul>';
589 589
 
590
-				while ( $post_type_items->have_posts() ) {
590
+				while ($post_type_items->have_posts()) {
591 591
 					$post_type_items->the_post();
592
-					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>';
592
+					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>';
593 593
 				}
594 594
 
595 595
 				echo '</ul>';
@@ -600,7 +600,7 @@  discard block
 block discarded – undo
600 600
 
601 601
 endif;
602 602
 
603
-if ( ! function_exists( 'lsx_sitemap_taxonomy_clouds' ) ) :
603
+if ( ! function_exists('lsx_sitemap_taxonomy_clouds')) :
604 604
 
605 605
 	/**
606 606
 	 * Outputs the public taxonomies.
@@ -614,18 +614,18 @@  discard block
 block discarded – undo
614 614
 			'_builtin' => false,
615 615
 		);
616 616
 
617
-		$taxonomies = get_taxonomies( $taxonomy_args );
617
+		$taxonomies = get_taxonomies($taxonomy_args);
618 618
 
619
-		if ( ! empty( $taxonomies ) ) {
620
-			foreach ( $taxonomies as $taxonomy_id => $taxonomy ) {
621
-				$tag_cloud = wp_tag_cloud( array(
619
+		if ( ! empty($taxonomies)) {
620
+			foreach ($taxonomies as $taxonomy_id => $taxonomy) {
621
+				$tag_cloud = wp_tag_cloud(array(
622 622
 					'taxonomy' => $taxonomy_id,
623 623
 					'echo'     => false,
624
-				) );
624
+				));
625 625
 
626
-				if ( ! empty( $tag_cloud ) ) {
627
-					echo '<h2>' . esc_html( $taxonomy ) . '</h2>';
628
-					echo '<aside id="' . esc_attr( $taxonomy_id ) . '" class="widget widget_' . esc_attr( $taxonomy_id ) . '">' . esc_html( $tag_cloud ) . '</aside>';
626
+				if ( ! empty($tag_cloud)) {
627
+					echo '<h2>' . esc_html($taxonomy) . '</h2>';
628
+					echo '<aside id="' . esc_attr($taxonomy_id) . '" class="widget widget_' . esc_attr($taxonomy_id) . '">' . esc_html($tag_cloud) . '</aside>';
629 629
 				}
630 630
 			}
631 631
 		}
@@ -633,7 +633,7 @@  discard block
 block discarded – undo
633 633
 
634 634
 endif;
635 635
 
636
-if ( ! function_exists( 'lsx_add_top_menu' ) ) :
636
+if ( ! function_exists('lsx_add_top_menu')) :
637 637
 
638 638
 	/**
639 639
 	 * Adds our top menu to the theme.
@@ -642,28 +642,28 @@  discard block
 block discarded – undo
642 642
 	 * @subpackage template-tags
643 643
 	 */
644 644
 	function lsx_add_top_menu() {
645
-		if ( has_nav_menu( 'top-menu' ) || has_nav_menu( 'top-menu-left' ) ) :
645
+		if (has_nav_menu('top-menu') || has_nav_menu('top-menu-left')) :
646 646
 			?>
647 647
 			<div id="top-menu" class="<?php lsx_top_menu_classes(); ?>">
648 648
 				<div class="container">
649
-					<?php if ( has_nav_menu( 'top-menu' ) ) : ?>
649
+					<?php if (has_nav_menu('top-menu')) : ?>
650 650
 						<nav class="top-menu">
651 651
 							<?php
652
-								wp_nav_menu( array(
652
+								wp_nav_menu(array(
653 653
 									'theme_location' => 'top-menu',
654 654
 									'walker'         => new LSX_Bootstrap_Navwalker(),
655
-								) );
655
+								));
656 656
 							?>
657 657
 						</nav>
658 658
 					<?php endif; ?>
659 659
 
660
-					<?php if ( has_nav_menu( 'top-menu-left' ) ) : ?>
660
+					<?php if (has_nav_menu('top-menu-left')) : ?>
661 661
 						<nav class="top-menu pull-left">
662 662
 							<?php
663
-								wp_nav_menu( array(
663
+								wp_nav_menu(array(
664 664
 									'theme_location' => 'top-menu-left',
665 665
 									'walker'         => new LSX_Bootstrap_Navwalker(),
666
-								) );
666
+								));
667 667
 							?>
668 668
 						</nav>
669 669
 					<?php endif; ?>
@@ -675,9 +675,9 @@  discard block
 block discarded – undo
675 675
 
676 676
 endif;
677 677
 
678
-add_action( 'lsx_header_before', 'lsx_add_top_menu' );
678
+add_action('lsx_header_before', 'lsx_add_top_menu');
679 679
 
680
-if ( ! function_exists( 'lsx_get_my_url' ) ) :
680
+if ( ! function_exists('lsx_get_my_url')) :
681 681
 
682 682
 	/**
683 683
 	 * Return URL from a link in the content.
@@ -686,11 +686,11 @@  discard block
 block discarded – undo
686 686
 	 * @subpackage template-tags
687 687
 	 */
688 688
 	function lsx_get_my_url() {
689
-		if ( ! preg_match( '/<a\s[^>]*?href=[\'"](.+?)[\'"]/is', get_the_content(), $matches ) ) {
689
+		if ( ! preg_match('/<a\s[^>]*?href=[\'"](.+?)[\'"]/is', get_the_content(), $matches)) {
690 690
 			return false;
691 691
 		}
692 692
 
693
-		return esc_url_raw( $matches[1] );
693
+		return esc_url_raw($matches[1]);
694 694
 	}
695 695
 
696 696
 endif;
Please login to merge, or discard this patch.
includes/admin/welcome-screen/component-footer.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -10,30 +10,30 @@  discard block
 block discarded – undo
10 10
 <div class="row">
11 11
 	<div class="col-md-6">
12 12
 		<div class="box mailchimp">
13
-			<h2><?php esc_html_e( 'Newsletter', 'lsx' ); ?></h2>
14
-			<p><?php esc_html_e( 'Subscribe to our mailing list.', 'lsx' ); ?></p>
13
+			<h2><?php esc_html_e('Newsletter', 'lsx'); ?></h2>
14
+			<p><?php esc_html_e('Subscribe to our mailing list.', 'lsx'); ?></p>
15 15
 
16 16
 			<!-- Begin MailChimp Signup Form -->
17 17
 			<form action="//lsdev.us2.list-manage.com/subscribe/post?u=e50b2c5c82f4b42ea978af479&amp;id=92c36218e5" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
18 18
 				<div id="mc_embed_signup">
19 19
 					<div id="mc_embed_signup_scroll">
20 20
 						<div class="mc-field-group">
21
-							<label for="mce-EMAIL"><?php esc_html_e( 'Email Address', 'lsx' ); ?> <span class="asterisk">*</span></label>
21
+							<label for="mce-EMAIL"><?php esc_html_e('Email Address', 'lsx'); ?> <span class="asterisk">*</span></label>
22 22
 							<input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL">
23 23
 						</div>
24 24
 						<div class="mc-field-group">
25
-							<label for="mce-FNAME"><?php esc_html_e( 'First Name', 'lsx' ); ?> </label>
25
+							<label for="mce-FNAME"><?php esc_html_e('First Name', 'lsx'); ?> </label>
26 26
 							<input type="text" value="" name="FNAME" class="" id="mce-FNAME">
27 27
 						</div>
28 28
 						<div class="mc-field-group">
29
-							<label for="mce-LNAME"><?php esc_html_e( 'Last Name', 'lsx' ); ?> </label>
29
+							<label for="mce-LNAME"><?php esc_html_e('Last Name', 'lsx'); ?> </label>
30 30
 							<input type="text" value="" name="LNAME" class="" id="mce-LNAME">
31 31
 						</div>
32 32
 					</div>
33 33
 					<div style="position:absolute;left:-5000px;" aria-hidden="true"><input type="text" name="b_e50b2c5c82f4b42ea978af479_92c36218e5" tabindex="-1" value=""></div>
34 34
 				</div>
35 35
 				<div class="more-button">
36
-					<input type="submit" value="<?php esc_html_e( 'Subscribe', 'lsx' ); ?>" name="subscribe" class="button button-primary">
36
+					<input type="submit" value="<?php esc_html_e('Subscribe', 'lsx'); ?>" name="subscribe" class="button button-primary">
37 37
 				</div>
38 38
 			</form>
39 39
 			<!--End mc_embed_signup-->
@@ -42,13 +42,13 @@  discard block
 block discarded – undo
42 42
 
43 43
 	<div class="col-md-6">
44 44
 		<div class="box suggest">
45
-			<h2><?php esc_html_e( 'Enjoying LSX?', 'lsx' ); ?></h2>
45
+			<h2><?php esc_html_e('Enjoying LSX?', 'lsx'); ?></h2>
46 46
 
47 47
 			<p>
48 48
 				<?php
49 49
 					printf(
50 50
 						/* Translators: 1: HTML open tag link, 2: HTML close tag link */
51
-						esc_html__( 'Why not %1$sleave a review%2$s on WordPress.org? We\'re looking foward to all our users\' feedback!', 'lsx' ),
51
+						esc_html__('Why not %1$sleave a review%2$s on WordPress.org? We\'re looking foward to all our users\' feedback!', 'lsx'),
52 52
 						'<a href="https://wordpress.org/themes/lsx" target="_blank rel="noopener noreferrer">',
53 53
 						'</a>'
54 54
 					);
Please login to merge, or discard this patch.
includes/layout.php 1 patch
Spacing   +98 added lines, -98 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  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
 	/**
16 16
 	 * Layout selector.
@@ -18,14 +18,14 @@  discard block
 block discarded – undo
18 18
 	 * @package    lsx
19 19
 	 * @subpackage layout
20 20
 	 */
21
-	function lsx_layout_selector( $class, $area = 'site' ) {
21
+	function lsx_layout_selector($class, $area = 'site') {
22 22
 		$return_class = '';
23
-		$layout       = get_theme_mod( 'lsx_layout', '2cr' );
24
-		$layout       = apply_filters( 'lsx_layout', $layout );
23
+		$layout       = get_theme_mod('lsx_layout', '2cr');
24
+		$layout       = apply_filters('lsx_layout', $layout);
25 25
 		$default_size = 'sm';
26
-		$size         = apply_filters( 'lsx_bootstrap_column_size', $default_size );
26
+		$size         = apply_filters('lsx_bootstrap_column_size', $default_size);
27 27
 
28
-		switch ( $layout ) {
28
+		switch ($layout) {
29 29
 			case '1c':
30 30
 				$main_class    = 'col-' . $size . '-12';
31 31
 				$sidebar_class = 'col-' . $size . '-12';
@@ -44,12 +44,12 @@  discard block
 block discarded – undo
44 44
 				break;
45 45
 		}
46 46
 
47
-		if ( 'main' === $class ) {
48
-			$return_class = apply_filters( 'lsx_layout_selector', $main_class, $class, $layout, $size );
47
+		if ('main' === $class) {
48
+			$return_class = apply_filters('lsx_layout_selector', $main_class, $class, $layout, $size);
49 49
 		}
50 50
 
51
-		if ( 'sidebar' === $class ) {
52
-			$return_class = apply_filters( 'lsx_layout_selector', $sidebar_class, $class, $layout, $size );
51
+		if ('sidebar' === $class) {
52
+			$return_class = apply_filters('lsx_layout_selector', $sidebar_class, $class, $layout, $size);
53 53
 		}
54 54
 
55 55
 		return $return_class;
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
 endif;
59 59
 
60
-if ( ! function_exists( 'lsx_main_class' ) ) :
60
+if ( ! function_exists('lsx_main_class')) :
61 61
 
62 62
 	/**
63 63
 	 * .main classes.
@@ -66,12 +66,12 @@  discard block
 block discarded – undo
66 66
 	 * @subpackage layout
67 67
 	 */
68 68
 	function lsx_main_class() {
69
-		return lsx_layout_selector( 'main' );
69
+		return lsx_layout_selector('main');
70 70
 	}
71 71
 
72 72
 endif;
73 73
 
74
-if ( ! function_exists( 'lsx_sidebar_class' ) ) :
74
+if ( ! function_exists('lsx_sidebar_class')) :
75 75
 
76 76
 	/**
77 77
 	 * .sidebar classes.
@@ -80,12 +80,12 @@  discard block
 block discarded – undo
80 80
 	 * @subpackage layout
81 81
 	 */
82 82
 	function lsx_sidebar_class() {
83
-		return lsx_layout_selector( 'sidebar' );
83
+		return lsx_layout_selector('sidebar');
84 84
 	}
85 85
 
86 86
 endif;
87 87
 
88
-if ( ! function_exists( 'lsx_header_classes' ) ) :
88
+if ( ! function_exists('lsx_header_classes')) :
89 89
 
90 90
 	/**
91 91
 	 * Output the classes for the header.
@@ -93,19 +93,19 @@  discard block
 block discarded – undo
93 93
 	 * @package    lsx
94 94
 	 * @subpackage layout
95 95
 	 */
96
-	function lsx_header_classes( $additional = false ) {
96
+	function lsx_header_classes($additional = false) {
97 97
 		$classes = 'banner navbar navbar-default';
98 98
 
99
-		if ( false !== $additional ) {
99
+		if (false !== $additional) {
100 100
 			$classes .= ' ' . $additional;
101 101
 		}
102 102
 
103
-		echo esc_attr( $classes );
103
+		echo esc_attr($classes);
104 104
 	}
105 105
 
106 106
 endif;
107 107
 
108
-if ( ! function_exists( 'lsx_top_menu_classes' ) ) :
108
+if ( ! function_exists('lsx_top_menu_classes')) :
109 109
 
110 110
 	/**
111 111
 	 * Output the classes for the top-menu.
@@ -113,19 +113,19 @@  discard block
 block discarded – undo
113 113
 	 * @package    lsx
114 114
 	 * @subpackage layout
115 115
 	 */
116
-	function lsx_top_menu_classes( $additional = false ) {
116
+	function lsx_top_menu_classes($additional = false) {
117 117
 		$classes = 'top-menu-default';
118 118
 
119
-		if ( false !== $additional ) {
119
+		if (false !== $additional) {
120 120
 			$classes .= ' ' . $additional;
121 121
 		}
122 122
 
123
-		echo esc_attr( $classes );
123
+		echo esc_attr($classes);
124 124
 	}
125 125
 
126 126
 endif;
127 127
 
128
-if ( ! function_exists( 'lsx_add_footer_sidebar_area' ) ) :
128
+if ( ! function_exists('lsx_add_footer_sidebar_area')) :
129 129
 
130 130
 	/**
131 131
 	 * Output the Footer CTA and/pr Footer Widgets.
@@ -134,34 +134,34 @@  discard block
 block discarded – undo
134 134
 	 * @subpackage layout
135 135
 	 */
136 136
 	function lsx_add_footer_sidebar_area() {
137
-		if ( is_active_sidebar( 'sidebar-footer-cta' ) ) : ?>
137
+		if (is_active_sidebar('sidebar-footer-cta')) : ?>
138 138
 			<div id="footer-cta">
139 139
 				<div class="container">
140 140
 					<div class="lsx-full-width">
141 141
 						<div class="lsx-hero-unit">
142
-							<?php dynamic_sidebar( 'sidebar-footer-cta' ); ?>
142
+							<?php dynamic_sidebar('sidebar-footer-cta'); ?>
143 143
 						</div>
144 144
 					</div>
145 145
 				</div>
146 146
 			</div>
147 147
 		<?php endif; ?>
148 148
 
149
-		<?php if ( is_active_sidebar( 'sidebar-footer' ) ) : ?>
149
+		<?php if (is_active_sidebar('sidebar-footer')) : ?>
150 150
 			<div id="footer-widgets">
151 151
 				<div class="container">
152 152
 					<div class="row">
153
-						<?php dynamic_sidebar( 'sidebar-footer' ); ?>
153
+						<?php dynamic_sidebar('sidebar-footer'); ?>
154 154
 					</div>
155 155
 				</div>
156 156
 			</div>
157 157
 		<?php endif;
158 158
 	}
159 159
 
160
-	add_action( 'lsx_footer_before', 'lsx_add_footer_sidebar_area' );
160
+	add_action('lsx_footer_before', 'lsx_add_footer_sidebar_area');
161 161
 
162 162
 endif;
163 163
 
164
-if ( ! function_exists( 'lsx_global_header' ) ) :
164
+if ( ! function_exists('lsx_global_header')) :
165 165
 
166 166
 	/**
167 167
 	 * Displays the global header.
@@ -174,21 +174,21 @@  discard block
 block discarded – undo
174 174
 		// 	return;
175 175
 		// }
176 176
 
177
-		$show_on_front  = get_option( 'show_on_front' );
177
+		$show_on_front  = get_option('show_on_front');
178 178
 		$queried_object = get_queried_object();
179 179
 		$default_size   = 'sm';
180
-		$size           = apply_filters( 'lsx_bootstrap_column_size', $default_size );
180
+		$size           = apply_filters('lsx_bootstrap_column_size', $default_size);
181 181
 
182
-		if ( true === apply_filters( 'lsx_global_header_disable', false ) ) :
182
+		if (true === apply_filters('lsx_global_header_disable', false)) :
183 183
 			// Display only the breadcrumbs
184 184
 			?>
185
-			<div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12">
185
+			<div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12">
186 186
 				<?php lsx_global_header_inner_bottom(); ?>
187 187
 			</div>
188 188
 			<?php
189
-		elseif ( is_page() && ( 'page' !== $show_on_front || ! is_front_page() ) ) :
189
+		elseif (is_page() && ('page' !== $show_on_front || ! is_front_page())) :
190 190
 			?>
191
-			<div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12">
191
+			<div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12">
192 192
 				<header class="archive-header">
193 193
 					<h1 class="archive-title"><?php the_title(); ?></h1>
194 194
 				</header>
@@ -196,9 +196,9 @@  discard block
 block discarded – undo
196 196
 				<?php lsx_global_header_inner_bottom(); ?>
197 197
 			</div>
198 198
 			<?php
199
-		elseif ( is_single() && ! is_singular( 'post' ) ) :
199
+		elseif (is_single() && ! is_singular('post')) :
200 200
 			?>
201
-			<div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12">
201
+			<div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12">
202 202
 				<header class="archive-header">
203 203
 					<h1 class="archive-title"><?php the_title(); ?></h1>
204 204
 				</header>
@@ -206,15 +206,15 @@  discard block
 block discarded – undo
206 206
 				<?php lsx_global_header_inner_bottom(); ?>
207 207
 			</div>
208 208
 			<?php
209
-		elseif ( is_search() ) :
209
+		elseif (is_search()) :
210 210
 			?>
211
-			<div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12">
211
+			<div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12">
212 212
 				<header class="archive-header">
213 213
 					<h1 class="archive-title">
214 214
 						<?php
215 215
 							printf(
216 216
 								/* Translators: %s: search term/query */
217
-								esc_html__( 'Search Results for: %s', 'lsx' ),
217
+								esc_html__('Search Results for: %s', 'lsx'),
218 218
 								'<span>' . get_search_query() . '</span>'
219 219
 							);
220 220
 						?>
@@ -224,12 +224,12 @@  discard block
 block discarded – undo
224 224
 				<?php lsx_global_header_inner_bottom(); ?>
225 225
 			</div>
226 226
 			<?php
227
-		elseif ( is_author() ) :
227
+		elseif (is_author()) :
228 228
 			$author = get_the_author();
229
-			$author_avatar = get_avatar( get_the_author_meta( 'ID' ), 256 );
229
+			$author_avatar = get_avatar(get_the_author_meta('ID'), 256);
230 230
 			$author_bio = get_the_archive_description();
231 231
 			?>
232
-			<div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12">
232
+			<div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12">
233 233
 				<header class="archive-header">
234 234
 					<h1 class="archive-title"><?php the_archive_title(); ?></h1>
235 235
 				</header>
@@ -237,13 +237,13 @@  discard block
 block discarded – undo
237 237
 				<?php lsx_global_header_inner_bottom(); ?>
238 238
 			</div>
239 239
 			<?php
240
-		elseif ( is_archive() ) :
240
+		elseif (is_archive()) :
241 241
 			?>
242
-			<div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12">
242
+			<div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12">
243 243
 				<header class="archive-header">
244 244
 					<h1 class="archive-title">
245
-						<?php if ( has_post_format() && ! is_category() && ! is_tag() && ! is_date() && ! is_tax( 'post_format' ) ) { ?>
246
-							<?php the_archive_title( esc_html__( 'Type:', 'lsx' ) ); ?>
245
+						<?php if (has_post_format() && ! is_category() && ! is_tag() && ! is_date() && ! is_tax('post_format')) { ?>
246
+							<?php the_archive_title(esc_html__('Type:', 'lsx')); ?>
247 247
 						<?php } else { ?>
248 248
 							<?php the_archive_title(); ?>
249 249
 						<?php } ?>
@@ -255,31 +255,31 @@  discard block
 block discarded – undo
255 255
 				<?php lsx_global_header_inner_bottom(); ?>
256 256
 			</div>
257 257
 			<?php
258
-		elseif ( 'page' === $show_on_front && (int) get_option( 'page_for_posts' ) === $queried_object->ID ) :
258
+		elseif ('page' === $show_on_front && (int) get_option('page_for_posts') === $queried_object->ID) :
259 259
 			?>
260
-			<div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12">
260
+			<div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12">
261 261
 				<header class="archive-header">
262
-					<h1 class="archive-title"><?php esc_html_e( 'Blog', 'lsx' ); ?></h1>
262
+					<h1 class="archive-title"><?php esc_html_e('Blog', 'lsx'); ?></h1>
263 263
 				</header>
264 264
 
265 265
 				<?php lsx_global_header_inner_bottom(); ?>
266 266
 			</div>
267 267
 			<?php
268
-		elseif ( ! is_singular( 'post' ) ) :
268
+		elseif ( ! is_singular('post')) :
269 269
 			// Display only the breadcrumbs
270 270
 			?>
271
-			<div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12">
271
+			<div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12">
272 272
 				<?php lsx_global_header_inner_bottom(); ?>
273 273
 			</div>
274 274
 			<?php
275 275
 		endif;
276 276
 	}
277 277
 
278
-	add_action( 'lsx_content_wrap_before', 'lsx_global_header' );
278
+	add_action('lsx_content_wrap_before', 'lsx_global_header');
279 279
 
280 280
 endif;
281 281
 
282
-if ( ! function_exists( 'lsx_author_extra_info' ) ) :
282
+if ( ! function_exists('lsx_author_extra_info')) :
283 283
 
284 284
 	/**
285 285
 	 * Displays the author extra info.
@@ -289,58 +289,58 @@  discard block
 block discarded – undo
289 289
 	 */
290 290
 	function lsx_author_extra_info() {
291 291
 		$default_size   = 'sm';
292
-		$size           = apply_filters( 'lsx_bootstrap_column_size', $default_size );
292
+		$size           = apply_filters('lsx_bootstrap_column_size', $default_size);
293 293
 
294
-		if ( is_author() ) :
295
-			$author_id         = get_the_author_meta( 'ID' );
294
+		if (is_author()) :
295
+			$author_id         = get_the_author_meta('ID');
296 296
 			$author            = get_the_author();
297
-			$author_avatar     = get_avatar( $author_id, 256 );
297
+			$author_avatar     = get_avatar($author_id, 256);
298 298
 			$author_bio        = get_the_archive_description();
299
-			$author_url        = get_the_author_meta( 'url', $author_id );
300
-			$author_email      = get_the_author_meta( 'email', $author_id );
301
-			$author_facebook   = get_the_author_meta( 'facebook', $author_id );
302
-			$author_twitter    = get_the_author_meta( 'twitter', $author_id );
303
-			$author_googleplus = get_the_author_meta( 'googleplus', $author_id );
299
+			$author_url        = get_the_author_meta('url', $author_id);
300
+			$author_email      = get_the_author_meta('email', $author_id);
301
+			$author_facebook   = get_the_author_meta('facebook', $author_id);
302
+			$author_twitter    = get_the_author_meta('twitter', $author_id);
303
+			$author_googleplus = get_the_author_meta('googleplus', $author_id);
304 304
 			?>
305
-			<div class="col-<?php echo esc_attr( $size ); ?>-12">
305
+			<div class="col-<?php echo esc_attr($size); ?>-12">
306 306
 				<div class="archive-author-data">
307
-					<figure class="archive-author-avatar"><?php echo wp_kses_post( $author_avatar ); ?></figure>
307
+					<figure class="archive-author-avatar"><?php echo wp_kses_post($author_avatar); ?></figure>
308 308
 
309
-					<?php if ( ! empty( $author_url ) || ! empty( $author_email ) || ! empty( $author_facebook ) || ! empty( $author_twitter ) || ! empty( $author_googleplus ) ) : ?>
309
+					<?php if ( ! empty($author_url) || ! empty($author_email) || ! empty($author_facebook) || ! empty($author_twitter) || ! empty($author_googleplus)) : ?>
310 310
 						<div class="archive-author-social-links">
311
-							<?php if ( ! empty( $author_url ) ) : ?>
312
-								<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>
311
+							<?php if ( ! empty($author_url)) : ?>
312
+								<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>
313 313
 							<?php endif; ?>
314 314
 
315
-							<?php if ( ! empty( $author_email ) ) : ?>
316
-								<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>
315
+							<?php if ( ! empty($author_email)) : ?>
316
+								<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>
317 317
 							<?php endif; ?>
318 318
 
319
-							<?php if ( ! empty( $author_facebook ) ) : ?>
320
-								<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>
319
+							<?php if ( ! empty($author_facebook)) : ?>
320
+								<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>
321 321
 							<?php endif; ?>
322 322
 
323
-							<?php if ( ! empty( $author_twitter ) ) : ?>
324
-								<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>
323
+							<?php if ( ! empty($author_twitter)) : ?>
324
+								<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>
325 325
 							<?php endif; ?>
326 326
 
327
-							<?php if ( ! empty( $author_googleplus ) ) : ?>
328
-								<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>
327
+							<?php if ( ! empty($author_googleplus)) : ?>
328
+								<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>
329 329
 							<?php endif; ?>
330 330
 						</div>
331 331
 					<?php endif; ?>
332 332
 
333
-					<?php if ( ! empty( $author_bio ) ) : ?>
334
-						<h2 class="archive-author-title text-center"><?php esc_html_e( 'About the author', 'lsx' ); ?></h2>
335
-						<p class="archive-author-bio"><?php echo wp_kses_post( $author_bio ); ?></p>
333
+					<?php if ( ! empty($author_bio)) : ?>
334
+						<h2 class="archive-author-title text-center"><?php esc_html_e('About the author', 'lsx'); ?></h2>
335
+						<p class="archive-author-bio"><?php echo wp_kses_post($author_bio); ?></p>
336 336
 					<?php endif; ?>
337 337
 
338 338
 					<h2 class="archive-author-posts text-center">
339 339
 						<?php
340 340
 							printf(
341 341
 								/* Translators: %s: author name */
342
-								esc_html__( 'All posts by %s', 'lsx' ),
343
-								esc_html( $author )
342
+								esc_html__('All posts by %s', 'lsx'),
343
+								esc_html($author)
344 344
 							);
345 345
 						?>
346 346
 					</h2>
@@ -350,11 +350,11 @@  discard block
 block discarded – undo
350 350
 		endif;
351 351
 	}
352 352
 
353
-	add_action( 'lsx_content_wrap_before', 'lsx_author_extra_info', 11 );
353
+	add_action('lsx_content_wrap_before', 'lsx_author_extra_info', 11);
354 354
 
355 355
 endif;
356 356
 
357
-if ( ! function_exists( 'lsx_post_header' ) ) :
357
+if ( ! function_exists('lsx_post_header')) :
358 358
 
359 359
 	/**
360 360
 	 * Displays the post header.
@@ -364,21 +364,21 @@  discard block
 block discarded – undo
364 364
 	 */
365 365
 	function lsx_post_header() {
366 366
 		$default_size  = 'sm';
367
-		$size          = apply_filters( 'lsx_bootstrap_column_size', $default_size );
367
+		$size          = apply_filters('lsx_bootstrap_column_size', $default_size);
368 368
 
369
-		if ( is_singular( 'post' ) ) :
369
+		if (is_singular('post')) :
370 370
 			$format = get_post_format();
371 371
 
372
-			if ( false === $format ) {
372
+			if (false === $format) {
373 373
 				$format = 'standard';
374 374
 			}
375 375
 
376
-			$format = lsx_translate_format_to_fontawesome( $format );
376
+			$format = lsx_translate_format_to_fontawesome($format);
377 377
 			?>
378
-			<div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12">
378
+			<div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12">
379 379
 				<header class="archive-header">
380 380
 					<h1 class="archive-title">
381
-						<i class="format-link fa fa-<?php echo esc_attr( $format ); ?>"></i>
381
+						<i class="format-link fa fa-<?php echo esc_attr($format); ?>"></i>
382 382
 						<span><?php the_title(); ?></span>
383 383
 					</h1>
384 384
 				</header>
@@ -387,11 +387,11 @@  discard block
 block discarded – undo
387 387
 		endif;
388 388
 	}
389 389
 
390
-	add_action( 'lsx_entry_top', 'lsx_post_header' );
390
+	add_action('lsx_entry_top', 'lsx_post_header');
391 391
 
392 392
 endif;
393 393
 
394
-if ( ! function_exists( 'lsx_add_viewport_meta_tag' ) ) :
394
+if ( ! function_exists('lsx_add_viewport_meta_tag')) :
395 395
 
396 396
 	/**
397 397
 	 * Add Viewport Meta Tag to head.
@@ -405,11 +405,11 @@  discard block
 block discarded – undo
405 405
 		<?php
406 406
 	}
407 407
 
408
-	add_action( 'wp_head', 'lsx_add_viewport_meta_tag' );
408
+	add_action('wp_head', 'lsx_add_viewport_meta_tag');
409 409
 
410 410
 endif;
411 411
 
412
-if ( ! function_exists( 'lsx_header_search_form' ) ) :
412
+if ( ! function_exists('lsx_header_search_form')) :
413 413
 
414 414
 	/**
415 415
 	 * Add a search form to just above the nav menu.
@@ -418,13 +418,13 @@  discard block
 block discarded – undo
418 418
 	 * @subpackage layout
419 419
 	 */
420 420
 	function lsx_header_search_form() {
421
-		$search_form = get_theme_mod( 'lsx_header_search', false );
421
+		$search_form = get_theme_mod('lsx_header_search', false);
422 422
 
423
-		if ( false !== $search_form || is_customize_preview() ) {
424
-			get_search_form( true );
423
+		if (false !== $search_form || is_customize_preview()) {
424
+			get_search_form(true);
425 425
 		}
426 426
 	}
427 427
 
428
-	add_action( 'lsx_nav_before', 'lsx_header_search_form', 0 );
428
+	add_action('lsx_nav_before', 'lsx_header_search_form', 0);
429 429
 
430 430
 endif;
Please login to merge, or discard this patch.
footer.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -20,21 +20,21 @@  discard block
 block discarded – undo
20 20
 					<div class="col-sm-12">
21 21
 						<?php lsx_footer_top(); ?>
22 22
 
23
-						<p class="credit <?php if ( has_nav_menu( 'social' ) || has_nav_menu( 'footer' ) ) echo 'credit-float'; ?>">
23
+						<p class="credit <?php if (has_nav_menu('social') || has_nav_menu('footer')) echo 'credit-float'; ?>">
24 24
 							<?php
25 25
 								printf(
26 26
 									/* Translators: 1: current year, 2: blog name */
27
-									esc_html__( '&#169; %1$s %2$s All Rights Reserved', 'lsx' ),
28
-									esc_html( date_i18n( 'Y' ) ),
29
-									esc_html( get_bloginfo( 'name' ) )
27
+									esc_html__('&#169; %1$s %2$s All Rights Reserved', 'lsx'),
28
+									esc_html(date_i18n('Y')),
29
+									esc_html(get_bloginfo('name'))
30 30
 								);
31 31
 							?>
32 32
 
33
-							<?php if ( apply_filters( 'lsx_credit_link', true ) ) : ?>
33
+							<?php if (apply_filters('lsx_credit_link', true)) : ?>
34 34
 								<?php
35 35
 									printf(
36 36
 										/* Translators: 1: theme name, 2: author name and link */
37
-										esc_html__( ' | %1$s is a WordPress theme developed by %2$s.', 'lsx' ),
37
+										esc_html__(' | %1$s is a WordPress theme developed by %2$s.', 'lsx'),
38 38
 										'LSX',
39 39
 										'<a href="https://www.lsdev.biz/" rel="nofollow noreferrer noopener" title="LightSpeed WordPress Development - Unlocking the full value of your business, online" rel="author nofollow noopener noreferrer" >LightSpeed</a>'
40 40
 									);
@@ -42,24 +42,24 @@  discard block
 block discarded – undo
42 42
 							<?php endif; ?>
43 43
 						</p>
44 44
 
45
-						<?php if ( has_nav_menu( 'social' ) ) : ?>
45
+						<?php if (has_nav_menu('social')) : ?>
46 46
 							<nav id="social-navigation" class="social-navigation">
47 47
 								<?php
48
-									wp_nav_menu( array(
48
+									wp_nav_menu(array(
49 49
 										'theme_location' => 'social',
50 50
 										'depth'          => 1,
51
-									) );
51
+									));
52 52
 								?>
53 53
 							</nav><!-- .social-navigation -->
54 54
 						<?php endif; ?>
55 55
 
56
-						<?php if ( has_nav_menu( 'footer' ) ) : ?>
56
+						<?php if (has_nav_menu('footer')) : ?>
57 57
 							<nav id="footer-navigation" class="footer-navigation">
58 58
 								<?php
59
-									wp_nav_menu( array(
59
+									wp_nav_menu(array(
60 60
 										'theme_location' => 'footer',
61 61
 										'depth'          => 1,
62
-									) );
62
+									));
63 63
 								?>
64 64
 							</nav><!-- .footer-navigation -->
65 65
 						<?php endif; ?>
Please login to merge, or discard this patch.
functions.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -5,21 +5,21 @@
 block discarded – undo
5 5
  * @package lsx
6 6
  */
7 7
 
8
-if ( ! defined( 'ABSPATH' ) ) {
8
+if ( ! defined('ABSPATH')) {
9 9
 	exit;
10 10
 }
11 11
 
12
-define( 'LSX_VERSION', '2.1.2' );
12
+define('LSX_VERSION', '2.1.2');
13 13
 
14
-if ( class_exists( 'WooCommerce' ) ) {
14
+if (class_exists('WooCommerce')) {
15 15
 	require get_template_directory() . '/includes/plugins/woocommerce.php';
16 16
 }
17 17
 
18
-if ( class_exists( 'Tribe__Events__Main' ) ) {
18
+if (class_exists('Tribe__Events__Main')) {
19 19
 	require get_template_directory() . '/includes/plugins/the-events-calendar.php';
20 20
 }
21 21
 
22
-if ( class_exists( 'Sensei_WC' ) ) {
22
+if (class_exists('Sensei_WC')) {
23 23
 	require get_template_directory() . '/includes/plugins/sensei.php';
24 24
 }
25 25
 
Please login to merge, or discard this patch.
includes/extras.php 1 patch
Spacing   +146 added lines, -146 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
 		return $allowedtags;
@@ -35,9 +35,9 @@  discard block
 block discarded – undo
35 35
 
36 36
 endif;
37 37
 
38
-add_filter( 'wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2 );
38
+add_filter('wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2);
39 39
 
40
-if ( ! function_exists( 'lsx_body_class' ) ) :
40
+if ( ! function_exists('lsx_body_class')) :
41 41
 
42 42
 	/**
43 43
 	 * Add and remove body_class() classes.
@@ -45,44 +45,44 @@  discard block
 block discarded – undo
45 45
 	 * @package    lsx
46 46
 	 * @subpackage extras
47 47
 	 */
48
-	function lsx_body_class( $classes ) {
48
+	function lsx_body_class($classes) {
49 49
 		global $post;
50 50
 
51
-		$header_layout = get_theme_mod( 'lsx_header_layout', 'inline' );
51
+		$header_layout = get_theme_mod('lsx_header_layout', 'inline');
52 52
 		$classes[]     = 'header-' . $header_layout;
53 53
 
54
-		if ( isset( $post ) ) {
54
+		if (isset($post)) {
55 55
 			$classes[] = $post->post_name;
56 56
 		}
57 57
 
58
-		if ( ! class_exists( 'LSX_Banners' ) || ! empty( apply_filters( 'lsx_banner_plugin_disable', false ) ) ) {
59
-			$post_types = array( 'page', 'post' );
60
-			$post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types );
58
+		if ( ! class_exists('LSX_Banners') || ! empty(apply_filters('lsx_banner_plugin_disable', false))) {
59
+			$post_types = array('page', 'post');
60
+			$post_types = apply_filters('lsx_allowed_post_type_banners', $post_types);
61 61
 
62
-			if ( is_singular( $post_types ) && has_post_thumbnail() ) {
62
+			if (is_singular($post_types) && has_post_thumbnail()) {
63 63
 				$classes[] = 'page-has-banner';
64 64
 			}
65 65
 		}
66 66
 
67
-		if ( has_nav_menu( 'top-menu' ) || has_nav_menu( 'top-menu-left' ) ) {
67
+		if (has_nav_menu('top-menu') || has_nav_menu('top-menu-left')) {
68 68
 			$classes[] = 'has-top-menu';
69 69
 		}
70 70
 
71
-		$fixed_header = get_theme_mod( 'lsx_header_fixed', false );
71
+		$fixed_header = get_theme_mod('lsx_header_fixed', false);
72 72
 
73
-		if ( false !== $fixed_header ) {
73
+		if (false !== $fixed_header) {
74 74
 			$classes[] = 'top-menu-fixed';
75 75
 		}
76 76
 
77
-		$search_form  = get_theme_mod( 'lsx_header_search', false );
77
+		$search_form = get_theme_mod('lsx_header_search', false);
78 78
 
79
-		if ( false !== $search_form ) {
79
+		if (false !== $search_form) {
80 80
 			$classes[] = 'has-header-search';
81 81
 		}
82 82
 
83
-		$preloader_content  = get_theme_mod( 'lsx_preloader_content_status', false );
83
+		$preloader_content = get_theme_mod('lsx_preloader_content_status', false);
84 84
 
85
-		if ( false !== $preloader_content ) {
85
+		if (false !== $preloader_content) {
86 86
 			$classes[] = 'preloader-content-enable';
87 87
 		}
88 88
 
@@ -91,9 +91,9 @@  discard block
 block discarded – undo
91 91
 
92 92
 endif;
93 93
 
94
-add_filter( 'body_class', 'lsx_body_class' );
94
+add_filter('body_class', 'lsx_body_class');
95 95
 
96
-if ( ! function_exists( 'lsx_embed_wrap' ) ) :
96
+if ( ! function_exists('lsx_embed_wrap')) :
97 97
 
98 98
 	/**
99 99
 	 * Wrap embedded media as suggested by Readability.
@@ -104,8 +104,8 @@  discard block
 block discarded – undo
104 104
 	 * @link https://gist.github.com/965956
105 105
 	 * @link http://www.readability.com/publishers/guidelines#publisher
106 106
 	 */
107
-	function lsx_embed_wrap( $cache, $url, $attr = '', $post_id = '' ) {
108
-		if ( false !== strpos( $cache, '<iframe' ) ) {
107
+	function lsx_embed_wrap($cache, $url, $attr = '', $post_id = '') {
108
+		if (false !== strpos($cache, '<iframe')) {
109 109
 			return '<div class="entry-content-asset">' . $cache . '</div>';
110 110
 		}
111 111
 
@@ -114,9 +114,9 @@  discard block
 block discarded – undo
114 114
 
115 115
 endif;
116 116
 
117
-add_filter( 'embed_oembed_html', 'lsx_embed_wrap', 10, 4 );
117
+add_filter('embed_oembed_html', 'lsx_embed_wrap', 10, 4);
118 118
 
119
-if ( ! function_exists( 'lsx_remove_self_closing_tags' ) ) :
119
+if ( ! function_exists('lsx_remove_self_closing_tags')) :
120 120
 
121 121
 	/**
122 122
 	 * Remove unnecessary self-closing tags.
@@ -124,17 +124,17 @@  discard block
 block discarded – undo
124 124
 	 * @package    lsx
125 125
 	 * @subpackage extras
126 126
 	 */
127
-	function lsx_remove_self_closing_tags( $input ) {
128
-		return str_replace( ' />', '>', $input );
127
+	function lsx_remove_self_closing_tags($input) {
128
+		return str_replace(' />', '>', $input);
129 129
 	}
130 130
 
131 131
 endif;
132 132
 
133
-add_filter( 'get_avatar',          'lsx_remove_self_closing_tags' ); // <img />
134
-add_filter( 'comment_id_fields',   'lsx_remove_self_closing_tags' ); // <input />
135
-add_filter( 'post_thumbnail_html', 'lsx_remove_self_closing_tags' ); // <img />
133
+add_filter('get_avatar', 'lsx_remove_self_closing_tags'); // <img />
134
+add_filter('comment_id_fields', 'lsx_remove_self_closing_tags'); // <input />
135
+add_filter('post_thumbnail_html', 'lsx_remove_self_closing_tags'); // <img />
136 136
 
137
-if ( ! function_exists( 'lsx_is_element_empty' ) ) :
137
+if ( ! function_exists('lsx_is_element_empty')) :
138 138
 
139 139
 	/**
140 140
 	 * Checks if a Nav $element is empty or not.
@@ -142,14 +142,14 @@  discard block
 block discarded – undo
142 142
 	 * @package    lsx
143 143
 	 * @subpackage extras
144 144
 	 */
145
-	function lsx_is_element_empty( $element ) {
146
-		$element = trim( $element );
147
-		return empty( $element ) ? false : true;
145
+	function lsx_is_element_empty($element) {
146
+		$element = trim($element);
147
+		return empty($element) ? false : true;
148 148
 	}
149 149
 
150 150
 endif;
151 151
 
152
-if ( ! function_exists( 'lsx_get_thumbnail' ) ) :
152
+if ( ! function_exists('lsx_get_thumbnail')) :
153 153
 
154 154
 	/**
155 155
 	 * return the responsive images.
@@ -157,44 +157,44 @@  discard block
 block discarded – undo
157 157
 	 * @package    lsx
158 158
 	 * @subpackage extras
159 159
 	 */
160
-	function lsx_get_thumbnail( $size, $image_src = false ) {
161
-		if ( false === $image_src ) {
160
+	function lsx_get_thumbnail($size, $image_src = false) {
161
+		if (false === $image_src) {
162 162
 			$post_id           = get_the_ID();
163
-			$post_thumbnail_id = get_post_thumbnail_id( $post_id );
164
-		} elseif ( false !== $image_src ) {
165
-			if ( is_numeric( $image_src ) ) {
163
+			$post_thumbnail_id = get_post_thumbnail_id($post_id);
164
+		} elseif (false !== $image_src) {
165
+			if (is_numeric($image_src)) {
166 166
 				$post_thumbnail_id = $image_src;
167 167
 			} else {
168
-				$post_thumbnail_id = lsx_get_attachment_id_from_src( $image_src );
168
+				$post_thumbnail_id = lsx_get_attachment_id_from_src($image_src);
169 169
 			}
170 170
 		}
171 171
 
172
-		$size = apply_filters( 'lsx_thumbnail_size', $size );
172
+		$size = apply_filters('lsx_thumbnail_size', $size);
173 173
 		$img = false;
174 174
 
175
-		if ( 'lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size ) {
175
+		if ('lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size) {
176 176
 			$srcset = false;
177
-			$img    = wp_get_attachment_image_src( $post_thumbnail_id, $size );
177
+			$img    = wp_get_attachment_image_src($post_thumbnail_id, $size);
178 178
 			$img    = $img[0];
179 179
 		} else {
180 180
 			$srcset = true;
181
-			$img = wp_get_attachment_image_srcset( $post_thumbnail_id, $size );
181
+			$img = wp_get_attachment_image_srcset($post_thumbnail_id, $size);
182 182
 
183
-			if ( empty( $img ) ) {
183
+			if (empty($img)) {
184 184
 				$srcset = false;
185
-				$img = wp_get_attachment_image_src( $post_thumbnail_id, $size );
185
+				$img = wp_get_attachment_image_src($post_thumbnail_id, $size);
186 186
 				$img = $img[0];
187 187
 			}
188 188
 		}
189 189
 
190
-		if ( ! empty( $img ) ) {
191
-			if ( $srcset ) {
192
-				$img = '<img alt="' . the_title_attribute( 'echo=0' ) . '" class="attachment-responsive wp-post-image lsx-responsive" srcset="' . esc_attr( $img ) . '" />';
190
+		if ( ! empty($img)) {
191
+			if ($srcset) {
192
+				$img = '<img alt="' . the_title_attribute('echo=0') . '" class="attachment-responsive wp-post-image lsx-responsive" srcset="' . esc_attr($img) . '" />';
193 193
 			} else {
194
-				$img = '<img alt="' . the_title_attribute( 'echo=0' ) . '" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url( $img ) . '" />';
194
+				$img = '<img alt="' . the_title_attribute('echo=0') . '" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url($img) . '" />';
195 195
 			}
196 196
 
197
-			$img = apply_filters( 'lsx_lazyload_filter_images', $img );
197
+			$img = apply_filters('lsx_lazyload_filter_images', $img);
198 198
 		}
199 199
 
200 200
 		return $img;
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
 
203 203
 endif;
204 204
 
205
-if ( ! function_exists( 'lsx_thumbnail' ) ) :
205
+if ( ! function_exists('lsx_thumbnail')) :
206 206
 
207 207
 	/**
208 208
 	 * Output the Resonsive Images.
@@ -210,13 +210,13 @@  discard block
 block discarded – undo
210 210
 	 * @package    lsx
211 211
 	 * @subpackage extras
212 212
 	 */
213
-	function lsx_thumbnail( $size = 'thumbnail', $image_src = false ) {
214
-		echo wp_kses_post( lsx_get_thumbnail( $size, $image_src ) );
213
+	function lsx_thumbnail($size = 'thumbnail', $image_src = false) {
214
+		echo wp_kses_post(lsx_get_thumbnail($size, $image_src));
215 215
 	}
216 216
 
217 217
 endif;
218 218
 
219
-if ( ! function_exists( 'lsx_get_attachment_id_from_src' ) ) :
219
+if ( ! function_exists('lsx_get_attachment_id_from_src')) :
220 220
 
221 221
 	/**
222 222
 	 * Gets the attachments ID from the src.
@@ -224,13 +224,13 @@  discard block
 block discarded – undo
224 224
 	 * @package    lsx
225 225
 	 * @subpackage extras
226 226
 	 */
227
-	function lsx_get_attachment_id_from_src( $image_src ) {
228
-		$post_id = wp_cache_get( $image_src, 'lsx_get_attachment_id_from_src' );
227
+	function lsx_get_attachment_id_from_src($image_src) {
228
+		$post_id = wp_cache_get($image_src, 'lsx_get_attachment_id_from_src');
229 229
 
230
-		if ( false === $post_id ) {
230
+		if (false === $post_id) {
231 231
 			global $wpdb;
232
-			$post_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src ) );
233
-			wp_cache_set( $image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600 );
232
+			$post_id = $wpdb->get_var($wpdb->prepare("SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src));
233
+			wp_cache_set($image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600);
234 234
 		}
235 235
 
236 236
 		return $post_id;
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
 
239 239
 endif;
240 240
 
241
-if ( ! function_exists( 'lsx_page_banner' ) ) :
241
+if ( ! function_exists('lsx_page_banner')) :
242 242
 
243 243
 	/**
244 244
 	 * Add Featured Image as Banner on Single Pages.
@@ -247,26 +247,26 @@  discard block
 block discarded – undo
247 247
 	 * @subpackage extras
248 248
 	 */
249 249
 	function lsx_page_banner() {
250
-		if ( true === apply_filters( 'lsx_page_banner_disable', false ) ) {
250
+		if (true === apply_filters('lsx_page_banner_disable', false)) {
251 251
 			return;
252 252
 		}
253 253
 
254
-		$post_types = array( 'page', 'post' );
255
-		$post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types );
254
+		$post_types = array('page', 'post');
255
+		$post_types = apply_filters('lsx_allowed_post_type_banners', $post_types);
256 256
 
257
-		if ( is_singular( $post_types ) && has_post_thumbnail() ) :
257
+		if (is_singular($post_types) && has_post_thumbnail()) :
258 258
 			$bg_image = '';
259 259
 
260
-			if ( has_post_thumbnail() ) {
261
-				$bg_image = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'full' );
260
+			if (has_post_thumbnail()) {
261
+				$bg_image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), 'full');
262 262
 				$bg_image = $bg_image[0];
263 263
 			}
264 264
 
265
-			if ( ! empty( $bg_image ) ) :
265
+			if ( ! empty($bg_image)) :
266 266
 				?>
267 267
 					<div class="page-banner-wrap">
268 268
 						<div class="page-banner">
269
-							<div class="page-banner-image" style="background-image:url(<?php echo esc_attr( $bg_image ); ?>);"></div>
269
+							<div class="page-banner-image" style="background-image:url(<?php echo esc_attr($bg_image); ?>);"></div>
270 270
 
271 271
 							<div class="container">
272 272
 								<header class="page-header">
@@ -285,9 +285,9 @@  discard block
 block discarded – undo
285 285
 
286 286
 endif;
287 287
 
288
-add_action( 'lsx_header_after', 'lsx_page_banner' );
288
+add_action('lsx_header_after', 'lsx_page_banner');
289 289
 
290
-if ( ! function_exists( 'lsx_form_submit_button' ) ) :
290
+if ( ! function_exists('lsx_form_submit_button')) :
291 291
 
292 292
 	/**
293 293
 	 * filter the Gravity Forms button type.
@@ -299,15 +299,15 @@  discard block
 block discarded – undo
299 299
 	 * @param  $form   Object
300 300
 	 * @return String
301 301
 	 */
302
-	function lsx_form_submit_button( $button, $form ) {
302
+	function lsx_form_submit_button($button, $form) {
303 303
 		return "<button class='btn btn-primary' id='gform_submit_button_{$form["id"]}'><span>Submit</span></button>";
304 304
 	}
305 305
 
306 306
 endif;
307 307
 
308
-add_filter( 'gform_submit_button', 'lsx_form_submit_button', 10, 2 );
308
+add_filter('gform_submit_button', 'lsx_form_submit_button', 10, 2);
309 309
 
310
-if ( ! function_exists( 'lsx_excerpt_more' ) ) :
310
+if ( ! function_exists('lsx_excerpt_more')) :
311 311
 
312 312
 	/**
313 313
 	 * Replaces the excerpt "more" text by a link.
@@ -315,15 +315,15 @@  discard block
 block discarded – undo
315 315
 	 * @package    lsx
316 316
 	 * @subpackage extras
317 317
 	 */
318
-	function lsx_excerpt_more( $more ) {
318
+	function lsx_excerpt_more($more) {
319 319
 		return '...';
320 320
 	}
321 321
 
322 322
 endif;
323 323
 
324
-add_filter( 'excerpt_more', 'lsx_excerpt_more' );
324
+add_filter('excerpt_more', 'lsx_excerpt_more');
325 325
 
326
-if ( ! function_exists( 'lsx_the_excerpt_filter' ) ) :
326
+if ( ! function_exists('lsx_the_excerpt_filter')) :
327 327
 
328 328
 	/**
329 329
 	 * Add a continue reading link to the excerpt.
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
 	 * @package    lsx
332 332
 	 * @subpackage extras
333 333
 	 */
334
-	function lsx_the_excerpt_filter( $excerpt ) {
334
+	function lsx_the_excerpt_filter($excerpt) {
335 335
 
336 336
 		$post_formats = array(
337 337
 			'aside' => 'aside',
@@ -344,23 +344,23 @@  discard block
 block discarded – undo
344 344
 			'audio' => 'audio',
345 345
 		);
346 346
 
347
-		$show_full_content = has_post_format( apply_filters( 'lsx_the_excerpt_filter_post_types', $post_formats ) );
347
+		$show_full_content = has_post_format(apply_filters('lsx_the_excerpt_filter_post_types', $post_formats));
348 348
 
349
-		if ( ! $show_full_content ) {
350
-			if ( '' !== $excerpt && ! stristr( $excerpt, 'moretag' ) ) {
351
-				$pagination = wp_link_pages( array(
349
+		if ( ! $show_full_content) {
350
+			if ('' !== $excerpt && ! stristr($excerpt, 'moretag')) {
351
+				$pagination = wp_link_pages(array(
352 352
 					'before'      => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
353 353
 					'after'       => '</div></div>',
354 354
 					'link_before' => '<span>',
355 355
 					'link_after'  => '</span>',
356 356
 					'echo'        => 0,
357
-				) );
357
+				));
358 358
 
359
-				if ( ! empty( $pagination ) ) {
359
+				if ( ! empty($pagination)) {
360 360
 					$excerpt .= $pagination;
361 361
 				} else {
362
-					$excerpt_more = '<p><a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'Continue reading', 'lsx' ) . '</a></p>';
363
-					$excerpt .= apply_filters( 'excerpt_more_p', $excerpt_more );
362
+					$excerpt_more = '<p><a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('Continue reading', 'lsx') . '</a></p>';
363
+					$excerpt .= apply_filters('excerpt_more_p', $excerpt_more);
364 364
 				}
365 365
 			}
366 366
 		}
@@ -370,9 +370,9 @@  discard block
 block discarded – undo
370 370
 
371 371
 endif;
372 372
 
373
-add_filter( 'the_excerpt', 'lsx_the_excerpt_filter' , 1 , 20 );
373
+add_filter('the_excerpt', 'lsx_the_excerpt_filter', 1, 20);
374 374
 
375
-if ( ! function_exists( 'lsx_custom_wp_trim_excerpt' ) ) :
375
+if ( ! function_exists('lsx_custom_wp_trim_excerpt')) :
376 376
 
377 377
 	/**
378 378
 	 * Allow HTML tags in excerpt.
@@ -380,12 +380,12 @@  discard block
 block discarded – undo
380 380
 	 * @package    lsx
381 381
 	 * @subpackage extras
382 382
 	 */
383
-	function lsx_custom_wp_trim_excerpt( $wpse_excerpt ) {
383
+	function lsx_custom_wp_trim_excerpt($wpse_excerpt) {
384 384
 		global $post;
385 385
 		$raw_excerpt = $wpse_excerpt;
386 386
 
387
-		if ( empty( $wpse_excerpt ) ) {
388
-			$wpse_excerpt      = get_the_content( '' );
387
+		if (empty($wpse_excerpt)) {
388
+			$wpse_excerpt = get_the_content('');
389 389
 
390 390
 			$post_formats = array(
391 391
 				'aside' => 'aside',
@@ -398,27 +398,27 @@  discard block
 block discarded – undo
398 398
 				'audio' => 'audio',
399 399
 			);
400 400
 
401
-			$show_full_content = has_post_format( apply_filters( 'lsx_excerpt_read_more_post_formats', $post_formats ) );
401
+			$show_full_content = has_post_format(apply_filters('lsx_excerpt_read_more_post_formats', $post_formats));
402 402
 
403
-			if ( ! $show_full_content ) {
404
-				$wpse_excerpt = strip_shortcodes( $wpse_excerpt );
405
-				$wpse_excerpt = apply_filters( 'the_content', $wpse_excerpt );
406
-				$wpse_excerpt = str_replace( ']]>', ']]>', $wpse_excerpt );
407
-				$wpse_excerpt = strip_tags( $wpse_excerpt, apply_filters( 'excerpt_strip_tags', '<h1>,<h2>,<h3>,<h4>,<h5>,<h6>,<a>,<button>,<blockquote>,<p>,<br>,<b>,<strong>,<i>,<u>,<ul>,<ol>,<li>,<span>,<div>' ) );
403
+			if ( ! $show_full_content) {
404
+				$wpse_excerpt = strip_shortcodes($wpse_excerpt);
405
+				$wpse_excerpt = apply_filters('the_content', $wpse_excerpt);
406
+				$wpse_excerpt = str_replace(']]>', ']]>', $wpse_excerpt);
407
+				$wpse_excerpt = strip_tags($wpse_excerpt, apply_filters('excerpt_strip_tags', '<h1>,<h2>,<h3>,<h4>,<h5>,<h6>,<a>,<button>,<blockquote>,<p>,<br>,<b>,<strong>,<i>,<u>,<ul>,<ol>,<li>,<span>,<div>'));
408 408
 
409 409
 				$excerpt_word_count = 50;
410
-				$excerpt_word_count = apply_filters( 'excerpt_length', $excerpt_word_count );
410
+				$excerpt_word_count = apply_filters('excerpt_length', $excerpt_word_count);
411 411
 
412 412
 				$tokens         = array();
413 413
 				$excerpt_output = '';
414 414
 				$has_more       = false;
415 415
 				$count          = 0;
416 416
 
417
-				preg_match_all( '/(<[^>]+>|[^<>\s]+)\s*/u', $wpse_excerpt, $tokens );
417
+				preg_match_all('/(<[^>]+>|[^<>\s]+)\s*/u', $wpse_excerpt, $tokens);
418 418
 
419
-				foreach ( $tokens[0] as $token ) {
420
-					if ( $count >= $excerpt_word_count ) {
421
-						$excerpt_output .= trim( $token );
419
+				foreach ($tokens[0] as $token) {
420
+					if ($count >= $excerpt_word_count) {
421
+						$excerpt_output .= trim($token);
422 422
 						$has_more = true;
423 423
 						break;
424 424
 					}
@@ -427,41 +427,41 @@  discard block
 block discarded – undo
427 427
 					$excerpt_output .= $token;
428 428
 				}
429 429
 
430
-				$wpse_excerpt = trim( force_balance_tags( $excerpt_output ) );
430
+				$wpse_excerpt = trim(force_balance_tags($excerpt_output));
431 431
 
432
-				if ( $has_more ) {
433
-					$excerpt_end = '<a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'More', 'lsx' ) . '</a>';
434
-					$excerpt_end = apply_filters( 'excerpt_more', ' ' . $excerpt_end );
432
+				if ($has_more) {
433
+					$excerpt_end = '<a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('More', 'lsx') . '</a>';
434
+					$excerpt_end = apply_filters('excerpt_more', ' ' . $excerpt_end);
435 435
 
436
-					$pos = strrpos( $wpse_excerpt, '</' );
436
+					$pos = strrpos($wpse_excerpt, '</');
437 437
 
438
-					if ( false !== $pos ) {
438
+					if (false !== $pos) {
439 439
 						// Inside last HTML tag
440
-						$wpse_excerpt = substr_replace( $wpse_excerpt, $excerpt_end, $pos, 0 ); /* Add read more next to last word */
440
+						$wpse_excerpt = substr_replace($wpse_excerpt, $excerpt_end, $pos, 0); /* Add read more next to last word */
441 441
 					} else {
442 442
 						// After the content
443 443
 						$wpse_excerpt .= $excerpt_end; /*Add read more in new paragraph */
444 444
 					}
445 445
 				}
446 446
 			} else {
447
-				$wpse_excerpt = apply_filters( 'the_content', $wpse_excerpt );
448
-				$wpse_excerpt = str_replace( ']]>', ']]>', $wpse_excerpt );
447
+				$wpse_excerpt = apply_filters('the_content', $wpse_excerpt);
448
+				$wpse_excerpt = str_replace(']]>', ']]>', $wpse_excerpt);
449 449
 				//$wpse_excerpt = strip_tags( $wpse_excerpt, '<blockquote>,<p>' );
450
-				$wpse_excerpt = trim( force_balance_tags( $wpse_excerpt ) );
450
+				$wpse_excerpt = trim(force_balance_tags($wpse_excerpt));
451 451
 			}
452 452
 
453 453
 			return $wpse_excerpt;
454 454
 		}
455 455
 
456
-		return apply_filters( 'lsx_custom_wp_trim_excerpt', $wpse_excerpt, $raw_excerpt );
456
+		return apply_filters('lsx_custom_wp_trim_excerpt', $wpse_excerpt, $raw_excerpt);
457 457
 	}
458 458
 
459 459
 endif;
460 460
 
461
-remove_filter( 'get_the_excerpt', 'wp_trim_excerpt' );
462
-add_filter( 'get_the_excerpt', 'lsx_custom_wp_trim_excerpt' );
461
+remove_filter('get_the_excerpt', 'wp_trim_excerpt');
462
+add_filter('get_the_excerpt', 'lsx_custom_wp_trim_excerpt');
463 463
 
464
-if ( ! function_exists( 'lsx_full_width_widget_classes' ) ) :
464
+if ( ! function_exists('lsx_full_width_widget_classes')) :
465 465
 
466 466
 	/**
467 467
 	 * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget.
@@ -469,8 +469,8 @@  discard block
 block discarded – undo
469 469
 	 * @package    lsx
470 470
 	 * @subpackage extras
471 471
 	 */
472
-	function lsx_full_width_widget_classes( $params ) {
473
-		if ( is_admin() ) {
472
+	function lsx_full_width_widget_classes($params) {
473
+		if (is_admin()) {
474 474
 			return $params;
475 475
 		}
476 476
 
@@ -479,9 +479,9 @@  discard block
 block discarded – undo
479 479
 		$widget_id   = $params[0]['widget_id'];
480 480
 		$widget_name = $params[0]['widget_name'];
481 481
 
482
-		if ( 'Text' === $widget_name ) {
483
-			$wp_registered_widgets[ $widget_id ]['original_callback'] = $wp_registered_widgets[ $widget_id ]['callback'];
484
-			$wp_registered_widgets[ $widget_id ]['callback'] = 'lsx_full_width_widget_custom_callback';
482
+		if ('Text' === $widget_name) {
483
+			$wp_registered_widgets[$widget_id]['original_callback'] = $wp_registered_widgets[$widget_id]['callback'];
484
+			$wp_registered_widgets[$widget_id]['callback'] = 'lsx_full_width_widget_custom_callback';
485 485
 		}
486 486
 
487 487
 		return $params;
@@ -489,9 +489,9 @@  discard block
 block discarded – undo
489 489
 
490 490
 endif;
491 491
 
492
-add_filter( 'dynamic_sidebar_params', 'lsx_full_width_widget_classes' );
492
+add_filter('dynamic_sidebar_params', 'lsx_full_width_widget_classes');
493 493
 
494
-if ( ! function_exists( 'lsx_full_width_widget_custom_callback' ) ) :
494
+if ( ! function_exists('lsx_full_width_widget_custom_callback')) :
495 495
 
496 496
 	/**
497 497
 	 * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget.
@@ -505,25 +505,25 @@  discard block
 block discarded – undo
505 505
 		$original_callback_params = func_get_args();
506 506
 		$widget_id = $original_callback_params[0]['widget_id'];
507 507
 
508
-		$original_callback = $wp_registered_widgets[ $widget_id ]['original_callback'];
509
-		$wp_registered_widgets[ $widget_id ]['callback'] = $original_callback;
508
+		$original_callback = $wp_registered_widgets[$widget_id]['original_callback'];
509
+		$wp_registered_widgets[$widget_id]['callback'] = $original_callback;
510 510
 
511
-		$widget_id_base = $wp_registered_widgets[ $widget_id ]['callback'][0]->id_base;
511
+		$widget_id_base = $wp_registered_widgets[$widget_id]['callback'][0]->id_base;
512 512
 
513 513
 		$widget_classname = '';
514 514
 
515
-		if ( is_callable( $original_callback ) ) {
515
+		if (is_callable($original_callback)) {
516 516
 			ob_start();
517
-			call_user_func_array( $original_callback, $original_callback_params );
517
+			call_user_func_array($original_callback, $original_callback_params);
518 518
 			$widget_output = ob_get_clean();
519 519
 
520
-			echo wp_kses_post( apply_filters( 'lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id ) );
520
+			echo wp_kses_post(apply_filters('lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id));
521 521
 		}
522 522
 	}
523 523
 
524 524
 endif;
525 525
 
526
-if ( ! function_exists( 'lsx_full_width_widget_output' ) ) :
526
+if ( ! function_exists('lsx_full_width_widget_output')) :
527 527
 
528 528
 	/**
529 529
 	 * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget.
@@ -531,12 +531,12 @@  discard block
 block discarded – undo
531 531
 	 * @package    lsx
532 532
 	 * @subpackage extras
533 533
 	 */
534
-	function lsx_full_width_widget_output( $widget_output, $widget_id_base, $widget_id ) {
535
-		if ( 'text' === $widget_id_base ) {
536
-			if ( false !== strpos( $widget_output, '<div class="lsx-full-width-alt">' ) ) {
537
-				$widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output );
538
-			} elseif ( false !== strpos( $widget_output, '<div class="lsx-full-width">' ) ) {
539
-				$widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output );
534
+	function lsx_full_width_widget_output($widget_output, $widget_id_base, $widget_id) {
535
+		if ('text' === $widget_id_base) {
536
+			if (false !== strpos($widget_output, '<div class="lsx-full-width-alt">')) {
537
+				$widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output);
538
+			} elseif (false !== strpos($widget_output, '<div class="lsx-full-width">')) {
539
+				$widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output);
540 540
 			}
541 541
 		}
542 542
 
@@ -545,13 +545,13 @@  discard block
 block discarded – undo
545 545
 
546 546
 endif;
547 547
 
548
-add_filter( 'lsx_widget_output', 'lsx_full_width_widget_output', 10, 3 );
548
+add_filter('lsx_widget_output', 'lsx_full_width_widget_output', 10, 3);
549 549
 
550 550
 /**
551 551
  * Check if the content has a restricted post format that needs to show a full excerpt.
552 552
  */
553 553
 function lsx_post_format_force_content_on_list() {
554
-	$post_formats = apply_filters( 'lsx_post_format_force_content_on_list',
554
+	$post_formats = apply_filters('lsx_post_format_force_content_on_list',
555 555
 		array(
556 556
 				'video' => 'video',
557 557
 				'audio' => 'audio',
@@ -560,7 +560,7 @@  discard block
 block discarded – undo
560 560
 			)
561 561
 	);
562 562
 	$return = false;
563
-	if ( ! has_post_format( $post_formats ) ) {
563
+	if ( ! has_post_format($post_formats)) {
564 564
 		$return = true;
565 565
 	}
566 566
 	return $return;
@@ -569,10 +569,10 @@  discard block
 block discarded – undo
569 569
 /**
570 570
  * Remove the Hentry Class Every
571 571
  */
572
-function lsx_remove_hentry( $classes ) {
573
-	if ( 'post' !== get_post_type() ) {
574
-		$classes = array_diff( $classes, array( 'hentry' ) );
572
+function lsx_remove_hentry($classes) {
573
+	if ('post' !== get_post_type()) {
574
+		$classes = array_diff($classes, array('hentry'));
575 575
 	}
576 576
 	return $classes;
577 577
 }
578
-add_filter( 'post_class','lsx_remove_hentry' );
578
+add_filter('post_class', 'lsx_remove_hentry');
Please login to merge, or discard this patch.