Completed
Push — master ( bda41e...7cb173 )
by Fernando
03:08
created
content.php 1 patch
Spacing   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -7,42 +7,42 @@  discard block
 block discarded – undo
7 7
 <?php lsx_entry_before(); ?>
8 8
 
9 9
 <?php
10
-	if ( has_post_thumbnail() ) { 
10
+	if (has_post_thumbnail()) { 
11 11
 		$thumb_class = 'has-thumb';
12 12
 	} else {
13 13
 		$thumb_class = 'no-thumb';
14 14
 	}
15 15
 
16
-	if ( ! is_singular() ) {
17
-		$blog_layout = apply_filters( 'lsx_blog_layout', 'default' );
16
+	if ( ! is_singular()) {
17
+		$blog_layout = apply_filters('lsx_blog_layout', 'default');
18 18
 	} else {
19 19
 		$blog_layout = 'default';
20 20
 	}
21 21
 
22
-	if ( 'list' === $blog_layout ) { 
22
+	if ('list' === $blog_layout) { 
23 23
 		$image_class = 'hidden-sm hidden-md hidden-ls';
24 24
 	} else {
25 25
 		$image_class = '';
26 26
 	}
27 27
 
28
-	$thumbnail_id = get_post_thumbnail_id( get_the_ID() );
29
-	$image_arr    = wp_get_attachment_image_src( $thumbnail_id, 'lsx-single-thumbnail' );
28
+	$thumbnail_id = get_post_thumbnail_id(get_the_ID());
29
+	$image_arr    = wp_get_attachment_image_src($thumbnail_id, 'lsx-single-thumbnail');
30 30
 
31
-	if ( is_array( $image_arr ) ) {
31
+	if (is_array($image_arr)) {
32 32
 		$image_src = $image_arr[0];
33 33
 	}
34 34
 ?>
35 35
 
36
-<article id="post-<?php the_ID(); ?>" <?php post_class( $thumb_class ); ?>>
36
+<article id="post-<?php the_ID(); ?>" <?php post_class($thumb_class); ?>>
37 37
 	<?php lsx_entry_top(); ?>
38 38
 
39 39
 	<div class="entry-layout">
40 40
 		<div class="entry-layout-content entry-layout-content-<?php echo has_post_thumbnail() ? '67' : '100'; ?>">
41 41
 			<header class="entry-header">
42
-				<?php if ( has_post_thumbnail() ) : ?>
43
-					<div class="entry-image <?php echo esc_attr( $image_class ); ?>">
42
+				<?php if (has_post_thumbnail()) : ?>
43
+					<div class="entry-image <?php echo esc_attr($image_class); ?>">
44 44
 						<a class="thumbnail" href="<?php the_permalink(); ?>">
45
-							 <?php lsx_thumbnail( 'lsx-single-thumbnail' ); ?>
45
+							 <?php lsx_thumbnail('lsx-single-thumbnail'); ?>
46 46
 						</a>
47 47
 					</div>
48 48
 				<?php endif; ?>
@@ -50,37 +50,37 @@  discard block
 block discarded – undo
50 50
 				<?php 
51 51
 					$format = get_post_format();
52 52
 
53
-					if ( false === $format ) {
53
+					if (false === $format) {
54 54
 						$format = 'standard';
55
-						$show_on_front = get_option( 'show_on_front', 'posts' );
55
+						$show_on_front = get_option('show_on_front', 'posts');
56 56
 						
57
-						if ( 'page' == $show_on_front ) {
58
-							$archive_link = get_permalink( get_option( 'page_for_posts' ) );
57
+						if ('page' == $show_on_front) {
58
+							$archive_link = get_permalink(get_option('page_for_posts'));
59 59
 						} else {
60 60
 							$archive_link = home_url();
61 61
 						}
62 62
 					} else {
63
-						$archive_link = get_post_format_link( $format );
63
+						$archive_link = get_post_format_link($format);
64 64
 					}
65 65
 
66
-					$format = lsx_translate_format_to_fontawesome( $format );
66
+					$format = lsx_translate_format_to_fontawesome($format);
67 67
 				?>
68 68
 
69 69
 				<h1 class="entry-title">
70
-					<?php if ( has_post_thumbnail() ) : ?>
71
-						<a href="<?php echo esc_url( $archive_link ) ?>" class="format-link has-thumb fa fa-<?php echo esc_attr( $format ) ?>"></a>
70
+					<?php if (has_post_thumbnail()) : ?>
71
+						<a href="<?php echo esc_url($archive_link) ?>" class="format-link has-thumb fa fa-<?php echo esc_attr($format) ?>"></a>
72 72
 					<?php else : ?>
73
-						<a href="<?php echo esc_url( $archive_link ) ?>" class="format-link fa fa-<?php echo esc_attr( $format ) ?>"></a>
73
+						<a href="<?php echo esc_url($archive_link) ?>" class="format-link fa fa-<?php echo esc_attr($format) ?>"></a>
74 74
 					<?php endif; ?>
75 75
 
76
-					<?php if ( has_post_format( array('link') ) ) : ?>
77
-						<a href="<?php echo esc_url( lsx_get_my_url() ); ?>" rel="bookmark"><?php the_title(); ?> <span class="fa fa-external-link"></span></a>
76
+					<?php if (has_post_format(array('link'))) : ?>
77
+						<a href="<?php echo esc_url(lsx_get_my_url()); ?>" rel="bookmark"><?php the_title(); ?> <span class="fa fa-external-link"></span></a>
78 78
 					<?php else : ?>
79 79
 						<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
80 80
 					<?php endif; ?>
81 81
 
82
-					<?php if ( is_sticky() ) : ?>
83
-						<span class="label label-default label-sticky"><?php esc_html_e( 'Featured', 'lsx' ); ?></span>
82
+					<?php if (is_sticky()) : ?>
83
+						<span class="label label-default label-sticky"><?php esc_html_e('Featured', 'lsx'); ?></span>
84 84
 					<?php endif; ?>
85 85
 				</h1>
86 86
 
@@ -89,13 +89,13 @@  discard block
 block discarded – undo
89 89
 				</div><!-- .entry-meta -->
90 90
 			</header><!-- .entry-header -->	
91 91
 
92
-			<?php if ( ! is_singular() && ! has_post_format( array( 'video', 'audio', 'quote', 'link' ) ) && ! apply_filters( 'lsx_blog_force_content_on_list', false ) ) : // Only display Excerpts for Search and Archives ?>
92
+			<?php if ( ! is_singular() && ! has_post_format(array('video', 'audio', 'quote', 'link')) && ! apply_filters('lsx_blog_force_content_on_list', false)) : // Only display Excerpts for Search and Archives ?>
93 93
 				<div class="entry-summary"> 
94 94
 					<?php the_excerpt(); ?>
95 95
 				</div><!-- .entry-summary -->
96
-			<?php elseif ( has_post_format( array('link') ) ) : ?>
96
+			<?php elseif (has_post_format(array('link'))) : ?>
97 97
 
98
-			<?php elseif ( apply_filters( 'lsx_blog_force_content_on_list', false ) ) : ?>
98
+			<?php elseif (apply_filters('lsx_blog_force_content_on_list', false)) : ?>
99 99
 				<div class="entry-content">
100 100
 					<?php the_content(); ?>
101 101
 				</div><!-- .entry-content -->
@@ -104,12 +104,12 @@  discard block
 block discarded – undo
104 104
 					<?php
105 105
 						the_content();
106 106
 
107
-						wp_link_pages( array(
107
+						wp_link_pages(array(
108 108
 							'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
109 109
 							'after' => '</div></div>',
110 110
 							'link_before' => '<span>',
111 111
 							'link_after' => '</span>'
112
-						) );
112
+						));
113 113
 					?>
114 114
 				</div><!-- .entry-content -->
115 115
 			<?php endif; ?>
@@ -119,19 +119,19 @@  discard block
 block discarded – undo
119 119
 			<?php
120 120
 				$comments_number = get_comments_number();
121 121
 
122
-				if ( has_tag() || ( comments_open() && ! empty( $comments_number ) ) ) :
122
+				if (has_tag() || (comments_open() && ! empty($comments_number))) :
123 123
 					?>
124 124
 					
125 125
 					<div class="post-tags-wrapper">
126 126
 						<?php lsx_content_post_tags(); ?>
127 127
 						
128
-						<?php if ( comments_open() && ! empty( $comments_number ) ) : ?>
128
+						<?php if (comments_open() && ! empty($comments_number)) : ?>
129 129
 							<div class="post-comments">
130 130
 								<a href="<?php the_permalink() ?>#comments">
131 131
 									<?php
132 132
 										printf(
133
-											esc_html( _n( 'One Comment', '%1$s Comments', $comments_number, 'lsx' ) ),
134
-											esc_html( number_format_i18n( $comments_number ) )
133
+											esc_html(_n('One Comment', '%1$s Comments', $comments_number, 'lsx')),
134
+											esc_html(number_format_i18n($comments_number))
135 135
 										);
136 136
 									?>
137 137
 								</a>
@@ -144,10 +144,10 @@  discard block
 block discarded – undo
144 144
 			?>
145 145
 		</div>
146 146
 	
147
-		<?php if ( has_post_thumbnail() ) : ?>
147
+		<?php if (has_post_thumbnail()) : ?>
148 148
 			<div class="entry-image hidden hidden-xs">
149
-				<a class="thumbnail" href="<?php the_permalink(); ?>" style="background-image:url(<?php echo esc_url( $image_src ); ?>);">
150
-					<?php lsx_thumbnail( 'lsx-single-thumbnail' ); ?>
149
+				<a class="thumbnail" href="<?php the_permalink(); ?>" style="background-image:url(<?php echo esc_url($image_src); ?>);">
150
+					<?php lsx_thumbnail('lsx-single-thumbnail'); ?>
151 151
 				</a>
152 152
 			</div>
153 153
 		<?php endif; ?>
@@ -157,9 +157,9 @@  discard block
 block discarded – undo
157 157
 
158 158
 	<div class="clearfix"></div>
159 159
 
160
-	<?php edit_post_link( esc_html__( 'Edit', 'lsx' ), '<span class="edit-link">', '</span>' ); ?>
160
+	<?php edit_post_link(esc_html__('Edit', 'lsx'), '<span class="edit-link">', '</span>'); ?>
161 161
 
162
-	<?php if ( ! is_singular() && ! is_single() ) : // Display full-width divider on Archives ?>
162
+	<?php if ( ! is_singular() && ! is_single()) : // Display full-width divider on Archives ?>
163 163
 		<div class="lsx-breaker"></div>
164 164
 	<?php endif; ?>
165 165
 </article>
Please login to merge, or discard this patch.
inc/template-tags.php 1 patch
Spacing   +167 added lines, -167 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly
2
+if ( ! defined('ABSPATH')) return; // Exit if accessed directly
3 3
 
4 4
 /**
5 5
  * Yoast Breadcrumbs on Twitter Bootstrap
@@ -10,21 +10,21 @@  discard block
 block discarded – undo
10 10
  * @param string $sep Your custom separator
11 11
  */
12 12
 function lsx_breadcrumbs() {
13
-  if (!function_exists('yoast_breadcrumb') && !function_exists('woocommerce_breadcrumb')) {
13
+  if ( ! function_exists('yoast_breadcrumb') && ! function_exists('woocommerce_breadcrumb')) {
14 14
     return null;
15 15
   }
16 16
   
17 17
   $show_on_front = get_option('show_on_front');
18
-  if ( ('posts' == $show_on_front && is_home()) || ('page' == $show_on_front && is_front_page()) ) {
18
+  if (('posts' == $show_on_front && is_home()) || ('page' == $show_on_front && is_front_page())) {
19 19
   	return;
20 20
   }
21 21
 
22
-  if(function_exists('woocommerce_breadcrumb')){
22
+  if (function_exists('woocommerce_breadcrumb')) {
23 23
   		ob_start();
24 24
   		woocommerce_breadcrumb();
25 25
   		$output = ob_get_clean();
26 26
   		$output = str_replace('woocommerce-breadcrumb', 'woocommerce-breadcrumb breadcrumbs-container', $output);
27
-  }elseif(function_exists('yoast_breadcrumb')){
27
+  }elseif (function_exists('yoast_breadcrumb')) {
28 28
 	  	// Default Yoast Breadcrumbs Separator
29 29
 	  	$old_sep = '\&raquo\;';
30 30
 	  	
@@ -42,11 +42,11 @@  discard block
 block discarded – undo
42 42
 	  	$output = '<div class="breadcrumbs-container">' . $output . '</div>';
43 43
   }
44 44
   
45
-  $output = apply_filters('lsx_breadcrumbs',$output);
45
+  $output = apply_filters('lsx_breadcrumbs', $output);
46 46
 
47
-  echo wp_kses_post( $output );
47
+  echo wp_kses_post($output);
48 48
 }
49
-add_action( 'lsx_content_top', 'lsx_breadcrumbs', 100 );
49
+add_action('lsx_content_top', 'lsx_breadcrumbs', 100);
50 50
 
51 51
 /**
52 52
  * Replaces the seperator with a blank space.
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 function lsx_breadcrumbs_seperator_filter($seperator) {
56 56
 	return '';
57 57
 }
58
-add_filter( 'wpseo_breadcrumb_separator', 'lsx_breadcrumbs_seperator_filter' );
58
+add_filter('wpseo_breadcrumb_separator', 'lsx_breadcrumbs_seperator_filter');
59 59
 
60 60
 /**
61 61
  * Custom template tags for this theme.
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
  *
64 64
  * @package lsx
65 65
  */
66
-if ( ! function_exists( 'lsx_site_title' ) ) :
66
+if ( ! function_exists('lsx_site_title')) :
67 67
 	/**
68 68
 	 * Displays logo when applicable
69 69
 	 *
@@ -72,8 +72,8 @@  discard block
 block discarded – undo
72 72
 	function lsx_site_title() {
73 73
 		?>
74 74
 			<div class="site-branding">
75
-				<h1 class="site-title"><a title="<?php bloginfo( 'name' ); ?>" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
76
-				<p class="site-description"><?php bloginfo( 'description' ); ?></p>
75
+				<h1 class="site-title"><a title="<?php bloginfo('name'); ?>" href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a></h1>
76
+				<p class="site-description"><?php bloginfo('description'); ?></p>
77 77
 			</div>		
78 78
 		<?php 
79 79
 	}
@@ -82,9 +82,9 @@  discard block
 block discarded – undo
82 82
 /**
83 83
  * Add customisable post meta.
84 84
  */
85
-if ( ! function_exists( 'lsx_post_meta' ) ) {
85
+if ( ! function_exists('lsx_post_meta')) {
86 86
 	function lsx_post_meta() {
87
-		if ( ( is_page() && ! ( is_home() || is_front_page() ) ) && ! is_page_template( 'page-templates/template-blog.php' ) ) {
87
+		if ((is_page() && ! (is_home() || is_front_page())) && ! is_page_template('page-templates/template-blog.php')) {
88 88
 			return;
89 89
 		}
90 90
 		?>
@@ -99,94 +99,94 @@  discard block
 block discarded – undo
99 99
 /**
100 100
  * Add customisable post meta: post date
101 101
  */
102
-if ( ! function_exists( 'lsx_post_meta_date' ) ) {
102
+if ( ! function_exists('lsx_post_meta_date')) {
103 103
 	function lsx_post_meta_date() {
104 104
 		$time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
105 105
 				
106
-		$time_string = sprintf( $time_string,
107
-			esc_attr( get_the_date( 'c' ) ),
106
+		$time_string = sprintf($time_string,
107
+			esc_attr(get_the_date('c')),
108 108
 			get_the_date(),
109
-			esc_attr( get_the_modified_date( 'c' ) ),
109
+			esc_attr(get_the_modified_date('c')),
110 110
 			get_the_modified_date()
111 111
 		);
112 112
 
113
-		printf( '<span class="post-meta-time"><span>%1$s</span> <a href="%2$s" rel="bookmark">%3$s</a></span>',
114
-			esc_html_x( 'Posted on:', 'Used before publish date.', 'lsx' ),
115
-			esc_url( get_permalink() ),
116
-			wp_kses_post( $time_string )
113
+		printf('<span class="post-meta-time"><span>%1$s</span> <a href="%2$s" rel="bookmark">%3$s</a></span>',
114
+			esc_html_x('Posted on:', 'Used before publish date.', 'lsx'),
115
+			esc_url(get_permalink()),
116
+			wp_kses_post($time_string)
117 117
 		);
118 118
 	}
119 119
 }
120
-add_action( 'lsx_content_post_meta', 'lsx_post_meta_date', 10 );
120
+add_action('lsx_content_post_meta', 'lsx_post_meta_date', 10);
121 121
 
122 122
 /**
123 123
  * Add customisable post meta: post author
124 124
  */
125
-if ( ! function_exists( 'lsx_post_meta_author' ) ) {
125
+if ( ! function_exists('lsx_post_meta_author')) {
126 126
 	function lsx_post_meta_author() {
127 127
 		$author = get_the_author();
128
-		$author_url = esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) );
128
+		$author_url = esc_url(get_author_posts_url(get_the_author_meta('ID')));
129 129
 
130
-		if ( empty( $author ) ) {
130
+		if (empty($author)) {
131 131
 			global $post;
132 132
 
133
-			$author = get_user_by( 'ID', $post->post_author );
133
+			$author = get_user_by('ID', $post->post_author);
134 134
 			$author = $author->display_name;
135
-			$author_url = esc_url( get_author_posts_url( $post->post_author ) );
135
+			$author_url = esc_url(get_author_posts_url($post->post_author));
136 136
 		}
137 137
 
138
-		printf( '<span class="post-meta-author"><span>%1$s</span> <a href="%2$s">%3$s</a></span>',
139
-			esc_html_x( 'Posted by:', 'Used before post author name.', 'lsx' ),
138
+		printf('<span class="post-meta-author"><span>%1$s</span> <a href="%2$s">%3$s</a></span>',
139
+			esc_html_x('Posted by:', 'Used before post author name.', 'lsx'),
140 140
 			$author_url,
141 141
 			$author
142 142
 		);
143 143
 	}
144 144
 }
145
-add_action( 'lsx_content_post_meta', 'lsx_post_meta_author', 20 );
145
+add_action('lsx_content_post_meta', 'lsx_post_meta_author', 20);
146 146
 
147 147
 /**
148 148
  * Add customisable post meta: post category(ies)
149 149
  */
150
-if ( ! function_exists( 'lsx_post_meta_category' ) ) {
150
+if ( ! function_exists('lsx_post_meta_category')) {
151 151
 	function lsx_post_meta_category() {
152
-		$post_categories = wp_get_post_categories( get_the_ID() );
152
+		$post_categories = wp_get_post_categories(get_the_ID());
153 153
 		$cats = array();
154 154
 
155
-		foreach( $post_categories as $c ) {
156
-			$cat = get_category( $c );
157
-			$cats[] = '<a href="' . get_category_link( $cat->term_id ) . '" title="' . sprintf( esc_html__( 'View all posts in %s' , 'lsx' ), $cat->name ) . '" ' . '>' . $cat->name . '</a>';
155
+		foreach ($post_categories as $c) {
156
+			$cat = get_category($c);
157
+			$cats[] = '<a href="' . get_category_link($cat->term_id) . '" title="' . sprintf(esc_html__('View all posts in %s', 'lsx'), $cat->name) . '" ' . '>' . $cat->name . '</a>';
158 158
 		}
159 159
 
160
-		if ( ! empty( $cats ) ) {
160
+		if ( ! empty($cats)) {
161 161
 			?>
162
-			<span class="post-meta-categories"><span><?php esc_html_e( 'Posted in:', 'lsx' ); ?></span> <?php echo wp_kses_post( implode( ', ', $cats ) ); ?></span>
162
+			<span class="post-meta-categories"><span><?php esc_html_e('Posted in:', 'lsx'); ?></span> <?php echo wp_kses_post(implode(', ', $cats)); ?></span>
163 163
 			<?php
164 164
 		}
165 165
 	}
166 166
 }
167
-add_action( 'lsx_content_post_meta', 'lsx_post_meta_category', 30 );
167
+add_action('lsx_content_post_meta', 'lsx_post_meta_category', 30);
168 168
 
169 169
 /**
170 170
  * Add customisable post meta: post tag(s)
171 171
  */
172
-if ( ! function_exists( 'lsx_post_tags' ) ) {
172
+if ( ! function_exists('lsx_post_tags')) {
173 173
 	function lsx_post_tags() {
174
-		if ( has_tag() ) :
174
+		if (has_tag()) :
175 175
 			?>
176 176
 			<div class="post-tags">
177
-				<span><?php esc_html_e( 'Tagged as:', 'lsx' ); ?></span> <?php echo wp_kses_post( get_the_tag_list( '' ) ); ?>
177
+				<span><?php esc_html_e('Tagged as:', 'lsx'); ?></span> <?php echo wp_kses_post(get_the_tag_list('')); ?>
178 178
 			</div>
179 179
 			<?php
180 180
 		endif;
181 181
 	}
182 182
 }
183
-add_action( 'lsx_content_post_tags', 'lsx_post_tags', 10 );
183
+add_action('lsx_content_post_tags', 'lsx_post_tags', 10);
184 184
 
185 185
 /**
186 186
  * Add customisable post info: related posts
187 187
  */
188 188
 function lsx_related_posts() {
189
-	if ( is_singular( 'post' ) && class_exists( 'Jetpack_RelatedPosts' ) ) {
189
+	if (is_singular('post') && class_exists('Jetpack_RelatedPosts')) {
190 190
 		?>
191 191
 			<div class="row row-related-posts">
192 192
 				<div class="col-md-12">
@@ -196,15 +196,15 @@  discard block
 block discarded – undo
196 196
 		<?php
197 197
 	}
198 198
 }
199
-add_action( 'lsx_entry_bottom', 'lsx_related_posts', 10 );
199
+add_action('lsx_entry_bottom', 'lsx_related_posts', 10);
200 200
 
201 201
 /**
202 202
  * Translate post format to Font Awesome class
203 203
  */
204 204
 
205
-if ( ! function_exists( 'lsx_translate_format_to_fontawesome' ) ) {
206
-	function lsx_translate_format_to_fontawesome( $format ) {
207
-		switch ( $format ) {
205
+if ( ! function_exists('lsx_translate_format_to_fontawesome')) {
206
+	function lsx_translate_format_to_fontawesome($format) {
207
+		switch ($format) {
208 208
 			case 'image':
209 209
 				$format = 'camera';
210 210
 				break;
@@ -249,45 +249,45 @@  discard block
 block discarded – undo
249 249
  * to be added/modified where necessary.
250 250
  */
251 251
 
252
-if ( ! function_exists( 'lsx_portfolio_meta' ) ) {
252
+if ( ! function_exists('lsx_portfolio_meta')) {
253 253
 	function lsx_portfolio_meta() {
254 254
 		?>
255 255
 		<div id="portfolio-meta" class="portfolio-meta info-box-sticky info-box sticky-wrapper">
256 256
 			<?php 
257
-				$client = get_post_meta(get_the_ID(),'lsx-client',true);
258
-				if(false != $client){ ?>
257
+				$client = get_post_meta(get_the_ID(), 'lsx-client', true);
258
+				if (false != $client) { ?>
259 259
 					<div class="portfolio-client">
260
-						<span><span class="fa fa-user"></span><?php esc_html_e( 'Client','lsx' ); ?></span>
261
-						<span><?php echo esc_html( $client ); ?></span>
260
+						<span><span class="fa fa-user"></span><?php esc_html_e('Client', 'lsx'); ?></span>
261
+						<span><?php echo esc_html($client); ?></span>
262 262
 					</div>				
263 263
 			<?php }	?>
264 264
 
265 265
 			<?php 
266
-				$portfolio_type = get_the_term_list( get_the_ID(), 'jetpack-portfolio-type', '', ', ', '' );
266
+				$portfolio_type = get_the_term_list(get_the_ID(), 'jetpack-portfolio-type', '', ', ', '');
267 267
 				
268
-				if($portfolio_type){
268
+				if ($portfolio_type) {
269 269
 					?>
270 270
 					<div class="portfolio-industry">
271
-						<span><span class="fa fa-folder-open"></span><?php esc_html_e( 'Industry', 'lsx' ); ?></span>
272
-						<?php echo wp_kses_post( $portfolio_type ); ?>
271
+						<span><span class="fa fa-folder-open"></span><?php esc_html_e('Industry', 'lsx'); ?></span>
272
+						<?php echo wp_kses_post($portfolio_type); ?>
273 273
 					</div>			
274 274
 			<?php } ?>
275 275
 
276 276
 			<?php 
277
-				$services = get_the_term_list( get_the_ID(), 'jetpack-portfolio-tag', '', ', ', '' );
278
-				if(false != $services){ ?>
277
+				$services = get_the_term_list(get_the_ID(), 'jetpack-portfolio-tag', '', ', ', '');
278
+				if (false != $services) { ?>
279 279
 					<div class="portfolio-services">
280
-						<span><span class="fa fa-cog"></span><?php esc_html_e( 'Services', 'lsx' ); ?></span>
281
-						<?php echo wp_kses_post( $services ); ?>
280
+						<span><span class="fa fa-cog"></span><?php esc_html_e('Services', 'lsx'); ?></span>
281
+						<?php echo wp_kses_post($services); ?>
282 282
 					</div>				
283 283
 			<?php }	?>
284 284
 
285 285
 			<?php 
286
-				$website = esc_url( get_post_meta(get_the_ID(),'lsx-website',true) );
287
-				if(false != $website){ ?>
286
+				$website = esc_url(get_post_meta(get_the_ID(), 'lsx-website', true));
287
+				if (false != $website) { ?>
288 288
 					<div class="portfolio-website">
289
-						<span><span class="fa fa-link"></span><?php esc_html_e( 'Website', 'lsx' ); ?></span>
290
-						<a target="_blank" href="<?php echo esc_url( $website ); ?>"><?php echo esc_html( $website ) ?></a>
289
+						<span><span class="fa fa-link"></span><?php esc_html_e('Website', 'lsx'); ?></span>
290
+						<a target="_blank" href="<?php echo esc_url($website); ?>"><?php echo esc_html($website) ?></a>
291 291
 					</div>				
292 292
 			<?php }	?>
293 293
 
@@ -301,29 +301,29 @@  discard block
 block discarded – undo
301 301
  *
302 302
  */
303 303
 
304
-if ( ! function_exists( 'lsx_portfolio_gallery' ) ) {
304
+if ( ! function_exists('lsx_portfolio_gallery')) {
305 305
 	function lsx_portfolio_gallery() {
306 306
 
307
-		$media = get_attached_media( 'image' );
307
+		$media = get_attached_media('image');
308 308
 		$media_array = array();
309 309
 		$post_thumbnail_id = get_post_thumbnail_id(get_the_ID());
310 310
 		
311
-		if(!empty($media)){
312
-			foreach($media as $media_item){
313
-				if($post_thumbnail_id != $media_item->ID) {
311
+		if ( ! empty($media)) {
312
+			foreach ($media as $media_item) {
313
+				if ($post_thumbnail_id != $media_item->ID) {
314 314
 					$media_array[] = $media_item->ID;
315 315
 				}
316 316
 			}
317 317
 				
318
-			if(!empty($media_array)){
319
-				echo wp_kses_post( gallery_shortcode( array( 'size' => 'full', 'ids' => implode( ',', $media_array ) ) ) );
318
+			if ( ! empty($media_array)) {
319
+				echo wp_kses_post(gallery_shortcode(array('size' => 'full', 'ids' => implode(',', $media_array))));
320 320
 			}
321 321
 		}
322 322
 		
323 323
 	}
324 324
 }
325 325
 
326
-if ( ! function_exists( 'lsx_paging_nav' ) ) :
326
+if ( ! function_exists('lsx_paging_nav')) :
327 327
 	/**
328 328
 	 * Display navigation to next/previous set of posts when applicable.
329 329
 	 *
@@ -331,33 +331,33 @@  discard block
 block discarded – undo
331 331
 	 */
332 332
 	function lsx_paging_nav() {
333 333
 		// Don't print empty markup if there's only one page.
334
-		if ( $GLOBALS['wp_query']->max_num_pages < 2 ) {
334
+		if ($GLOBALS['wp_query']->max_num_pages < 2) {
335 335
 			return;
336 336
 		}
337 337
 		
338
-		if(current_theme_supports('infinite-scroll') && class_exists('The_Neverending_Home_Page')){
338
+		if (current_theme_supports('infinite-scroll') && class_exists('The_Neverending_Home_Page')) {
339 339
 			return true;
340
-		}elseif(function_exists('wp_pagenavi')){
340
+		}elseif (function_exists('wp_pagenavi')) {
341 341
 			wp_pagenavi();
342
-		}else{
342
+		} else {
343 343
 			
344 344
 			$labels = array(
345
-				'next' 		=> '<span class="meta-nav">&larr;</span> '.esc_html__( 'Older posts', 'lsx' ),
346
-				'previous' 	=> esc_html__( 'Newer posts', 'lsx' ).' <span class="meta-nav">&rarr;</span>',
347
-				'title' 	=> esc_html__( 'Posts navigation', 'lsx' )
345
+				'next' 		=> '<span class="meta-nav">&larr;</span> ' . esc_html__('Older posts', 'lsx'),
346
+				'previous' 	=> esc_html__('Newer posts', 'lsx') . ' <span class="meta-nav">&rarr;</span>',
347
+				'title' 	=> esc_html__('Posts navigation', 'lsx')
348 348
 			);
349
-			$labels = apply_filters('lsx_post_navigation_labels',$labels);
349
+			$labels = apply_filters('lsx_post_navigation_labels', $labels);
350 350
 			?>
351 351
 			<nav class="navigation paging-navigation" role="navigation">
352 352
 				<div class="lsx-breaker"></div>
353
-				<h1 class="screen-reader-text"><?php echo esc_html( $labels['title'] ); ?></h1>
353
+				<h1 class="screen-reader-text"><?php echo esc_html($labels['title']); ?></h1>
354 354
 				<div class="nav-links">
355
-					<?php if ( get_next_posts_link() ) : ?>
356
-					<div class="nav-previous"><?php next_posts_link( $labels['next'] ); ?></div>
355
+					<?php if (get_next_posts_link()) : ?>
356
+					<div class="nav-previous"><?php next_posts_link($labels['next']); ?></div>
357 357
 					<?php endif; ?>
358 358
 		
359
-					<?php if ( get_previous_posts_link() ) : ?>
360
-					<div class="nav-next"><?php previous_posts_link( $labels['previous'] ); ?></div>
359
+					<?php if (get_previous_posts_link()) : ?>
360
+					<div class="nav-next"><?php previous_posts_link($labels['previous']); ?></div>
361 361
 					<?php endif; ?>
362 362
 					
363 363
 					<div class="clearfix"></div>
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
 	}
369 369
 endif;
370 370
 
371
-if ( ! function_exists( 'lsx_post_nav' ) ) :
371
+if ( ! function_exists('lsx_post_nav')) :
372 372
 /**
373 373
  * Display navigation to next/previous post when applicable.
374 374
  *
@@ -376,10 +376,10 @@  discard block
 block discarded – undo
376 376
  */
377 377
 function lsx_post_nav() {
378 378
 	// Don't print empty markup if there's nowhere to navigate.
379
-	$previous = ( is_attachment() ) ? get_post( get_post()->post_parent ) : get_adjacent_post( false, '', true );
380
-	$next     = get_adjacent_post( false, '', false );
379
+	$previous = (is_attachment()) ? get_post(get_post()->post_parent) : get_adjacent_post(false, '', true);
380
+	$next     = get_adjacent_post(false, '', false);
381 381
 
382
-	if ( ! $next && ! $previous ) {
382
+	if ( ! $next && ! $previous) {
383 383
 		return;
384 384
 	}
385 385
 	?>
@@ -389,14 +389,14 @@  discard block
 block discarded – undo
389 389
 		<div class="nav-links pager row">
390 390
 			<div class="previous col-md-6">
391 391
 				<?php
392
-					$previous_post = get_previous_post_link( '%link', '<p class="nav-links-description">'._x( 'Previous Post', 'Previous post link', 'lsx' ).'</p><h3>%title</h3>' );
393
-					echo wp_kses_post( $previous_post );
392
+					$previous_post = get_previous_post_link('%link', '<p class="nav-links-description">' . _x('Previous Post', 'Previous post link', 'lsx') . '</p><h3>%title</h3>');
393
+					echo wp_kses_post($previous_post);
394 394
 				?>
395 395
 			</div>
396 396
 			<div class="next col-md-6">
397 397
 				<?php
398
-					$next_post = get_next_post_link( '%link', '<p class="nav-links-description">'._x( 'Next Post', 'Next post link', 'lsx' ).'</p><h3>%title</h3>' );
399
-					echo wp_kses_post( $next_post );
398
+					$next_post = get_next_post_link('%link', '<p class="nav-links-description">' . _x('Next Post', 'Next post link', 'lsx') . '</p><h3>%title</h3>');
399
+					echo wp_kses_post($next_post);
400 400
 				?>
401 401
 			</div>
402 402
 		</div><!-- .nav-links -->
@@ -412,16 +412,16 @@  discard block
 block discarded – undo
412 412
  * @subpackage	template-tags
413 413
  * @category	header
414 414
  */
415
-if(!function_exists('lsx_site_identity')){
416
-	function lsx_site_identity(){
415
+if ( ! function_exists('lsx_site_identity')) {
416
+	function lsx_site_identity() {
417 417
 
418
-		if ( function_exists('has_custom_logo') && has_custom_logo() ) {
418
+		if (function_exists('has_custom_logo') && has_custom_logo()) {
419 419
 			the_custom_logo();
420
-		}elseif ( function_exists( 'jetpack_has_site_logo' ) && jetpack_has_site_logo() ) {
420
+		}elseif (function_exists('jetpack_has_site_logo') && jetpack_has_site_logo()) {
421 421
 			jetpack_the_site_logo();
422
-		}else{
422
+		} else {
423 423
 			// shouldn't show both together.. its just strange
424
-			if(true == get_theme_mod('site_logo_header_text',1)){
424
+			if (true == get_theme_mod('site_logo_header_text', 1)) {
425 425
 				lsx_site_title();
426 426
 			}
427 427
 		}
@@ -436,29 +436,29 @@  discard block
 block discarded – undo
436 436
  * @subpackage	template-tags
437 437
  * @category	navigation
438 438
  */
439
-if(!function_exists('lsx_navbar_header')){
440
-	function lsx_navbar_header(){ ?>
439
+if ( ! function_exists('lsx_navbar_header')) {
440
+	function lsx_navbar_header() { ?>
441 441
 	   	<div class="navbar-header" itemscope itemtype="http://schema.org/WebPage">
442 442
 	   	
443 443
 	   		<?php 
444
-	   		$nav_menu = get_theme_mod('nav_menu_locations',false);
444
+	   		$nav_menu = get_theme_mod('nav_menu_locations', false);
445 445
 			//print_r(get_nav_menu_locations());
446 446
 
447
-	   		if(false != $nav_menu && isset($nav_menu['primary']) && 0 != $nav_menu['primary']){ ?>
447
+	   		if (false != $nav_menu && isset($nav_menu['primary']) && 0 != $nav_menu['primary']) { ?>
448 448
 		   		<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".primary-navbar">
449
-		        	<span class="sr-only"><?php esc_html_e( 'Toggle navigation', 'lsx' ); ?></span>
449
+		        	<span class="sr-only"><?php esc_html_e('Toggle navigation', 'lsx'); ?></span>
450 450
 		        	<span class="icon-bar"></span>
451 451
 		        	<span class="icon-bar"></span>
452 452
 		        	<span class="icon-bar"></span>
453 453
 		   		</button>
454
-	   			<span class="mobile-menu-title"><?php esc_html_e( 'Menu', 'lsx' ); ?></span>
454
+	   			<span class="mobile-menu-title"><?php esc_html_e('Menu', 'lsx'); ?></span>
455 455
 	   		<?php } ?>
456 456
 			<?php lsx_site_identity(); ?>
457 457
 	    </div>
458 458
 	<?php }
459 459
 }
460 460
 //the if statement is for backwards compatability with previous versions of the theme.
461
-add_action('lsx_nav_before','lsx_navbar_header');
461
+add_action('lsx_nav_before', 'lsx_navbar_header');
462 462
 
463 463
 /**
464 464
  * Outputs the Nav Menu
@@ -467,16 +467,16 @@  discard block
 block discarded – undo
467 467
  * @subpackage	template-tags
468 468
  * @category	navigation
469 469
  */
470
-if(!function_exists('lsx_nav_menu')){
471
-	function lsx_nav_menu(){
472
-		$nav_menu = get_theme_mod('nav_menu_locations',false);
470
+if ( ! function_exists('lsx_nav_menu')) {
471
+	function lsx_nav_menu() {
472
+		$nav_menu = get_theme_mod('nav_menu_locations', false);
473 473
 		
474 474
 		//print_r(get_nav_menu_locations());
475 475
 
476
-	    if(false != $nav_menu && isset($nav_menu['primary']) && 0 != $nav_menu['primary']){ ?>
476
+	    if (false != $nav_menu && isset($nav_menu['primary']) && 0 != $nav_menu['primary']) { ?>
477 477
 			<nav class="primary-navbar collapse navbar-collapse">
478 478
 		    	<?php
479
-				wp_nav_menu( array(
479
+				wp_nav_menu(array(
480 480
 					'theme_location' => 'primary',
481 481
 					'menu' => $nav_menu['primary'],
482 482
 					'depth' => 3,
@@ -497,7 +497,7 @@  discard block
 block discarded – undo
497 497
  * @subpackage	template-tags
498 498
  * @category	sitemap
499 499
  */
500
-function lsx_sitemap_pages(){
500
+function lsx_sitemap_pages() {
501 501
 	$page_args = array(
502 502
 		'post_type'		=>	'page',
503 503
 		'posts_per_page'=>	99,
@@ -505,13 +505,13 @@  discard block
 block discarded – undo
505 505
 		'post_type'		=>	'page',
506 506
 	);
507 507
 	$pages = new WP_Query($page_args);
508
-	if($pages->have_posts()){
508
+	if ($pages->have_posts()) {
509 509
 
510
-		echo '<h2>' . esc_html__( 'Pages', 'lsx' ) . '</h2>';
510
+		echo '<h2>' . esc_html__('Pages', 'lsx') . '</h2>';
511 511
 
512 512
 		echo '<ul>';
513
-		while($pages->have_posts()){ $pages->the_post();
514
-			echo '<li class="page_item page-item-' . esc_attr( get_the_ID() ) . '"><a href="' . esc_url( get_permalink() ) . '" title="">' . get_the_title() . '</a></li>';
513
+		while ($pages->have_posts()) { $pages->the_post();
514
+			echo '<li class="page_item page-item-' . esc_attr(get_the_ID()) . '"><a href="' . esc_url(get_permalink()) . '" title="">' . get_the_title() . '</a></li>';
515 515
 		}
516 516
 		echo '</ul>';
517 517
 		
@@ -526,13 +526,13 @@  discard block
 block discarded – undo
526 526
  * @subpackage	template-tags
527 527
  * @category	sitemap
528 528
  */
529
-function lsx_sitemap_custom_post_type(){
529
+function lsx_sitemap_custom_post_type() {
530 530
 	$args = array(
531 531
 		'public'				=> true,
532 532
 		'_builtin' 				=> false
533 533
 	);
534
-	$post_types = get_post_types($args , 'names');
535
-	foreach($post_types as $post_type){	
534
+	$post_types = get_post_types($args, 'names');
535
+	foreach ($post_types as $post_type) {	
536 536
 
537 537
 		$post_type_args = array(
538 538
 			'post_type'		=>	'page',
@@ -543,19 +543,19 @@  discard block
 block discarded – undo
543 543
 		$post_type_items = new WP_Query($post_type_args);
544 544
 		
545 545
 		$post_type_object = get_post_type_object($post_type);
546
-		if(null != $post_type_object){
546
+		if (null != $post_type_object) {
547 547
 			$title = $post_type_object->labels->name;
548
-		}else{
548
+		} else {
549 549
 			$title = ucwords($post_type);
550 550
 		}
551 551
 		
552
-		if($post_type_items->have_posts()){
552
+		if ($post_type_items->have_posts()) {
553 553
 	
554
-			echo '<h2>' . esc_html( $title ) . '</h2>';
554
+			echo '<h2>' . esc_html($title) . '</h2>';
555 555
 	
556 556
 			echo '<ul>';
557
-			while($post_type_items->have_posts()){ $post_type_items->the_post();
558
-				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>';
557
+			while ($post_type_items->have_posts()) { $post_type_items->the_post();
558
+				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>';
559 559
 			}
560 560
 			echo '</ul>';
561 561
 	
@@ -571,20 +571,20 @@  discard block
 block discarded – undo
571 571
  * @subpackage	template-tags
572 572
  * @category	sitemap
573 573
  */
574
-function lsx_sitemap_taxonomy_clouds(){
574
+function lsx_sitemap_taxonomy_clouds() {
575 575
 
576
-		$taxonomy_args =  array(
576
+		$taxonomy_args = array(
577 577
 			'public'				=> true,
578 578
 			'_builtin' 				=> false
579 579
 		);
580 580
 		$taxonomies = get_taxonomies($taxonomy_args);
581
-		if(!empty($taxonomies)){
582
-			foreach($taxonomies as $taxonomy_id => $taxonomy) {
581
+		if ( ! empty($taxonomies)) {
582
+			foreach ($taxonomies as $taxonomy_id => $taxonomy) {
583 583
 
584
-				$tag_cloud = wp_tag_cloud(array('taxonomy'=>$taxonomy_id,'echo'=>false));
585
-				if(null != $tag_cloud){
586
-					echo '<h2>' . esc_html( $taxonomy ) . '</h2>';
587
-					echo '<aside id="' . esc_attr( $taxonomy_id ) . '" class="widget widget_' . esc_attr( $taxonomy_id ) . '">' . esc_html( $tag_cloud ) . '</aside>';
584
+				$tag_cloud = wp_tag_cloud(array('taxonomy'=>$taxonomy_id, 'echo'=>false));
585
+				if (null != $tag_cloud) {
586
+					echo '<h2>' . esc_html($taxonomy) . '</h2>';
587
+					echo '<aside id="' . esc_attr($taxonomy_id) . '" class="widget widget_' . esc_attr($taxonomy_id) . '">' . esc_html($tag_cloud) . '</aside>';
588 588
 		        }
589 589
 	        }
590 590
         } 
@@ -597,15 +597,15 @@  discard block
 block discarded – undo
597 597
  * @subpackage	hooks
598 598
  * @category	forms
599 599
  */
600
-add_action( 'lsx_footer_before', 'lsx_footer_subscription_cta', 10 );
600
+add_action('lsx_footer_before', 'lsx_footer_subscription_cta', 10);
601 601
 function lsx_footer_subscription_cta() {
602
-	if(!function_exists('lsx_is_form_enabled')){ return; }
602
+	if ( ! function_exists('lsx_is_form_enabled')) { return; }
603 603
 	$subscribe_form_id = lsx_is_form_enabled('subscribe');
604
-	if(false == $subscribe_form_id) { return; }
604
+	if (false == $subscribe_form_id) { return; }
605 605
 
606 606
 	//add Caldera Forms Fields Scripts
607
-	if( defined( 'CFCORE_VER' ) ){
608
-		wp_enqueue_script( 'cf-frontend-fields', CFCORE_URL . 'assets/js/fields.min.js', array('jquery'), CFCORE_VER );
607
+	if (defined('CFCORE_VER')) {
608
+		wp_enqueue_script('cf-frontend-fields', CFCORE_URL . 'assets/js/fields.min.js', array('jquery'), CFCORE_VER);
609 609
 	}
610 610
 
611 611
 	?>
@@ -613,8 +613,8 @@  discard block
 block discarded – undo
613 613
 		<div class="container">
614 614
 			<div class="row">
615 615
 				<div class="col-md-12">
616
-					<h2><?php esc_html_e( 'Subscribe to Our Newsletter', 'lsx' ); ?></h2>
617
-					<?php echo do_shortcode( '[caldera_form id="'.$subscribe_form_id.'"]' ); ?>
616
+					<h2><?php esc_html_e('Subscribe to Our Newsletter', 'lsx'); ?></h2>
617
+					<?php echo do_shortcode('[caldera_form id="' . $subscribe_form_id . '"]'); ?>
618 618
 				</div>
619 619
 			</div>
620 620
 		</div>
@@ -630,13 +630,13 @@  discard block
 block discarded – undo
630 630
  * @category	menu
631 631
  */
632 632
 function lsx_add_top_menu() {
633
-	if ( has_nav_menu( 'top-menu' ) || has_nav_menu(' top-menu-left' ) ) : ?>
633
+	if (has_nav_menu('top-menu') || has_nav_menu(' top-menu-left')) : ?>
634 634
 		<div id="top-menu" class="<?php lsx_top_menu_classes(); ?>">
635 635
 			<div class="container">
636
-				<?php if ( has_nav_menu( 'top-menu' ) ) : ?>
636
+				<?php if (has_nav_menu('top-menu')) : ?>
637 637
 					<nav class="top-menu">
638 638
 						<?php
639
-							wp_nav_menu( array(
639
+							wp_nav_menu(array(
640 640
 								'theme_location' => 'top-menu',
641 641
 								'walker' => new Lsx_Bootstrap_Navwalker())
642 642
 							);
@@ -644,10 +644,10 @@  discard block
 block discarded – undo
644 644
 					</nav>
645 645
 				<?php endif; ?>
646 646
 
647
-				<?php if ( has_nav_menu( 'top-menu-left' ) ) : ?>
647
+				<?php if (has_nav_menu('top-menu-left')) : ?>
648 648
 					<nav class="top-menu pull-left">
649 649
 						<?php
650
-							wp_nav_menu( array(
650
+							wp_nav_menu(array(
651 651
 								'theme_location' => 'top-menu-left',
652 652
 								'walker' => new Lsx_Bootstrap_Navwalker())
653 653
 							);
@@ -658,7 +658,7 @@  discard block
 block discarded – undo
658 658
 		</div>
659 659
 	<?php endif;
660 660
 }
661
-add_action( 'lsx_header_top', 'lsx_add_top_menu' );
661
+add_action('lsx_header_top', 'lsx_add_top_menu');
662 662
 
663 663
 /**
664 664
  * Checks if a caldera form with your slug exists
@@ -667,24 +667,24 @@  discard block
 block discarded – undo
667 667
  * @subpackage	template-tag
668 668
  * @category 	forms
669 669
  */
670
-if ( class_exists('Caldera_Forms') && !function_exists( 'lsx_is_form_enabled' ) ) {
670
+if (class_exists('Caldera_Forms') && ! function_exists('lsx_is_form_enabled')) {
671 671
 	function lsx_is_form_enabled($slug = false) {
672
-		if(false == $slug){ return false; }
672
+		if (false == $slug) { return false; }
673 673
 	
674 674
 		$match = false;
675
-		$forms = get_option( '_caldera_forms' , false );
676
-		if(false !== $forms ) {
677
-			foreach($forms as $form_id=>$form_maybe){
678
-				if( trim(strtolower($slug)) == strtolower($form_maybe['name']) ){
675
+		$forms = get_option('_caldera_forms', false);
676
+		if (false !== $forms) {
677
+			foreach ($forms as $form_id=>$form_maybe) {
678
+				if (trim(strtolower($slug)) == strtolower($form_maybe['name'])) {
679 679
 					$match = $form_id;
680 680
 					break;
681 681
 				}
682 682
 			}
683 683
 		}
684
-		if( false === $match ){
685
-			$is_form = Caldera_Forms::get_form( strtolower( $slug ) );
686
-			if( !empty( $is_form ) ){
687
-				return strtolower( $slug );
684
+		if (false === $match) {
685
+			$is_form = Caldera_Forms::get_form(strtolower($slug));
686
+			if ( ! empty($is_form)) {
687
+				return strtolower($slug);
688 688
 			}
689 689
 		}
690 690
 	
@@ -700,10 +700,10 @@  discard block
 block discarded – undo
700 700
  * @category 	urls
701 701
  */
702 702
 function lsx_get_my_url() {
703
-	if ( ! preg_match( '/<a\s[^>]*?href=[\'"](.+?)[\'"]/is', get_the_content(), $matches ) )
703
+	if ( ! preg_match('/<a\s[^>]*?href=[\'"](.+?)[\'"]/is', get_the_content(), $matches))
704 704
 		return false;
705 705
 
706
-	return esc_url_raw( $matches[1] );
706
+	return esc_url_raw($matches[1]);
707 707
 }
708 708
 
709 709
 /**
@@ -713,19 +713,19 @@  discard block
 block discarded – undo
713 713
  * @subpackage 	extras
714 714
  * @category 	urls
715 715
  */
716
-function lsx_get_template_part($slug,$part) {
716
+function lsx_get_template_part($slug, $part) {
717 717
 	$template = array();
718 718
 	$part = (string) $part;
719
-	if ( '' !== $part ){
719
+	if ('' !== $part) {
720 720
 		$template = "{$slug}-{$part}.php";
721
-	}else{
721
+	} else {
722 722
 		$template = "{$slug}.php";
723 723
 	}
724
-	$file_path = apply_filters('lsx_content_path',false,$slug,$part);
724
+	$file_path = apply_filters('lsx_content_path', false, $slug, $part);
725 725
 
726
-	if ( false !== $file_path && '' == locate_template( array( $template ) ) && file_exists( $file_path.$template) ) {
727
-		load_template( $file_path.$template, false );
728
-	}else{
729
-		get_template_part($slug,$part);
726
+	if (false !== $file_path && '' == locate_template(array($template)) && file_exists($file_path . $template)) {
727
+		load_template($file_path . $template, false);
728
+	} else {
729
+		get_template_part($slug, $part);
730 730
 	}
731 731
 }
732 732
\ No newline at end of file
Please login to merge, or discard this patch.
author.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -11,33 +11,33 @@  discard block
 block discarded – undo
11 11
 
12 12
 	<?php lsx_content_wrap_before(); ?>
13 13
 
14
-	<div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>">
14
+	<div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>">
15 15
 		
16 16
 		<?php lsx_content_before(); ?>
17 17
 
18 18
 		<main id="main" class="site-main">
19 19
 
20 20
 		<?php 
21
-			$layout = get_theme_mod('lsx_layout','2cr');
22
-			$layout = apply_filters( 'lsx_layout', $layout );
23
-			if('1c' === $layout){
21
+			$layout = get_theme_mod('lsx_layout', '2cr');
22
+			$layout = apply_filters('lsx_layout', $layout);
23
+			if ('1c' === $layout) {
24 24
 				lsx_breadcrumbs();
25 25
 			}
26 26
 		?>
27 27
 
28 28
 		<?php lsx_content_top(); ?>
29 29
 
30
-		<?php if ( have_posts() ) : ?>
30
+		<?php if (have_posts()) : ?>
31 31
 
32 32
 			<?php /* Start the Loop */ ?>
33
-			<?php while ( have_posts() ) : the_post(); ?>
33
+			<?php while (have_posts()) : the_post(); ?>
34 34
 
35 35
 				<?php
36 36
 					/* Include the Post-Format-specific template for the content.
37 37
 					 * If you want to override this in a child theme, then include a file
38 38
 					 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
39 39
 					 */
40
-					get_template_part( 'content', get_post_format() );
40
+					get_template_part('content', get_post_format());
41 41
 				?>
42 42
 
43 43
 			<?php endwhile; ?>
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
 		<?php else : ?>
48 48
 
49
-			<?php get_template_part( 'content', 'none' ); ?>
49
+			<?php get_template_part('content', 'none'); ?>
50 50
 
51 51
 		<?php endif; ?>
52 52
 
Please login to merge, or discard this patch.
archive.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -11,33 +11,33 @@  discard block
 block discarded – undo
11 11
 
12 12
 	<?php lsx_content_wrap_before(); ?>
13 13
 
14
-	<div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>">
14
+	<div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>">
15 15
 
16 16
 		<?php lsx_content_before(); ?>
17 17
 
18 18
 		<main id="main" class="site-main">
19 19
 			
20 20
 		<?php 
21
-			$layout = get_theme_mod('lsx_layout','2cr');
22
-			$layout = apply_filters( 'lsx_layout', $layout );
23
-			if('1c' === $layout && !is_post_type_archive('tribe_events')){
21
+			$layout = get_theme_mod('lsx_layout', '2cr');
22
+			$layout = apply_filters('lsx_layout', $layout);
23
+			if ('1c' === $layout && ! is_post_type_archive('tribe_events')) {
24 24
 				lsx_breadcrumbs();
25 25
 			}
26 26
 		?>
27 27
 
28 28
 		<?php lsx_content_top(); ?>
29 29
 
30
-		<?php if ( have_posts() ) : ?>	
30
+		<?php if (have_posts()) : ?>	
31 31
 
32 32
 			<?php /* Start the Loop */ ?>
33
-			<?php while ( have_posts() ) : the_post(); ?>
33
+			<?php while (have_posts()) : the_post(); ?>
34 34
 
35 35
 				<?php
36 36
 					/* Include the Post-Format-specific template for the content.
37 37
 					 * If you want to override this in a child theme, then include a file
38 38
 					 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
39 39
 					 */
40
-					get_template_part( 'content', get_post_format() );
40
+					get_template_part('content', get_post_format());
41 41
 				?>
42 42
 
43 43
 			<?php endwhile; ?>
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
 		<?php else : ?>
48 48
 
49
-			<?php get_template_part( 'content', 'none' ); ?>
49
+			<?php get_template_part('content', 'none'); ?>
50 50
 
51 51
 		<?php endif; ?>
52 52
 
Please login to merge, or discard this patch.
search.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -9,33 +9,33 @@  discard block
 block discarded – undo
9 9
 
10 10
 	<?php lsx_content_wrap_before(); ?>
11 11
 
12
-	<div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>">
12
+	<div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>">
13 13
 
14 14
 		<?php lsx_content_before(); ?>
15 15
 
16 16
 		<main id="main" class="site-main">
17 17
 
18 18
 		<?php
19
-			$layout = get_theme_mod('lsx_layout','2cr');
20
-			$layout = apply_filters( 'lsx_layout', $layout );
21
-			if('1c' === $layout){
19
+			$layout = get_theme_mod('lsx_layout', '2cr');
20
+			$layout = apply_filters('lsx_layout', $layout);
21
+			if ('1c' === $layout) {
22 22
 				lsx_breadcrumbs();
23 23
 			}
24 24
 		?>
25 25
 
26 26
 		<?php lsx_content_top(); ?>
27 27
 
28
-		<?php if ( have_posts() ) : global $lsx_archive; $lsx_archive = 1; ?>
28
+		<?php if (have_posts()) : global $lsx_archive; $lsx_archive = 1; ?>
29 29
 
30 30
 			<?php /* Start the Loop */ ?>
31
-			<?php while ( have_posts() ) : the_post(); ?>
31
+			<?php while (have_posts()) : the_post(); ?>
32 32
 
33 33
 				<?php
34 34
 					/* Include the Post-Format-specific template for the content.
35 35
 					 * If you want to override this in a child theme, then include a file
36 36
 					 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
37 37
 					 */
38
-					get_template_part( 'content', get_post_format() );
38
+					get_template_part('content', get_post_format());
39 39
 				?>
40 40
 
41 41
 			<?php endwhile; ?>
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 
45 45
 		<?php else : ?>
46 46
 
47
-			<?php get_template_part( 'content', 'none' ); ?>
47
+			<?php get_template_part('content', 'none'); ?>
48 48
 
49 49
 		<?php endif; $lsx_archive = 0; ?>
50 50
 
Please login to merge, or discard this patch.
inc/extras.php 1 patch
Spacing   +96 added lines, -96 removed lines patch added patch discarded remove patch
@@ -1,16 +1,16 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly
2
+if ( ! defined('ABSPATH')) return; // Exit if accessed directly
3 3
 
4 4
 /**
5 5
  * Enable extra attributes (srcset, sizes) in img tag
6 6
  */
7
-function lsx_kses_allowed_html( $allowedtags, $context ) {
7
+function lsx_kses_allowed_html($allowedtags, $context) {
8 8
 	$allowedtags['img']['srcset'] = true;
9 9
 	$allowedtags['img']['sizes'] = true;
10 10
 
11 11
 	return $allowedtags;
12 12
 }
13
-add_filter( 'wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2 );
13
+add_filter('wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2);
14 14
 
15 15
 /**
16 16
  * Add and remove body_class() classes
@@ -19,21 +19,21 @@  discard block
 block discarded – undo
19 19
 	/*
20 20
 	 * Add the header layout class
21 21
 	 */
22
-	$header_layout = get_theme_mod('lsx_header_layout','inline');
23
-	$classes[] = 'header-'.$header_layout;
22
+	$header_layout = get_theme_mod('lsx_header_layout', 'inline');
23
+	$classes[] = 'header-' . $header_layout;
24 24
 		
25 25
 	
26 26
   // Add post/page slug
27
-  if (is_single() || is_page() && !is_front_page()) {
27
+  if (is_single() || is_page() && ! is_front_page()) {
28 28
     $classes[] = basename(get_permalink());
29 29
   }
30 30
   
31
-  if(!class_exists('Lsx_Banners')){
32
-		$post_types = array('page','post');
33
-		$post_types = apply_filters('lsx_allowed_post_type_banners',$post_types);  
31
+  if ( ! class_exists('Lsx_Banners')) {
32
+		$post_types = array('page', 'post');
33
+		$post_types = apply_filters('lsx_allowed_post_type_banners', $post_types);  
34 34
 
35
-		if((is_singular($post_types) && has_post_thumbnail()) 
36
-		|| (is_singular('jetpack-portfolio'))){
35
+		if ((is_singular($post_types) && has_post_thumbnail()) 
36
+		|| (is_singular('jetpack-portfolio'))) {
37 37
 			$classes[] = 'page-has-banner';
38 38
 		}
39 39
 	}
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
   	$classes[] = 'has-top-menu';
43 43
   }
44 44
 
45
-	if ( get_theme_mod( 'lsx_preloader_content_status', '1' ) === '1' ) {
45
+	if (get_theme_mod('lsx_preloader_content_status', '1') === '1') {
46 46
 		$classes[] = 'preloader-content-enable';
47 47
 	}
48 48
 
@@ -66,30 +66,30 @@  discard block
 block discarded – undo
66 66
  * @param string $sep Optional separator.
67 67
  * @return string The filtered title.
68 68
  */
69
-function lsx_wp_title( $title, $sep ) {
69
+function lsx_wp_title($title, $sep) {
70 70
 	global $page, $paged;
71 71
 
72
-	if ( is_feed() ) {
72
+	if (is_feed()) {
73 73
 		return $title;
74 74
 	}
75 75
 
76 76
 	// Add the blog name
77
-	$title .= get_bloginfo( 'name' );
77
+	$title .= get_bloginfo('name');
78 78
 
79 79
 	// Add the blog description for the home/front page.
80
-	$site_description = get_bloginfo( 'description', 'display' );
81
-	if ( $site_description && ( is_home() || is_front_page() ) ) {
80
+	$site_description = get_bloginfo('description', 'display');
81
+	if ($site_description && (is_home() || is_front_page())) {
82 82
 		$title .= " $sep $site_description";
83 83
 	}
84 84
 
85 85
 	// Add a page number if necessary:
86
-	if ( $paged >= 2 || $page >= 2 ) {
87
-		$title .= " $sep " . sprintf( __( 'Page %s', 'lsx' ), max( $paged, $page ) );
86
+	if ($paged >= 2 || $page >= 2) {
87
+		$title .= " $sep " . sprintf(__('Page %s', 'lsx'), max($paged, $page));
88 88
 	}
89 89
 
90 90
 	return $title;
91 91
 }
92
-add_filter( 'wp_title', 'lsx_wp_title', 10, 2 );
92
+add_filter('wp_title', 'lsx_wp_title', 10, 2);
93 93
 
94 94
 
95 95
 /**
@@ -110,12 +110,12 @@  discard block
 block discarded – undo
110 110
 function lsx_remove_self_closing_tags($input) {
111 111
   return str_replace(' />', '>', $input);
112 112
 }
113
-add_filter('get_avatar',          'lsx_remove_self_closing_tags'); // <img />
114
-add_filter('comment_id_fields',   'lsx_remove_self_closing_tags'); // <input />
113
+add_filter('get_avatar', 'lsx_remove_self_closing_tags'); // <img />
114
+add_filter('comment_id_fields', 'lsx_remove_self_closing_tags'); // <input />
115 115
 add_filter('post_thumbnail_html', 'lsx_remove_self_closing_tags'); // <img />
116 116
 
117 117
 
118
-if (!function_exists('lsx_get_attachment_id')) {
118
+if ( ! function_exists('lsx_get_attachment_id')) {
119 119
 	/**
120 120
 	 * Get the Attachment ID for a given image URL.
121 121
 	 *
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
 	function lsx_get_attachment_id($url) {
127 127
 		$dir = wp_upload_dir();
128 128
 		// baseurl never has a trailing slash
129
-		if (false === strpos($url, $dir['baseurl'].'/')) {
129
+		if (false === strpos($url, $dir['baseurl'] . '/')) {
130 130
 			// URL points to a place outside of upload directory
131 131
 			return false;
132 132
 		}
@@ -144,11 +144,11 @@  discard block
 block discarded – undo
144 144
 		$query['meta_query'][0]['key'] = '_wp_attached_file';
145 145
 		// query attachments
146 146
 		$ids = get_posts($query);
147
-		if (!empty($ids)) {
147
+		if ( ! empty($ids)) {
148 148
 			foreach ($ids as $id) {
149 149
 				// first entry of returned array is the URL
150
-				$temp_url = wp_get_attachment_image_src( $id, 'full' );
151
-				if ( array_shift( $temp_url ) === $url ) {
150
+				$temp_url = wp_get_attachment_image_src($id, 'full');
151
+				if (array_shift($temp_url) === $url) {
152 152
 					return $id;
153 153
 				}
154 154
 			}
@@ -161,8 +161,8 @@  discard block
 block discarded – undo
161 161
 		}
162 162
 		foreach ($ids as $id) {
163 163
 			$meta = wp_get_attachment_metadata($id);
164
-			foreach ( $meta['sizes'] as $size => $values ) {
165
-				if ( $values['file'] === $file && array_shift( wp_get_attachment_image_src( $id, $size ) ) === $url ) {
164
+			foreach ($meta['sizes'] as $size => $values) {
165
+				if ($values['file'] === $file && array_shift(wp_get_attachment_image_src($id, $size)) === $url) {
166 166
 					return $id;
167 167
 				}
168 168
 			}
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
  */
188 188
 function lsx_is_element_empty($element) {
189 189
 	$element = trim($element);
190
-	return empty($element)?false:true;
190
+	return empty($element) ? false : true;
191 191
 }
192 192
 
193 193
 
@@ -198,39 +198,39 @@  discard block
 block discarded – undo
198 198
  * @subpackage extras
199 199
  * @category thumbnails
200 200
  */
201
-function lsx_get_thumbnail($size,$image_src = false){
201
+function lsx_get_thumbnail($size, $image_src = false) {
202 202
 	
203
-	if(false === $image_src){
203
+	if (false === $image_src) {
204 204
 		$post_id = get_the_ID(); 
205
-		$post_thumbnail_id = get_post_thumbnail_id( $post_id );
206
-	}elseif(false != $image_src	){
207
-		if(is_numeric($image_src)){
205
+		$post_thumbnail_id = get_post_thumbnail_id($post_id);
206
+	}elseif (false != $image_src) {
207
+		if (is_numeric($image_src)) {
208 208
 			$post_thumbnail_id = $image_src;
209
-		}else{
209
+		} else {
210 210
 			$post_thumbnail_id = lsx_get_attachment_id_from_src($image_src);
211 211
 		}
212 212
 	}
213
-	$size = apply_filters('lsx_thumbnail_size',$size);
213
+	$size = apply_filters('lsx_thumbnail_size', $size);
214 214
 	$img = false;
215
-	if ( 'lsx-thumbnail-wide' === $size || 'thumbnail' === $size ) {
215
+	if ('lsx-thumbnail-wide' === $size || 'thumbnail' === $size) {
216 216
 		$srcset = false;
217
-		$img = wp_get_attachment_image_src($post_thumbnail_id,$size);
217
+		$img = wp_get_attachment_image_src($post_thumbnail_id, $size);
218 218
 		$img = $img[0];
219 219
 	} else {
220 220
 		$srcset = true;
221
-		$img = wp_get_attachment_image_srcset($post_thumbnail_id,$size);
222
-		if ( false == $img ) {
221
+		$img = wp_get_attachment_image_srcset($post_thumbnail_id, $size);
222
+		if (false == $img) {
223 223
 			$srcset = false;
224
-			$img = wp_get_attachment_image_src($post_thumbnail_id,$size);
224
+			$img = wp_get_attachment_image_src($post_thumbnail_id, $size);
225 225
 			$img = $img[0];
226 226
 		}
227 227
 	}
228
-	if ( $srcset ) {
229
-		$img = '<img alt="'.get_the_title(get_the_ID()).'" class="attachment-responsive wp-post-image lsx-responsive" srcset="'.$img.'" />';
228
+	if ($srcset) {
229
+		$img = '<img alt="' . get_the_title(get_the_ID()) . '" class="attachment-responsive wp-post-image lsx-responsive" srcset="' . $img . '" />';
230 230
 	} else {
231
-		$img = '<img alt="'.get_the_title(get_the_ID()).'" class="attachment-responsive wp-post-image lsx-responsive" src="'.$img.'" />';
231
+		$img = '<img alt="' . get_the_title(get_the_ID()) . '" class="attachment-responsive wp-post-image lsx-responsive" src="' . $img . '" />';
232 232
 	}
233
-	$img = apply_filters('lsx_lazyload_filter_images',$img);
233
+	$img = apply_filters('lsx_lazyload_filter_images', $img);
234 234
 	return $img;
235 235
 }
236 236
 
@@ -241,8 +241,8 @@  discard block
 block discarded – undo
241 241
  * @subpackage extras
242 242
  * @category thumbnails
243 243
  */
244
-function lsx_thumbnail( $size = 'thumbnail', $image_src = false ) {
245
-	echo wp_kses_post( lsx_get_thumbnail( $size, $image_src ) );
244
+function lsx_thumbnail($size = 'thumbnail', $image_src = false) {
245
+	echo wp_kses_post(lsx_get_thumbnail($size, $image_src));
246 246
 }
247 247
 
248 248
 
@@ -252,13 +252,13 @@  discard block
 block discarded – undo
252 252
  * @subpackage extras
253 253
  * @category thumbnails
254 254
  */
255
-function lsx_get_attachment_id_from_src( $image_src ) {
256
-	$post_id = wp_cache_get( $image_src, 'lsx_get_attachment_id_from_src' );
255
+function lsx_get_attachment_id_from_src($image_src) {
256
+	$post_id = wp_cache_get($image_src, 'lsx_get_attachment_id_from_src');
257 257
 	
258
-	if ( false === $post_id ) {
258
+	if (false === $post_id) {
259 259
 		global $wpdb;
260
-		$post_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src ) );
261
-		wp_cache_set( $image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600 );
260
+		$post_id = $wpdb->get_var($wpdb->prepare("SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src));
261
+		wp_cache_set($image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600);
262 262
 	}
263 263
 
264 264
 	return $post_id;
@@ -272,28 +272,28 @@  discard block
 block discarded – undo
272 272
  * @subpackage extras
273 273
  * @category banner
274 274
  */
275
-if (!function_exists('lsx_page_banner')) {
275
+if ( ! function_exists('lsx_page_banner')) {
276 276
 	function lsx_page_banner() {
277 277
 
278
-		$post_types = array('page','post');
279
-		$post_types = apply_filters('lsx_allowed_post_type_banners',$post_types);	
278
+		$post_types = array('page', 'post');
279
+		$post_types = apply_filters('lsx_allowed_post_type_banners', $post_types);	
280 280
 		
281
-		if ( (is_singular($post_types) && has_post_thumbnail())
282
-		 || (is_singular('jetpack-portfolio')) ) { ?>
281
+		if ((is_singular($post_types) && has_post_thumbnail())
282
+		 || (is_singular('jetpack-portfolio'))) { ?>
283 283
 	        
284 284
 	        <?php 
285 285
 	        	$bg_image = '';
286
-	        	if(has_post_thumbnail()){
287
-	        		$bg_image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()),'full');
286
+	        	if (has_post_thumbnail()) {
287
+	        		$bg_image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), 'full');
288 288
 	        		$bg_image = $bg_image[0];
289 289
 	        	}
290 290
 	        ?>
291 291
 
292
-	   		<?php if ( ! empty( $bg_image ) ) : ?>
292
+	   		<?php if ( ! empty($bg_image)) : ?>
293 293
 	        
294 294
 	        <div class="page-banner-wrap">
295 295
 		        <div class="page-banner">
296
-		        	<div class="page-banner-image" style="background-image:url(<?php echo esc_attr( $bg_image ); ?>);"></div>
296
+		        	<div class="page-banner-image" style="background-image:url(<?php echo esc_attr($bg_image); ?>);"></div>
297 297
 
298 298
 		        	<div class="container">
299 299
 			            <header class="page-header">
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
 	    <?php } 
310 310
 	}
311 311
 }
312
-add_action( 'lsx_header_after', 'lsx_page_banner' );
312
+add_action('lsx_header_after', 'lsx_page_banner');
313 313
 
314 314
 
315 315
 /**
@@ -319,43 +319,43 @@  discard block
 block discarded – undo
319 319
  * @subpackage extras
320 320
  * @category mobile
321 321
  */
322
-function lsx_allow_sms_protocol( $protocols ) {
322
+function lsx_allow_sms_protocol($protocols) {
323 323
     $protocols[] = 'sms';
324 324
     return $protocols;
325 325
 }
326
-add_filter( 'kses_allowed_protocols', 'lsx_allow_sms_protocol' );
326
+add_filter('kses_allowed_protocols', 'lsx_allow_sms_protocol');
327 327
 
328 328
 
329 329
 /**
330 330
  * Adding browser and user-agent classes to body
331 331
  */
332 332
 function mv_browser_body_class($classes) {
333
-		$http_user_agent = sanitize_text_field( wp_unslash( $_SERVER['HTTP_USER_AGENT'] ) );
334
-		$http_user_agent = ! empty( $http_user_agent ) ? $http_user_agent : '';
333
+		$http_user_agent = sanitize_text_field(wp_unslash($_SERVER['HTTP_USER_AGENT']));
334
+		$http_user_agent = ! empty($http_user_agent) ? $http_user_agent : '';
335 335
 
336 336
         global $is_lynx, $is_gecko, $is_ie, $is_opera, $is_ns4, $is_safari, $is_chrome, $is_iphone;
337
-        if($is_lynx) $classes[] = 'lynx';
338
-        elseif($is_gecko) $classes[] = 'gecko';
339
-        elseif($is_opera) $classes[] = 'opera';
340
-        elseif($is_ns4) $classes[] = 'ns4';
341
-        elseif($is_safari) $classes[] = 'safari';
342
-        elseif($is_chrome) $classes[] = 'chrome';
343
-        elseif($is_ie) {
337
+        if ($is_lynx) $classes[] = 'lynx';
338
+        elseif ($is_gecko) $classes[] = 'gecko';
339
+        elseif ($is_opera) $classes[] = 'opera';
340
+        elseif ($is_ns4) $classes[] = 'ns4';
341
+        elseif ($is_safari) $classes[] = 'safari';
342
+        elseif ($is_chrome) $classes[] = 'chrome';
343
+        elseif ($is_ie) {
344 344
                 $classes[] = 'ie';
345
-                if(preg_match('/MSIE ([0-9]+)([a-zA-Z0-9.]+)/', $http_user_agent, $browser_version))
346
-                $classes[] = 'ie'.$browser_version[1];
345
+                if (preg_match('/MSIE ([0-9]+)([a-zA-Z0-9.]+)/', $http_user_agent, $browser_version))
346
+                $classes[] = 'ie' . $browser_version[1];
347 347
         } else $classes[] = 'unknown';
348
-        if($is_iphone) $classes[] = 'iphone';
349
-        if ( stristr( $http_user_agent, "mac") ) {
348
+        if ($is_iphone) $classes[] = 'iphone';
349
+        if (stristr($http_user_agent, "mac")) {
350 350
                  $classes[] = 'osx';
351
-           } elseif ( stristr( $http_user_agent, "linux") ) {
351
+           } elseif (stristr($http_user_agent, "linux")) {
352 352
                  $classes[] = 'linux';
353
-           } elseif ( stristr( $http_user_agent, "windows") ) {
353
+           } elseif (stristr($http_user_agent, "windows")) {
354 354
                  $classes[] = 'windows';
355 355
            }
356 356
         return $classes;
357 357
 }
358
-add_filter('body_class','mv_browser_body_class');
358
+add_filter('body_class', 'mv_browser_body_class');
359 359
 
360 360
 
361 361
 /**
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
  * @param		$form		Object
369 369
  * @return		String
370 370
  */
371
-function lsx_form_submit_button($button, $form){
371
+function lsx_form_submit_button($button, $form) {
372 372
 	return "<button class='btn btn-primary' id='gform_submit_button_{$form["id"]}'><span>Submit</span></button>";
373 373
 }
374 374
 add_filter("gform_submit_button", "lsx_form_submit_button", 10, 2);
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
 	//return ' ... <a class="moretag" href="'. get_permalink($post->ID) . '">'.esc_html__('Continue reading','lsx').'</a>';
383 383
 	return '...';
384 384
 }
385
-add_filter( 'excerpt_more', 'lsx_excerpt_more' );
385
+add_filter('excerpt_more', 'lsx_excerpt_more');
386 386
 
387 387
 
388 388
 /**
@@ -391,44 +391,44 @@  discard block
 block discarded – undo
391 391
 function lsx_the_excerpt_filter($excerpt) {
392 392
 	$show_full_content = has_post_format(apply_filters('lsx_the_excerpt_filter_post_types', array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio')));
393 393
 	
394
-	if (!$show_full_content) {
395
-		if ('' !== $excerpt  && !stristr($excerpt, 'moretag')) {
396
-			$pagination = wp_link_pages( array(
394
+	if ( ! $show_full_content) {
395
+		if ('' !== $excerpt && ! stristr($excerpt, 'moretag')) {
396
+			$pagination = wp_link_pages(array(
397 397
 							'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
398 398
 							'after' => '</div></div>',
399 399
 							'link_before' => '<span>',
400 400
 							'link_after' => '</span>',
401 401
 							'echo' => 0
402
-						) );
402
+						));
403 403
 
404
-			if ( ! empty( $pagination ) ) {
404
+			if ( ! empty($pagination)) {
405 405
 				$excerpt .= $pagination;
406 406
 			}
407 407
 			else {
408
-				$excerpt .= '<p><a class="moretag" href="'.get_permalink().'">'.esc_html__('Continue reading','lsx').'</a></p>';
408
+				$excerpt .= '<p><a class="moretag" href="' . get_permalink() . '">' . esc_html__('Continue reading', 'lsx') . '</a></p>';
409 409
 			}
410 410
 		}
411 411
 	}
412 412
 
413 413
 	return $excerpt;
414 414
 }
415
-add_filter( 'the_excerpt', 'lsx_the_excerpt_filter' , 1 , 20 );
415
+add_filter('the_excerpt', 'lsx_the_excerpt_filter', 1, 20);
416 416
 
417 417
 
418 418
 /**
419 419
  * Allow HTML tags in excerpt
420 420
  */
421
-if ( ! function_exists( 'wpse_custom_wp_trim_excerpt' ) ) {
421
+if ( ! function_exists('wpse_custom_wp_trim_excerpt')) {
422 422
 	function wpse_custom_wp_trim_excerpt($wpse_excerpt) {
423 423
 		global $post;
424 424
 		$raw_excerpt = $wpse_excerpt;
425 425
 
426
-		if ( '' == $wpse_excerpt ) {
426
+		if ('' == $wpse_excerpt) {
427 427
 			$wpse_excerpt = get_the_content('');
428 428
 			$show_full_content = has_post_format(array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio'));
429 429
 
430
-			if (!$show_full_content) {
431
-				$wpse_excerpt = strip_shortcodes( $wpse_excerpt );
430
+			if ( ! $show_full_content) {
431
+				$wpse_excerpt = strip_shortcodes($wpse_excerpt);
432 432
 				$wpse_excerpt = apply_filters('the_content', $wpse_excerpt);
433 433
 				$wpse_excerpt = str_replace(']]>', ']]>', $wpse_excerpt);
434 434
 				$wpse_excerpt = strip_tags($wpse_excerpt, '<blockquote>,<p>,<br>,<b>,<strong>,<i>,<u>,<ul>,<li>,<span>,<div>');
@@ -456,12 +456,12 @@  discard block
 block discarded – undo
456 456
 				$wpse_excerpt = trim(force_balance_tags($excerpt_output));
457 457
 
458 458
 				if ($has_more) {
459
-					$excerpt_end = '<a class="moretag" href="'.get_permalink().'">'.esc_html__('More','lsx').'</a>';
459
+					$excerpt_end = '<a class="moretag" href="' . get_permalink() . '">' . esc_html__('More', 'lsx') . '</a>';
460 460
 					$excerpt_end = apply_filters('excerpt_more', ' ' . $excerpt_end); 
461 461
 
462 462
 					$pos = strrpos($wpse_excerpt, '</');
463 463
 
464
-					if ( false !== $pos ) {
464
+					if (false !== $pos) {
465 465
 						// Inside last HTML tag
466 466
 						$wpse_excerpt = substr_replace($wpse_excerpt, $excerpt_end, $pos, 0); /* Add read more next to last word */
467 467
 					} else {
Please login to merge, or discard this patch.
inc/config.php 1 patch
Spacing   +64 added lines, -64 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly
2
+if ( ! defined('ABSPATH')) return; // Exit if accessed directly
3 3
 
4 4
 /**
5 5
  * Theme Configuration File
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
  * @package lsx
9 9
  */
10 10
 
11
-if ( ! function_exists( 'lsx_setup' ) ) :
11
+if ( ! function_exists('lsx_setup')) :
12 12
 /**
13 13
  * Sets up theme defaults and registers support for various WordPress features.
14 14
  *
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 function lsx_setup() {
20 20
 	global $content_width;
21 21
 	
22
-	load_theme_textdomain( 'lsx', get_template_directory() . '/languages' );
22
+	load_theme_textdomain('lsx', get_template_directory() . '/languages');
23 23
 
24 24
 	$args = array(
25 25
 			'header-text' => array(
@@ -28,68 +28,68 @@  discard block
 block discarded – undo
28 28
 			),
29 29
 			'size' => 'medium',
30 30
 	);
31
-	add_theme_support( 'site-logo', $args );
31
+	add_theme_support('site-logo', $args);
32 32
 	
33
-	add_theme_support( 'custom-logo', array(
33
+	add_theme_support('custom-logo', array(
34 34
 			'height'      => 50,
35 35
 			'width'       => 150,
36 36
 			'flex-width' => true,
37 37
 			'flex-height' => true,
38
-	) );
38
+	));
39 39
 
40
-	add_theme_support( 'custom-background' );
41
-	add_theme_support( 'automatic-feed-links' );
42
-	add_theme_support( 'title-tag' );
43
-	add_theme_support( 'post-thumbnails' );
44
-	add_theme_support( 'post-formats', array('image', 'video', 'gallery', 'audio', 'link', 'quote', 'aside') );
40
+	add_theme_support('custom-background');
41
+	add_theme_support('automatic-feed-links');
42
+	add_theme_support('title-tag');
43
+	add_theme_support('post-thumbnails');
44
+	add_theme_support('post-formats', array('image', 'video', 'gallery', 'audio', 'link', 'quote', 'aside'));
45 45
 
46 46
 	// This theme uses wp_nav_menu() in one location.
47
-	register_nav_menus( array(
48
-		'primary' => esc_html__( 'Primary Menu', 'lsx' ),
49
-		'top-menu'=> esc_html__( 'Top Menu (right)' , 'lsx' ),
50
-		'top-menu-left'=> esc_html__( 'Top Menu (left)' , 'lsx' ),
51
-		'social'=> esc_html__( 'Social Menu' , 'lsx' ),
52
-		'footer'=> esc_html__( 'Footer Menu' , 'lsx' )
53
-	) );	
47
+	register_nav_menus(array(
48
+		'primary' => esc_html__('Primary Menu', 'lsx'),
49
+		'top-menu'=> esc_html__('Top Menu (right)', 'lsx'),
50
+		'top-menu-left'=> esc_html__('Top Menu (left)', 'lsx'),
51
+		'social'=> esc_html__('Social Menu', 'lsx'),
52
+		'footer'=> esc_html__('Footer Menu', 'lsx')
53
+	));	
54 54
 
55 55
 	//Set the content width
56 56
 	$content_width = 1140;
57 57
 	
58
-	add_editor_style( get_template_directory_uri() . '/css/editor-style.css' );	
59
-	add_theme_support( 'html5', array( 'caption' ) );
58
+	add_editor_style(get_template_directory_uri() . '/css/editor-style.css');	
59
+	add_theme_support('html5', array('caption'));
60 60
 
61
-	add_theme_support( 'woocommerce' );	
62
-	add_theme_support( 'sensei' );
61
+	add_theme_support('woocommerce');	
62
+	add_theme_support('sensei');
63 63
 
64
-	add_theme_support( 'starter-content', array(
64
+	add_theme_support('starter-content', array(
65 65
 		'widgets' => array(
66 66
 			'sidebar-home' => array(
67 67
 				'custom_widget_1' => array(
68 68
 					'text',
69 69
 					array(
70 70
 						'title' => '',
71
-						'text' => wp_kses_post( '<div class="lsx-full-width"><div class="row"><div class="col-sm-6"><h3>Full Width Widget</h3><p>Lorem ipsum dolor sit amet, <a href="#">consectetuer adipiscing elit</a>. Donec odio. Quisque volutpat mattis eros.</p><p><a href="#" class="btn cta-btn">Lorem ipsum</a></p></div><div class="col-sm-6"><h3>Full Width Widget</h3><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros.</p></div></div></div>' ),
71
+						'text' => wp_kses_post('<div class="lsx-full-width"><div class="row"><div class="col-sm-6"><h3>Full Width Widget</h3><p>Lorem ipsum dolor sit amet, <a href="#">consectetuer adipiscing elit</a>. Donec odio. Quisque volutpat mattis eros.</p><p><a href="#" class="btn cta-btn">Lorem ipsum</a></p></div><div class="col-sm-6"><h3>Full Width Widget</h3><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros.</p></div></div></div>'),
72 72
 					)
73 73
 				),
74 74
 				'custom_widget_2' => array(
75 75
 					'text',
76 76
 					array(
77 77
 						'title' => '',
78
-						'text' => wp_kses_post( '<div class="row"><div class="col-sm-6"><h3 style="margin-top:0">Text Widget</h3><p>Lorem ipsum dolor sit amet, <a href="#">consectetuer adipiscing elit</a>. Donec odio. Quisque volutpat mattis eros.</p></div><div class="col-sm-6"><h3 style="margin-top:0">Text Widget</h3><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque <a href="#">volutpat mattis eros</a>.</p></div></div>' ),
78
+						'text' => wp_kses_post('<div class="row"><div class="col-sm-6"><h3 style="margin-top:0">Text Widget</h3><p>Lorem ipsum dolor sit amet, <a href="#">consectetuer adipiscing elit</a>. Donec odio. Quisque volutpat mattis eros.</p></div><div class="col-sm-6"><h3 style="margin-top:0">Text Widget</h3><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque <a href="#">volutpat mattis eros</a>.</p></div></div>'),
79 79
 					)
80 80
 				),
81 81
 				'custom_widget_3' => array(
82 82
 					'text',
83 83
 					array(
84 84
 						'title' => '',
85
-						'text' => wp_kses_post( '<div class="lsx-full-width-alt"><div class="row"><div class="col-sm-6"><h3>Full Width CTA Widget</h3><p>Lorem ipsum dolor sit amet, <a href="#">consectetuer adipiscing elit</a>. Donec odio. Quisque volutpat mattis eros.</p><p><a href="#" class="btn cta-btn">Lorem ipsum</a></p></div><div class="col-sm-6"><h3>Full Width CTA Widget</h3><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros.</p><p><a href="#" class="btn">Lorem ipsum</a></p></div></div></div>' ),
85
+						'text' => wp_kses_post('<div class="lsx-full-width-alt"><div class="row"><div class="col-sm-6"><h3>Full Width CTA Widget</h3><p>Lorem ipsum dolor sit amet, <a href="#">consectetuer adipiscing elit</a>. Donec odio. Quisque volutpat mattis eros.</p><p><a href="#" class="btn cta-btn">Lorem ipsum</a></p></div><div class="col-sm-6"><h3>Full Width CTA Widget</h3><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros.</p><p><a href="#" class="btn">Lorem ipsum</a></p></div></div></div>'),
86 86
 					)
87 87
 				),
88 88
 				'custom_widget_4' => array(
89 89
 					'text',
90 90
 					array(
91 91
 						'title' => '',
92
-						'text' => wp_kses_post( '<div class="row"><div class="col-sm-12"><h3 style="margin-top:0">Text Widget</h3><p>Lorem ipsum dolor sit amet, <a href="#">consectetuer adipiscing elit</a>. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.</p></div></div>' ),
92
+						'text' => wp_kses_post('<div class="row"><div class="col-sm-12"><h3 style="margin-top:0">Text Widget</h3><p>Lorem ipsum dolor sit amet, <a href="#">consectetuer adipiscing elit</a>. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.</p></div></div>'),
93 93
 					)
94 94
 				),
95 95
 			),
@@ -98,22 +98,22 @@  discard block
 block discarded – undo
98 98
 				'custom_widget_1' => array(
99 99
 					'text',
100 100
 					array(
101
-						'title' => esc_html__( 'Footer Widget', 'lsx' ),
102
-						'text' => esc_html__( 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed vitae ipsum nec sapien consectetur convallis eu sit amet diam. Praesent dignissim vel arcu et gravida.', 'lsx' ),
101
+						'title' => esc_html__('Footer Widget', 'lsx'),
102
+						'text' => esc_html__('Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed vitae ipsum nec sapien consectetur convallis eu sit amet diam. Praesent dignissim vel arcu et gravida.', 'lsx'),
103 103
 					)
104 104
 				),
105 105
 				'custom_widget_2' => array(
106 106
 					'text',
107 107
 					array(
108
-						'title' => esc_html__( 'Footer Widget', 'lsx' ),
109
-						'text' => esc_html__( 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed vitae ipsum nec sapien consectetur convallis eu sit amet diam. Praesent dignissim vel arcu et gravida.', 'lsx' ),
108
+						'title' => esc_html__('Footer Widget', 'lsx'),
109
+						'text' => esc_html__('Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed vitae ipsum nec sapien consectetur convallis eu sit amet diam. Praesent dignissim vel arcu et gravida.', 'lsx'),
110 110
 					)
111 111
 				),
112 112
 				'custom_widget_3' => array(
113 113
 					'text',
114 114
 					array(
115
-						'title' => esc_html__( 'Footer Widget', 'lsx' ),
116
-						'text' => esc_html__( 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed vitae ipsum nec sapien consectetur convallis eu sit amet diam. Praesent dignissim vel arcu et gravida.', 'lsx' ),
115
+						'title' => esc_html__('Footer Widget', 'lsx'),
116
+						'text' => esc_html__('Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed vitae ipsum nec sapien consectetur convallis eu sit amet diam. Praesent dignissim vel arcu et gravida.', 'lsx'),
117 117
 					)
118 118
 				),
119 119
 			),
@@ -122,8 +122,8 @@  discard block
 block discarded – undo
122 122
 				'custom_widget_1' => array(
123 123
 					'text',
124 124
 					array(
125
-						'title' => esc_html__( 'Footer Call to Action Widget', 'lsx' ),
126
-						'text' => esc_html__( 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'lsx' ),
125
+						'title' => esc_html__('Footer Call to Action Widget', 'lsx'),
126
+						'text' => esc_html__('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'lsx'),
127 127
 					)
128 128
 				),
129 129
 			),
@@ -149,15 +149,15 @@  discard block
 block discarded – undo
149 149
 
150 150
 		'attachments' => array(
151 151
 			'image-banner-placeholder-01' => array(
152
-				'post_title' => esc_html_x( 'Banner Placeholder 01', 'Theme starter content', 'lsx' ),
152
+				'post_title' => esc_html_x('Banner Placeholder 01', 'Theme starter content', 'lsx'),
153 153
 				'file' => 'img/banner-placeholder-01.jpg',
154 154
 			),
155 155
 			'image-banner-placeholder-02' => array(
156
-				'post_title' => esc_html_x( 'Banner Placeholder 02', 'Theme starter content', 'lsx' ),
156
+				'post_title' => esc_html_x('Banner Placeholder 02', 'Theme starter content', 'lsx'),
157 157
 				'file' => 'img/banner-placeholder-02.jpg',
158 158
 			),
159 159
 			'image-banner-placeholder-03' => array(
160
-				'post_title' => esc_html_x( 'Banner Placeholder 03', 'Theme starter content', 'lsx' ),
160
+				'post_title' => esc_html_x('Banner Placeholder 03', 'Theme starter content', 'lsx'),
161 161
 				'file' => 'img/banner-placeholder-03.jpg',
162 162
 			),
163 163
 		),
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
 
171 171
 		'nav_menus' => array(
172 172
 			'primary' => array(
173
-				'name' => esc_html__( 'Primary Menu', 'lsx' ),
173
+				'name' => esc_html__('Primary Menu', 'lsx'),
174 174
 				'items' => array(
175 175
 					'page_home',
176 176
 					'page_about',
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
 				),
180 180
 			),
181 181
 			'top-menu' => array(
182
-				'name' => esc_html__( 'Top Menu', 'lsx' ),
182
+				'name' => esc_html__('Top Menu', 'lsx'),
183 183
 				'items' => array(
184 184
 					'custom_link_1' => array(
185 185
 						'title' => 'View Map',
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
 				),
203 203
 			),
204 204
 			'social' => array(
205
-				'name' => esc_html__( 'Social Menu', 'lsx' ),
205
+				'name' => esc_html__('Social Menu', 'lsx'),
206 206
 				'items' => array(
207 207
 					'link_facebook',
208 208
 					'link_foursquare',
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
 				),
216 216
 			),
217 217
 			'footer' => array(
218
-				'name' => esc_html__( 'Footer Menu', 'lsx' ),
218
+				'name' => esc_html__('Footer Menu', 'lsx'),
219 219
 				'items' => array(
220 220
 					'page_about',
221 221
 					'page_contact',
@@ -228,21 +228,21 @@  discard block
 block discarded – undo
228 228
 			'lsx_header_search' => '1',
229 229
 			'lsx_layout' => '1c',
230 230
 		),
231
-	) );
231
+	));
232 232
 }
233 233
 endif; // lsx_setup
234
-add_action( 'after_setup_theme', 'lsx_setup' );
234
+add_action('after_setup_theme', 'lsx_setup');
235 235
 
236 236
 /**
237 237
  * Removes the "Custom Fields" meta box.
238 238
  */
239 239
 function lsx_remove_meta_boxes() {
240 240
 	$post_types = get_post_types();
241
-	foreach($post_types as $post_type){
242
-		remove_meta_box( 'postcustom' , $post_type , 'normal' ); 
241
+	foreach ($post_types as $post_type) {
242
+		remove_meta_box('postcustom', $post_type, 'normal'); 
243 243
 	}
244 244
 }
245
-add_action( 'admin_menu' , 'lsx_remove_meta_boxes' );
245
+add_action('admin_menu', 'lsx_remove_meta_boxes');
246 246
 
247 247
 /**
248 248
  * Overwrite the $content_width var, based on the layout of the page.
@@ -254,33 +254,33 @@  discard block
 block discarded – undo
254 254
 function lsx_process_content_width() {
255 255
 	global $content_width;
256 256
 
257
-	if(
257
+	if (
258 258
 		is_page_template('page-templates/template-portfolio.php') ||
259 259
 		is_page_template('page-templates/template-front-page.php') ||
260 260
 		is_page_template('page-templates/template-full-width.php') ||
261 261
 		is_post_type_archive('jetpack-portfolio') ||
262
-		is_tax(array('jetpack-portfolio-type','jetpack-portfolio-tag')) ||
262
+		is_tax(array('jetpack-portfolio-type', 'jetpack-portfolio-tag')) ||
263 263
 		is_singular('jetpack-portfolio')
264
-	){
264
+	) {
265 265
 		$content_width = 1140;
266 266
 	}
267 267
 }
268
-add_action('wp_head','lsx_process_content_width');
268
+add_action('wp_head', 'lsx_process_content_width');
269 269
 
270 270
 /**
271 271
  * Disable the comments form by default for the page post type.
272 272
  * @package	lsx
273 273
  * @subpackage config
274 274
  */
275
-function lsx_page_comments_off( $data ) {
276
-	if ( 'page' == $data['post_type'] && 'auto-draft' == $data['post_status'] && esc_html__( 'Auto Draft', 'lsx' ) == $data['post_title'] ) {
275
+function lsx_page_comments_off($data) {
276
+	if ('page' == $data['post_type'] && 'auto-draft' == $data['post_status'] && esc_html__('Auto Draft', 'lsx') == $data['post_title']) {
277 277
 		$data['comment_status'] = 0;
278 278
 		$data['ping_status'] = 0;
279 279
 	}
280 280
 
281 281
 	return $data;
282 282
 }
283
-add_filter( 'wp_insert_post_data', 'lsx_page_comments_off' );
283
+add_filter('wp_insert_post_data', 'lsx_page_comments_off');
284 284
 
285 285
 /**
286 286
  * Disable the comments form by default for the page post type.
@@ -288,14 +288,14 @@  discard block
 block discarded – undo
288 288
  * @subpackage config
289 289
  */
290 290
 function lsx_is_legacy($data) {
291
-	if ( 'page' == $data['post_type'] && 'auto-draft' == $data['post_status'] && esc_html__( 'Auto Draft', 'lsx' ) == $data['post_title'] ) {
291
+	if ('page' == $data['post_type'] && 'auto-draft' == $data['post_status'] && esc_html__('Auto Draft', 'lsx') == $data['post_title']) {
292 292
 		$data['comment_status'] = 0;
293 293
 		$data['ping_status'] = 0;
294 294
 	}
295 295
 
296 296
 	return $data;
297 297
 }
298
-add_filter( 'wp_insert_post_data', 'lsx_page_comments_off' );
298
+add_filter('wp_insert_post_data', 'lsx_page_comments_off');
299 299
 
300 300
 /**
301 301
  * Run the init command
@@ -303,11 +303,11 @@  discard block
 block discarded – undo
303 303
  * @subpackage config
304 304
  */
305 305
 function lsx_init() {
306
-	if(class_exists('WooCommerce')){
307
-		remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 );
306
+	if (class_exists('WooCommerce')) {
307
+		remove_action('woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
308 308
 	}
309 309
 }
310
-add_action( 'init', 'lsx_init',100 );
310
+add_action('init', 'lsx_init', 100);
311 311
 
312 312
 /**
313 313
  * Run on the wp_head 
@@ -316,11 +316,11 @@  discard block
 block discarded – undo
316 316
  */
317 317
 function lsx_wp_head() {
318 318
 
319
-	$layout = get_theme_mod('lsx_layout','2cr');
320
-	$layout = apply_filters( 'lsx_layout', $layout );
319
+	$layout = get_theme_mod('lsx_layout', '2cr');
320
+	$layout = apply_filters('lsx_layout', $layout);
321 321
 
322
-	if('1c' === $layout && (is_author() || is_search() || is_post_type_archive(array('post','page','jetpack-portfolio')) || is_tag() || is_category() || is_date() || is_tax()) ){
323
-		remove_action('lsx_content_top', 'lsx_breadcrumbs', 100 );
322
+	if ('1c' === $layout && (is_author() || is_search() || is_post_type_archive(array('post', 'page', 'jetpack-portfolio')) || is_tag() || is_category() || is_date() || is_tax())) {
323
+		remove_action('lsx_content_top', 'lsx_breadcrumbs', 100);
324 324
 	}
325 325
 }
326
-add_action( 'wp_head', 'lsx_wp_head',100 );
326
+add_action('wp_head', 'lsx_wp_head', 100);
Please login to merge, or discard this patch.
inc/scripts.php 1 patch
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly
2
+if ( ! defined('ABSPATH')) return; // Exit if accessed directly
3 3
 
4 4
 /**
5 5
  * Enqueue scripts and styles.
@@ -12,10 +12,10 @@  discard block
 block discarded – undo
12 12
 	
13 13
 	wp_enqueue_style('lsx_main_style', get_template_directory_uri() . '/style.css', array(), LSX_VERSION);
14 14
 	
15
-	wp_enqueue_style('lsx_main', get_template_directory_uri() . '/css/app.css', array( 'lsx_main_style', 'fontawesome', 'medium-break' ), LSX_VERSION);
15
+	wp_enqueue_style('lsx_main', get_template_directory_uri() . '/css/app.css', array('lsx_main_style', 'fontawesome', 'medium-break'), LSX_VERSION);
16 16
 	
17
-	if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
18
-		wp_enqueue_script( 'comment-reply' );
17
+	if (is_singular() && comments_open() && get_option('thread_comments')) {
18
+		wp_enqueue_script('comment-reply');
19 19
 	}
20 20
 
21 21
 	wp_enqueue_script('bootstrap', get_template_directory_uri() . '/js/vendor/bootstrap.min.js', array('jquery'), LSX_VERSION, false);
@@ -26,31 +26,31 @@  discard block
 block discarded – undo
26 26
 	wp_enqueue_script('picturefill', get_template_directory_uri() . '/js/vendor/picturefill.min.js', array(), LSX_VERSION, false);
27 27
 
28 28
 	wp_enqueue_script('masonry');
29
-	wp_enqueue_script('imagesLoaded', get_template_directory_uri().'/js/vendor/imagesloaded.pkgd.min.js', array('jquery','masonry'), LSX_VERSION);	
30
-	if(defined('WP_DEBUG') && true === WP_DEBUG){
29
+	wp_enqueue_script('imagesLoaded', get_template_directory_uri() . '/js/vendor/imagesloaded.pkgd.min.js', array('jquery', 'masonry'), LSX_VERSION);	
30
+	if (defined('WP_DEBUG') && true === WP_DEBUG) {
31 31
 		wp_enqueue_script('lsx_script', get_template_directory_uri() . '/js/lsx-script.js', array('masonry'), LSX_VERSION, false);
32
-	}else{
32
+	} else {
33 33
 		wp_enqueue_script('lsx_script', get_template_directory_uri() . '/js/lsx-script.min.js', array('masonry'), LSX_VERSION, false);
34 34
 	}
35 35
 	
36 36
 	//Set some parameters that we can use in the JS
37 37
 	$is_portfolio = false;
38
-	if(is_post_type_archive('jetpack-portfolio') || is_tax('jetpack-portfolio-type') || is_tax('jetpack-portfolio-tag') || is_page_template('page-templates/template-portfolio.php')){
38
+	if (is_post_type_archive('jetpack-portfolio') || is_tax('jetpack-portfolio-type') || is_tax('jetpack-portfolio-tag') || is_page_template('page-templates/template-portfolio.php')) {
39 39
 		$is_portfolio = true;
40 40
 	}
41 41
 	$param_array = array(
42 42
 			'is_portfolio' => $is_portfolio
43 43
 	);
44 44
 	//Set the columns for the archives
45
-	$param_array['columns'] = apply_filters('lsx_archive_column_number',3);
46
-	wp_localize_script( 'lsx_script', 'lsx_params', $param_array );
45
+	$param_array['columns'] = apply_filters('lsx_archive_column_number', 3);
46
+	wp_localize_script('lsx_script', 'lsx_params', $param_array);
47 47
 
48
-	wp_enqueue_style( 'fontawesome', get_template_directory_uri() . '/css/font-awesome.min.css', array(), LSX_VERSION );
48
+	wp_enqueue_style('fontawesome', get_template_directory_uri() . '/css/font-awesome.min.css', array(), LSX_VERSION);
49 49
 	
50 50
 	wp_enqueue_style('medium-break', get_template_directory_uri() . '/css/medium-nav-break.css', array(), LSX_VERSION);
51 51
 	
52
-	$font = get_theme_mod('lsx_font','raleway_open_sans');
53
-	switch($font){
52
+	$font = get_theme_mod('lsx_font', 'raleway_open_sans');
53
+	switch ($font) {
54 54
 		case 'raleway_open_sans':
55 55
 			$header_font_location = 'Raleway';
56 56
 			$body_font_location = 'Open+Sans';
@@ -79,18 +79,18 @@  discard block
 block discarded – undo
79 79
 	}
80 80
 	
81 81
 	$http_var = 'http';
82
-	if(is_ssl()){ $http_var .= 's'; }
82
+	if (is_ssl()) { $http_var .= 's'; }
83 83
 	
84 84
 	//Call the Google Fonts and then Enque them.
85
-	wp_register_style('lsx-header-font', $http_var.'://fonts.googleapis.com/css?family='.$header_font_location);
86
-	wp_register_style('lsx-body-font', $http_var.'://fonts.googleapis.com/css?family='.$body_font_location);
87
-	wp_enqueue_style( 'lsx-header-font' );
88
-	wp_enqueue_style( 'lsx-body-font' );
85
+	wp_register_style('lsx-header-font', $http_var . '://fonts.googleapis.com/css?family=' . $header_font_location);
86
+	wp_register_style('lsx-body-font', $http_var . '://fonts.googleapis.com/css?family=' . $body_font_location);
87
+	wp_enqueue_style('lsx-header-font');
88
+	wp_enqueue_style('lsx-body-font');
89 89
 	
90
-	wp_enqueue_style('lsx_font_scheme', esc_url( get_template_directory_uri() . '/css/'.$font.'.css' ), array(), LSX_VERSION);
90
+	wp_enqueue_style('lsx_font_scheme', esc_url(get_template_directory_uri() . '/css/' . $font . '.css'), array(), LSX_VERSION);
91 91
 	
92 92
 }
93
-add_action( 'wp_enqueue_scripts', 'lsx_scripts' );
93
+add_action('wp_enqueue_scripts', 'lsx_scripts');
94 94
 
95 95
 /**
96 96
  * Enqueue scripts and styles (for child theme).
@@ -100,11 +100,11 @@  discard block
 block discarded – undo
100 100
  */
101 101
 function lsx_scripts_child_theme() {
102 102
 	global $content_width;
103
-	if(is_child_theme() && file_exists(get_stylesheet_directory() . '/custom.css')) {
104
-		wp_enqueue_style( 'child-css', get_stylesheet_directory_uri() . '/custom.css', array( 'lsx_main' ), LSX_VERSION );
103
+	if (is_child_theme() && file_exists(get_stylesheet_directory() . '/custom.css')) {
104
+		wp_enqueue_style('child-css', get_stylesheet_directory_uri() . '/custom.css', array('lsx_main'), LSX_VERSION);
105 105
 	}
106 106
 }
107
-add_action( 'wp_enqueue_scripts', 'lsx_scripts_child_theme', 1999 );
107
+add_action('wp_enqueue_scripts', 'lsx_scripts_child_theme', 1999);
108 108
 
109 109
 /**
110 110
  * Defer JavaScript
@@ -112,14 +112,14 @@  discard block
 block discarded – undo
112 112
  * @package 	lsx
113 113
  * @subpackage	scripts
114 114
  */
115
-function lsx_scripts_defer_parsing( $url ) {
116
-	if ( ! ( is_admin() ) ) {
117
-		if ( FALSE === strpos( $url, '.js' ) ) return $url;
118
-		if ( strpos( $url, 'jquery.js' ) ) return $url;
119
-		if ( strpos( $url, ' defer ' ) ) return $url;
115
+function lsx_scripts_defer_parsing($url) {
116
+	if ( ! (is_admin())) {
117
+		if (FALSE === strpos($url, '.js')) return $url;
118
+		if (strpos($url, 'jquery.js')) return $url;
119
+		if (strpos($url, ' defer ')) return $url;
120 120
 		return "$url' defer onload='";
121 121
 	}
122 122
 
123 123
 	return $url;
124 124
 }
125
-add_filter( 'clean_url', 'lsx_scripts_defer_parsing', 11, 1 );
125
+add_filter('clean_url', 'lsx_scripts_defer_parsing', 11, 1);
Please login to merge, or discard this patch.
inc/hooks.php 1 patch
Spacing   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -24,11 +24,11 @@  discard block
 block discarded – undo
24 24
  * $lsx_supports[] = 'body';
25 25
  */
26 26
  function lsx_body_top() {
27
-	 do_action( 'lsx_body_top' );
27
+	 do_action('lsx_body_top');
28 28
  }
29 29
 
30 30
  function lsx_body_bottom() {
31
-	 do_action( 'lsx_body_bottom' );
31
+	 do_action('lsx_body_bottom');
32 32
  }
33 33
  
34 34
 /**
@@ -37,11 +37,11 @@  discard block
 block discarded – undo
37 37
 * $lsx_supports[] = 'head';
38 38
 */
39 39
 function lsx_head_top() {
40
-	do_action( 'lsx_head_top' );
40
+	do_action('lsx_head_top');
41 41
 }
42 42
 
43 43
 function lsx_head_bottom() {
44
-	do_action( 'lsx_head_bottom' );
44
+	do_action('lsx_head_bottom');
45 45
 }
46 46
 
47 47
 /**
@@ -50,27 +50,27 @@  discard block
 block discarded – undo
50 50
 * $lsx_supports[] = 'header';
51 51
 */
52 52
 function lsx_header_before() {
53
-	do_action( 'lsx_header_before' );
53
+	do_action('lsx_header_before');
54 54
 }
55 55
 
56 56
 function lsx_header_after() {
57
-	do_action( 'lsx_header_after' );
57
+	do_action('lsx_header_after');
58 58
 }
59 59
 
60 60
 function lsx_header_top() {
61
-	do_action( 'lsx_header_top' );
61
+	do_action('lsx_header_top');
62 62
 }
63 63
 
64 64
 function lsx_header_bottom() {
65
-	do_action( 'lsx_header_bottom' );
65
+	do_action('lsx_header_bottom');
66 66
 }
67 67
 
68 68
 function lsx_nav_before() {
69
-	do_action( 'lsx_nav_before' );
69
+	do_action('lsx_nav_before');
70 70
 }
71 71
 
72 72
 function lsx_nav_after() {
73
-	do_action( 'lsx_nav_after' );
73
+	do_action('lsx_nav_after');
74 74
 }
75 75
 
76 76
 /**
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
  */
81 81
 
82 82
 function lsx_banner_content() {
83
-	do_action( 'lsx_banner_content' );
83
+	do_action('lsx_banner_content');
84 84
 }
85 85
 
86 86
 /**
@@ -89,39 +89,39 @@  discard block
 block discarded – undo
89 89
 * $lsx_supports[] = 'content';
90 90
 */
91 91
 function lsx_content_wrap_before() {
92
-	do_action( 'lsx_content_wrap_before' );
92
+	do_action('lsx_content_wrap_before');
93 93
 }
94 94
 
95 95
 function lsx_content_wrap_after() {
96
-	do_action( 'lsx_content_wrap_after' );
96
+	do_action('lsx_content_wrap_after');
97 97
 }
98 98
 
99 99
 function lsx_content_before() {
100
-	do_action( 'lsx_content_before' );
100
+	do_action('lsx_content_before');
101 101
 }
102 102
 
103 103
 function lsx_content_after() {
104
-	do_action( 'lsx_content_after' );
104
+	do_action('lsx_content_after');
105 105
 }
106 106
 
107 107
 function lsx_content_top() {
108
-	do_action( 'lsx_content_top' );
108
+	do_action('lsx_content_top');
109 109
 }
110 110
 
111 111
 function lsx_content_bottom() {
112
-	do_action( 'lsx_content_bottom' );
112
+	do_action('lsx_content_bottom');
113 113
 }
114 114
 
115 115
 function lsx_content_post_meta() {
116
-	do_action( 'lsx_content_post_meta' );
116
+	do_action('lsx_content_post_meta');
117 117
 }
118 118
 
119 119
 function lsx_content_post_tags() {
120
-	do_action( 'lsx_content_post_tags' );
120
+	do_action('lsx_content_post_tags');
121 121
 }
122 122
 
123
-function lsx_content_sharing(){
124
-	do_action( 'lsx_content_sharing' );
123
+function lsx_content_sharing() {
124
+	do_action('lsx_content_sharing');
125 125
 }
126 126
 
127 127
 /**
@@ -130,19 +130,19 @@  discard block
 block discarded – undo
130 130
 * $lsx_supports[] = 'entry';
131 131
 */
132 132
 function lsx_entry_before() {
133
-	do_action( 'lsx_entry_before' );
133
+	do_action('lsx_entry_before');
134 134
 }
135 135
 
136 136
 function lsx_entry_after() {
137
-	do_action( 'lsx_entry_after' );
137
+	do_action('lsx_entry_after');
138 138
 }
139 139
 
140 140
 function lsx_entry_top() {
141
-	do_action( 'lsx_entry_top' );
141
+	do_action('lsx_entry_top');
142 142
 }
143 143
 
144 144
 function lsx_entry_bottom() {
145
-	do_action( 'lsx_entry_bottom' );
145
+	do_action('lsx_entry_bottom');
146 146
 }
147 147
 
148 148
 /**
@@ -151,11 +151,11 @@  discard block
 block discarded – undo
151 151
 * $lsx_supports[] = 'comments';
152 152
 */
153 153
 function lsx_comments_before() {
154
-	do_action( 'lsx_comments_before' );
154
+	do_action('lsx_comments_before');
155 155
 }
156 156
 
157 157
 function lsx_comments_after() {
158
-	do_action( 'lsx_comments_after' );
158
+	do_action('lsx_comments_after');
159 159
 }
160 160
 
161 161
 /**
@@ -164,19 +164,19 @@  discard block
 block discarded – undo
164 164
 * $lsx_supports[] = 'sidebar';
165 165
 */
166 166
 function lsx_sidebars_before() {
167
-	do_action( 'lsx_sidebars_before' );
167
+	do_action('lsx_sidebars_before');
168 168
 }
169 169
 
170 170
 function lsx_sidebars_after() {
171
-	do_action( 'lsx_sidebars_after' );
171
+	do_action('lsx_sidebars_after');
172 172
 }
173 173
 
174 174
 function lsx_sidebar_top() {
175
-	do_action( 'lsx_sidebar_top' );
175
+	do_action('lsx_sidebar_top');
176 176
 }
177 177
 
178 178
 function lsx_sidebar_bottom() {
179
-	do_action( 'lsx_sidebar_bottom' );
179
+	do_action('lsx_sidebar_bottom');
180 180
 }
181 181
 
182 182
 /**
@@ -185,17 +185,17 @@  discard block
 block discarded – undo
185 185
 * $lsx_supports[] = 'footer';
186 186
 */
187 187
 function lsx_footer_before() {
188
-	do_action( 'lsx_footer_before' );
188
+	do_action('lsx_footer_before');
189 189
 }
190 190
 
191 191
 function lsx_footer_after() {
192
-	do_action( 'lsx_footer_after' );
192
+	do_action('lsx_footer_after');
193 193
 }
194 194
 
195 195
 function lsx_footer_top() {
196
-	do_action( 'lsx_footer_top' );
196
+	do_action('lsx_footer_top');
197 197
 }
198 198
 
199 199
 function lsx_footer_bottom() {
200
-	do_action( 'lsx_footer_bottom' );
200
+	do_action('lsx_footer_bottom');
201 201
 }
202 202
\ No newline at end of file
Please login to merge, or discard this patch.