Completed
Push — master ( 296a4e...80da17 )
by Fernando
05:58
created
inc/wp-job-manager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,6 +14,6 @@
 block discarded – undo
14 14
  */
15 15
 
16 16
 function lsx_wp_job_manager_styles() {
17
-    wp_enqueue_style( 'wp_job_manager', get_template_directory_uri() . '/css/wp-job-manager.css', array(), LSX_VERSION );
17
+    wp_enqueue_style('wp_job_manager', get_template_directory_uri() . '/css/wp-job-manager.css', array(), LSX_VERSION);
18 18
 }
19
-add_action( 'wp_enqueue_scripts', 'lsx_wp_job_manager_styles' );
20 19
\ No newline at end of file
20
+add_action('wp_enqueue_scripts', 'lsx_wp_job_manager_styles');
21 21
\ No newline at end of file
Please login to merge, or discard this patch.
inc/woocommerce.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@  discard block
 block discarded – undo
9 9
 /*
10 10
  * Hooks
11 11
  */
12
-remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
13
-remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
12
+remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
13
+remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
14 14
 
15 15
 add_action('woocommerce_before_main_content', 'lsx_woocommerce_before_content', 10);
16 16
 add_action('woocommerce_after_main_content', 'lsx_woocommerce_after_content', 10);
@@ -25,10 +25,10 @@  discard block
 block discarded – undo
25 25
  * @subpackage woocommerce
26 26
  * @category 	layout
27 27
  */
28
-function lsx_woocommerce_before_content(){ ?>
28
+function lsx_woocommerce_before_content() { ?>
29 29
 	<?php lsx_content_wrap_before(); ?>
30 30
 
31
-	<div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>">
31
+	<div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>">
32 32
 
33 33
 		<?php lsx_content_before(); ?>
34 34
 
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
  * @subpackage woocommerce
44 44
  * @category 	layout
45 45
  */
46
-function lsx_woocommerce_after_content(){ ?>
46
+function lsx_woocommerce_after_content() { ?>
47 47
 		<?php lsx_content_bottom(); ?>
48 48
 
49 49
 		</main><!-- #main -->
@@ -66,11 +66,11 @@  discard block
 block discarded – undo
66 66
  * @subpackage woocommerce
67 67
  * @category 	styles
68 68
  */
69
-add_filter( 'woocommerce_enqueue_styles', '__return_empty_array' );
69
+add_filter('woocommerce_enqueue_styles', '__return_empty_array');
70 70
 
71 71
 function lsx_woocommerce_styles() {
72
-    wp_enqueue_style( 'woocommerce-layout', get_template_directory_uri() . '/css/woocommerce-layout.css', array(), LSX_VERSION, 'all' );
73
-    wp_enqueue_style( 'woocommerce-smallscreen', get_template_directory_uri() . '/css/woocommerce-smallscreen.css', array( 'woocommerce-layout' ), LSX_VERSION, 'only screen and (max-width: 767px)' );
74
-    wp_enqueue_style( 'woocommerce-general', get_template_directory_uri() . '/css/woocommerce.css', array(), LSX_VERSION, 'all' );
72
+    wp_enqueue_style('woocommerce-layout', get_template_directory_uri() . '/css/woocommerce-layout.css', array(), LSX_VERSION, 'all');
73
+    wp_enqueue_style('woocommerce-smallscreen', get_template_directory_uri() . '/css/woocommerce-smallscreen.css', array('woocommerce-layout'), LSX_VERSION, 'only screen and (max-width: 767px)');
74
+    wp_enqueue_style('woocommerce-general', get_template_directory_uri() . '/css/woocommerce.css', array(), LSX_VERSION, 'all');
75 75
 }
76
-add_action( 'wp_enqueue_scripts', 'lsx_woocommerce_styles' );
77 76
\ No newline at end of file
77
+add_action('wp_enqueue_scripts', 'lsx_woocommerce_styles');
78 78
\ No newline at end of file
Please login to merge, or discard this patch.
inc/customizer-font.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -1,42 +1,42 @@  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
  * LSX_Customize_Font_Control Class
6 6
 **/
7
-if( !class_exists( 'WP_Customize_Control' ) ){
7
+if ( ! class_exists('WP_Customize_Control')) {
8 8
 	return;
9 9
 }
10
-class LSX_Customize_Font_Control extends WP_Customize_Control{
10
+class LSX_Customize_Font_Control extends WP_Customize_Control {
11 11
 	public $fonts;
12 12
 
13 13
 	/**
14 14
 	 * Enqueue the styles and scripts
15 15
 	**/
16
-	public function enqueue(){
16
+	public function enqueue() {
17 17
 		// styles
18
-		wp_enqueue_style( 'lsx-font-picker-custom-control', get_template_directory_uri() .'/css/customizer-font.css', array(), LSX_VERSION );
18
+		wp_enqueue_style('lsx-font-picker-custom-control', get_template_directory_uri() . '/css/customizer-font.css', array(), LSX_VERSION);
19 19
 			
20 20
 		// scripts
21
-		wp_enqueue_script( 'lsx-font-picker-custom-control', get_template_directory_uri() .'/js/customizer-font.js', array(), LSX_VERSION );
21
+		wp_enqueue_script('lsx-font-picker-custom-control', get_template_directory_uri() . '/js/customizer-font.js', array(), LSX_VERSION);
22 22
 	}
23 23
 
24 24
 	/**
25 25
 	 * Render the content on the theme customizer page
26 26
 	**/
27
-	public function render_content(){
28
-		if ( empty( $this->choices ) ){
27
+	public function render_content() {
28
+		if (empty($this->choices)) {
29 29
 			// if there are no choices then don't print anything
30 30
 			return;
31 31
 		}
32 32
 		$fonts = array();
33
-		foreach( $this->choices as $slug=>$font ){
33
+		foreach ($this->choices as $slug=>$font) {
34 34
 			$fonts[] = $font['header'];
35 35
 			$fonts[] = $font['body'];
36 36
 			$this->choices[$slug] = $font;
37 37
 		}
38 38
 		
39
-		$this->fonts = new LSX_Google_Font_Collection( $fonts );
39
+		$this->fonts = new LSX_Google_Font_Collection($fonts);
40 40
 
41 41
 		$fonts = $this->fonts->get_font_family_name_array();
42 42
 		//print links to css files
@@ -51,8 +51,8 @@  discard block
 block discarded – undo
51 51
 		<div class="fontPickerCustomControl">
52 52
 			<select <?php $this->link(); ?>>
53 53
 				<?php
54
-				foreach ( $this->choices as $value => $conf ){
55
-					echo '<option value="' . esc_attr( $value ) . '">' . esc_html( $value ) . '</option>';
54
+				foreach ($this->choices as $value => $conf) {
55
+					echo '<option value="' . esc_attr($value) . '">' . esc_html($value) . '</option>';
56 56
 				}
57 57
 				?>
58 58
 			</select>
@@ -60,16 +60,16 @@  discard block
 block discarded – undo
60 60
 				<ul>
61 61
 					<?php
62 62
 					//$cssClassArray = $this->fonts->get_css_class_array();
63
-					foreach ($this->choices as $key => $font){
63
+					foreach ($this->choices as $key => $font) {
64 64
 						$class = null;
65
-						if( $key == $set_value ){
65
+						if ($key == $set_value) {
66 66
 							$class = ' selected';
67 67
 						}
68 68
 						
69 69
 						?>
70
-						<li class="font-choice <?php echo esc_attr( $class ); ?>">
71
-							<div class="<?php echo esc_attr( $font['header']['cssClass'] ); ?>"><?php echo esc_html( $font['header']['title'] ); ?></div>
72
-							<small class="<?php echo esc_attr( $font['body']['cssClass'] ); ?>"><?php echo esc_html( $font['body']['title'] ); ?></small>
70
+						<li class="font-choice <?php echo esc_attr($class); ?>">
71
+							<div class="<?php echo esc_attr($font['header']['cssClass']); ?>"><?php echo esc_html($font['header']['title']); ?></div>
72
+							<small class="<?php echo esc_attr($font['body']['cssClass']); ?>"><?php echo esc_html($font['body']['title']); ?></small>
73 73
 						</li>
74 74
 						<?php
75 75
 					}
Please login to merge, or discard this patch.
inc/customizer-header-fixed.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@  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
  * Customizer Header Fixed Class
6 6
  *
7 7
  * @since 1.0.0
8 8
  */
9
-if( !class_exists( 'WP_Customize_Control' ) ){
9
+if ( ! class_exists('WP_Customize_Control')) {
10 10
 	return;
11 11
 }
12 12
 class LSX_Customize_Header_Fixed_Control extends WP_Customize_Control {
@@ -38,9 +38,9 @@  discard block
 block discarded – undo
38 38
 	 * @param string $id
39 39
 	 * @param array $args
40 40
 	 */
41
-	public function __construct( $manager, $id, $args = array() ) {
42
-		parent::__construct( $manager, $id, $args );
43
-		if( !empty( $args['choices'] ) ){
41
+	public function __construct($manager, $id, $args = array()) {
42
+		parent::__construct($manager, $id, $args);
43
+		if ( ! empty($args['choices'])) {
44 44
 			$this->layouts = $args['choices'];
45 45
 		}
46 46
 	}
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 	 */
53 53
 	public function enqueue() {
54 54
 		// 
55
-		wp_enqueue_script( 'lsx-header-fixed-control', get_template_directory_uri() .'/js/customizer-header-fixed.js', array('jquery'), LSX_VERSION, true );
55
+		wp_enqueue_script('lsx-header-fixed-control', get_template_directory_uri() . '/js/customizer-header-fixed.js', array('jquery'), LSX_VERSION, true);
56 56
 	}
57 57
 
58 58
 	/**
@@ -62,21 +62,21 @@  discard block
 block discarded – undo
62 62
 	 */
63 63
 	public function render_content() {
64 64
 		
65
-		$post_id    = 'customize-control-' . str_replace( '[', '-', str_replace( ']', '', $this->id ) );
65
+		$post_id = 'customize-control-' . str_replace('[', '-', str_replace(']', '', $this->id));
66 66
 		$class = 'customize-control customize-control-' . $this->type;
67 67
 		$value = $this->value();
68 68
 
69 69
 		?>
70 70
 		<label>
71
-			<?php if ( ! empty( $this->label ) ) { ?>
72
-				<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
71
+			<?php if ( ! empty($this->label)) { ?>
72
+				<span class="customize-control-title"><?php echo esc_html($this->label); ?></span>
73 73
 			<?php }
74
-			if ( ! empty( $this->description ) ) { ?>
75
-				<span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span>
74
+			if ( ! empty($this->description)) { ?>
75
+				<span class="description customize-control-description"><?php echo esc_html($this->description); ?></span>
76 76
 			<?php } ?>
77 77
 			<div class="header-fixed">
78 78
 				<label>
79
-					<input <?php $this->link(); ?> type="checkbox" id="<?php echo esc_attr( $post_id ); ?>" class="header-fixed <?php echo esc_attr( $class ); ?>" value="<?php echo esc_attr($value); ?>" <?php $this->input_attrs(); ?>> Uncheck for standard header
79
+					<input <?php $this->link(); ?> type="checkbox" id="<?php echo esc_attr($post_id); ?>" class="header-fixed <?php echo esc_attr($class); ?>" value="<?php echo esc_attr($value); ?>" <?php $this->input_attrs(); ?>> Uncheck for standard header
80 80
 				</label>
81 81
 			</div>
82 82
 		</label>
Please login to merge, or discard this patch.
inc/customizer-layout.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@  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
  * Customize Swatch Control Class
6 6
  *
7 7
  * @since 1.0.0
8 8
  */
9
-if( !class_exists( 'WP_Customize_Control' ) ){
9
+if ( ! class_exists('WP_Customize_Control')) {
10 10
 	return;
11 11
 }
12 12
 class LSX_Customize_Layout_Control extends WP_Customize_Control {
@@ -38,9 +38,9 @@  discard block
 block discarded – undo
38 38
 	 * @param string $id
39 39
 	 * @param array $args
40 40
 	 */
41
-	public function __construct( $manager, $id, $args = array() ) {
42
-		parent::__construct( $manager, $id, $args );
43
-		if( !empty( $args['choices'] ) ){
41
+	public function __construct($manager, $id, $args = array()) {
42
+		parent::__construct($manager, $id, $args);
43
+		if ( ! empty($args['choices'])) {
44 44
 			$this->layouts = $args['choices'];
45 45
 		}
46 46
 	}
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 	 */
53 53
 	public function enqueue() {
54 54
 		// 
55
-		wp_enqueue_script( 'lsx-layout-control', get_template_directory_uri() .'/js/customizer-layout.js', array('jquery'), LSX_VERSION, true );
55
+		wp_enqueue_script('lsx-layout-control', get_template_directory_uri() . '/js/customizer-layout.js', array('jquery'), LSX_VERSION, true);
56 56
 	}
57 57
 
58 58
 	/**
@@ -62,30 +62,30 @@  discard block
 block discarded – undo
62 62
 	 */
63 63
 	public function render_content() {
64 64
 		
65
-		$post_id    = 'customize-control-' . str_replace( '[', '-', str_replace( ']', '', $this->id ) );
65
+		$post_id = 'customize-control-' . str_replace('[', '-', str_replace(']', '', $this->id));
66 66
 		$class = 'customize-control customize-control-' . $this->type;
67 67
 		$value = $this->value();
68 68
 
69 69
 		?>
70 70
 		<label>
71
-			<?php if ( ! empty( $this->label ) ) { ?>
72
-				<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
71
+			<?php if ( ! empty($this->label)) { ?>
72
+				<span class="customize-control-title"><?php echo esc_html($this->label); ?></span>
73 73
 			<?php }
74
-			if ( ! empty( $this->description ) ) { ?>
75
-				<span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span>
74
+			if ( ! empty($this->description)) { ?>
75
+				<span class="description customize-control-description"><?php echo esc_html($this->description); ?></span>
76 76
 			<?php } ?>
77 77
 			<div class="layouts-selector">
78 78
 			<?php
79
-			foreach( $this->layouts as $layout ){
79
+			foreach ($this->layouts as $layout) {
80 80
 				$sel = 'border: 1px solid transparent;';
81
-				if( $value == $layout ){
81
+				if ($value == $layout) {
82 82
 					$sel = 'border: 1px solid rgb(43, 166, 203);';
83 83
 				}
84
-				echo '<img class="layout-button" style="padding:2px;'. esc_attr( $sel ) .'" src="' . esc_attr( get_template_directory_uri() ) .'/img/' . esc_attr( $layout ) . '.png" data-option="' . esc_attr( $layout ) . '">';
84
+				echo '<img class="layout-button" style="padding:2px;' . esc_attr($sel) . '" src="' . esc_attr(get_template_directory_uri()) . '/img/' . esc_attr($layout) . '.png" data-option="' . esc_attr($layout) . '">';
85 85
 			}
86 86
 
87 87
 			?>
88
-			<input <?php $this->link(); ?> class="selected-layout <?php echo esc_attr( $class ); ?>" id="<?php echo esc_attr( $post_id ); ?>" type="hidden" value="<?php echo esc_attr( $value ); ?>" <?php $this->input_attrs(); ?>>
88
+			<input <?php $this->link(); ?> class="selected-layout <?php echo esc_attr($class); ?>" id="<?php echo esc_attr($post_id); ?>" type="hidden" value="<?php echo esc_attr($value); ?>" <?php $this->input_attrs(); ?>>
89 89
 			</div>
90 90
 		</label>
91 91
 	<?php
Please login to merge, or discard this patch.
inc/scripts.php 1 patch
Spacing   +27 added lines, -27 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.
@@ -14,8 +14,8 @@  discard block
 block discarded – undo
14 14
 	
15 15
 	wp_enqueue_style('lsx_main', get_template_directory_uri() . '/css/app.css', array(), 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,38 +26,38 @@  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 48
 
49
-	wp_enqueue_style( 'fontawesome', get_template_directory_uri() . '/css/font-awesome.min.css', array(), LSX_VERSION );
49
+	wp_enqueue_style('fontawesome', get_template_directory_uri() . '/css/font-awesome.min.css', array(), LSX_VERSION);
50 50
 	
51 51
 	
52
-	if(is_child_theme() && file_exists(get_stylesheet_directory() . '/custom.css')) {
53
-		wp_enqueue_style( 'child-css', get_stylesheet_directory_uri() . '/custom.css', array(), LSX_VERSION );
52
+	if (is_child_theme() && file_exists(get_stylesheet_directory() . '/custom.css')) {
53
+		wp_enqueue_style('child-css', get_stylesheet_directory_uri() . '/custom.css', array(), LSX_VERSION);
54 54
 	}
55 55
 
56 56
 	wp_enqueue_style('medium-break', get_template_directory_uri() . '/css/medium-nav-break.css', array(), LSX_VERSION);
57 57
 	
58 58
 	
59
-	$font = get_theme_mod('lsx_font','raleway_open_sans');
60
-	switch($font){
59
+	$font = get_theme_mod('lsx_font', 'raleway_open_sans');
60
+	switch ($font) {
61 61
 		case 'raleway_open_sans':
62 62
 			$header_font_location = 'Raleway';
63 63
 			$body_font_location = 'Open+Sans';
@@ -86,18 +86,18 @@  discard block
 block discarded – undo
86 86
 	}
87 87
 	
88 88
 	$http_var = 'http';
89
-	if(is_ssl()){ $http_var .= 's'; }
89
+	if (is_ssl()) { $http_var .= 's'; }
90 90
 	
91 91
 	//Call the Google Fonts and then Enque them.
92
-	wp_register_style('lsx-header-font', $http_var.'://fonts.googleapis.com/css?family='.$header_font_location);
93
-	wp_register_style('lsx-body-font', $http_var.'://fonts.googleapis.com/css?family='.$body_font_location);
94
-	wp_enqueue_style( 'lsx-header-font' );
95
-	wp_enqueue_style( 'lsx-body-font' );
92
+	wp_register_style('lsx-header-font', $http_var . '://fonts.googleapis.com/css?family=' . $header_font_location);
93
+	wp_register_style('lsx-body-font', $http_var . '://fonts.googleapis.com/css?family=' . $body_font_location);
94
+	wp_enqueue_style('lsx-header-font');
95
+	wp_enqueue_style('lsx-body-font');
96 96
 	
97
-	wp_enqueue_style('lsx_font_scheme', esc_url( get_template_directory_uri() . '/css/'.$font.'.css' ), array(), LSX_VERSION);
97
+	wp_enqueue_style('lsx_font_scheme', esc_url(get_template_directory_uri() . '/css/' . $font . '.css'), array(), LSX_VERSION);
98 98
 	
99 99
 }
100
-add_action( 'wp_enqueue_scripts', 'lsx_scripts' );
100
+add_action('wp_enqueue_scripts', 'lsx_scripts');
101 101
 
102 102
 /**
103 103
  * Defer JavaScript
@@ -105,14 +105,14 @@  discard block
 block discarded – undo
105 105
  * @package 	lsx
106 106
  * @subpackage	scripts
107 107
  */
108
-function lsx_scripts_defer_parsing( $url ) {
109
-	if ( ! ( is_admin() ) ) {
110
-		if ( FALSE === strpos( $url, '.js' ) ) return $url;
111
-		if ( strpos( $url, 'jquery.js' ) ) return $url;
112
-		if ( strpos( $url, ' defer ' ) ) return $url;
108
+function lsx_scripts_defer_parsing($url) {
109
+	if ( ! (is_admin())) {
110
+		if (FALSE === strpos($url, '.js')) return $url;
111
+		if (strpos($url, 'jquery.js')) return $url;
112
+		if (strpos($url, ' defer ')) return $url;
113 113
 		return "$url' defer onload='";
114 114
 	}
115 115
 
116 116
 	return $url;
117 117
 }
118
-add_filter( 'clean_url', 'lsx_scripts_defer_parsing', 11, 1 );
118
+add_filter('clean_url', 'lsx_scripts_defer_parsing', 11, 1);
Please login to merge, or discard this patch.
inc/lazyload.php 1 patch
Spacing   +57 added lines, -57 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;
2
+if ( ! defined('ABSPATH')) return;
3 3
 
4 4
 /*
5 5
  * LSX Lazy Load Images Class
@@ -25,143 +25,143 @@  discard block
 block discarded – undo
25 25
 	protected static $noscripts   = array();
26 26
 
27 27
 	static function init() {
28
-		if ( is_admin() )
28
+		if (is_admin())
29 29
 			return;
30 30
 
31
-		if ( get_theme_mod( 'lsx_lazyload_status', '1' ) === false ) {
31
+		if (get_theme_mod('lsx_lazyload_status', '1') === false) {
32 32
 			self::$enabled = false;
33 33
 			return;
34 34
 		}
35 35
 
36
-		if ( ! apply_filters( 'lsx_lazyload_is_enabled', true ) ) {
36
+		if ( ! apply_filters('lsx_lazyload_is_enabled', true)) {
37 37
 			self::$enabled = false;
38 38
 			return;
39 39
 		}
40 40
 
41
-		add_action( 'wp_enqueue_scripts', array( __CLASS__, 'add_scripts' ) );
42
-		add_action( 'wp_head', array( __CLASS__, 'setup_filters' ), 9999 );
43
-		add_filter( 'wp_kses_allowed_html', array( __CLASS__, 'kses_allowed_html' ), 10, 2 );
44
-		add_filter( 'kses_allowed_protocols', array( __CLASS__, 'kses_allowed_protocols' ) );
41
+		add_action('wp_enqueue_scripts', array(__CLASS__, 'add_scripts'));
42
+		add_action('wp_head', array(__CLASS__, 'setup_filters'), 9999);
43
+		add_filter('wp_kses_allowed_html', array(__CLASS__, 'kses_allowed_html'), 10, 2);
44
+		add_filter('kses_allowed_protocols', array(__CLASS__, 'kses_allowed_protocols'));
45 45
 	}
46 46
 
47 47
 	static function setup_filters() {
48 48
 		// WordPress
49
-		add_filter( 'the_content', array( __CLASS__, 'filter_images' ), 200 );
50
-		add_filter( 'widget_text', array( __CLASS__, 'filter_images' ), 200 );
51
-		add_filter( 'post_thumbnail_html', array( __CLASS__, 'filter_images' ), 200 );
52
-		add_filter( 'get_avatar', array( __CLASS__, 'filter_images' ), 200 );
49
+		add_filter('the_content', array(__CLASS__, 'filter_images'), 200);
50
+		add_filter('widget_text', array(__CLASS__, 'filter_images'), 200);
51
+		add_filter('post_thumbnail_html', array(__CLASS__, 'filter_images'), 200);
52
+		add_filter('get_avatar', array(__CLASS__, 'filter_images'), 200);
53 53
 		
54 54
 		// LSX
55
-		add_filter( 'lsx_lazyload_filter_images', array( __CLASS__, 'filter_images' ), 200 );
55
+		add_filter('lsx_lazyload_filter_images', array(__CLASS__, 'filter_images'), 200);
56 56
 
57 57
 		// Envira Gallery
58
-		add_filter( 'envira_gallery_output_image', array( __CLASS__, 'filter_images' ), 200 );
58
+		add_filter('envira_gallery_output_image', array(__CLASS__, 'filter_images'), 200);
59 59
 	}
60 60
 
61 61
 	static function add_scripts() {
62
-		wp_enqueue_script( 'lazysizes', get_template_directory_uri() .'/js/vendor/lazysizes.min.js', array( 'jquery' ), LSX_VERSION, true );
62
+		wp_enqueue_script('lazysizes', get_template_directory_uri() . '/js/vendor/lazysizes.min.js', array('jquery'), LSX_VERSION, true);
63 63
 		// Plugin that enables use lazysizes in brackground images
64 64
 		//wp_enqueue_script( 'lazysizes', get_template_directory_uri() .'/js/vendor/ls.unveilhooks.min.js', array( 'jquery', 'lazysizes' ), LSX_VERSION, true );
65 65
 	}
66 66
 
67
-	static function filter_images( $content ) {
68
-		if ( ! self::is_enabled() ) {
67
+	static function filter_images($content) {
68
+		if ( ! self::is_enabled()) {
69 69
 			return $content;
70 70
 		}
71 71
 
72
-		$http_user_agent = sanitize_text_field( wp_unslash( $_SERVER['HTTP_USER_AGENT'] ) );
73
-		$http_user_agent = ! empty( $http_user_agent ) ? $http_user_agent : '';
72
+		$http_user_agent = sanitize_text_field(wp_unslash($_SERVER['HTTP_USER_AGENT']));
73
+		$http_user_agent = ! empty($http_user_agent) ? $http_user_agent : '';
74 74
 
75
-		if ( is_feed()
75
+		if (is_feed()
76 76
 			|| is_preview()
77
-			|| intval( get_query_var( 'print' ) ) == 1
78
-			|| intval( get_query_var( 'printpage' ) ) == 1
79
-			|| strpos( $http_user_agent, 'Opera Mini' ) !== false
77
+			|| intval(get_query_var('print')) == 1
78
+			|| intval(get_query_var('printpage')) == 1
79
+			|| strpos($http_user_agent, 'Opera Mini') !== false
80 80
 		) {
81 81
 			return $content;
82 82
 		}
83 83
 
84 84
 		$skip_images_regex = '/class=".*(lazyload|disable-lazyload).*"/';
85
-		$placeholder_image = apply_filters( 'lsx_lazyload_placeholder_image', 'data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==' );
85
+		$placeholder_image = apply_filters('lsx_lazyload_placeholder_image', 'data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==');
86 86
 
87 87
 		$matches = array();
88 88
 		$search = array();
89 89
 		$replace = array();
90 90
 		
91
-		$content = preg_replace_callback( '~<noscript.+?</noscript>~s', 'self::noscripts_remove', $content );
92
-		preg_match_all( '/<img[^>]*>/', $content, $matches );
91
+		$content = preg_replace_callback('~<noscript.+?</noscript>~s', 'self::noscripts_remove', $content);
92
+		preg_match_all('/<img[^>]*>/', $content, $matches);
93 93
 
94
-		foreach ( $matches[0] as $img_html ) {
95
-			if ( ! ( preg_match( $skip_images_regex, $img_html ) ) ) {
94
+		foreach ($matches[0] as $img_html) {
95
+			if ( ! (preg_match($skip_images_regex, $img_html))) {
96 96
 				$add_class = false;
97 97
 
98
-				if ( ! preg_match( '/src=[\'"]([^\'"]+)[\'"]/', $img_html ) && preg_match( '/srcset=[\'"]([^\'"]+)[\'"]/', $img_html ) ) {
99
-					$replace_html = preg_replace( '/<img(.*?)srcset=/i', '<img$1srcset="' . $placeholder_image . '" data-srcset=', $img_html );
98
+				if ( ! preg_match('/src=[\'"]([^\'"]+)[\'"]/', $img_html) && preg_match('/srcset=[\'"]([^\'"]+)[\'"]/', $img_html)) {
99
+					$replace_html = preg_replace('/<img(.*?)srcset=/i', '<img$1srcset="' . $placeholder_image . '" data-srcset=', $img_html);
100 100
 
101
-					if ( preg_match( '/sizes=[\'"]([^\'"]+)[\'"]/', $img_html ) ) {
102
-						$replace_html = preg_replace( '/sizes=/i', 'data-sizes=', $replace_html );
101
+					if (preg_match('/sizes=[\'"]([^\'"]+)[\'"]/', $img_html)) {
102
+						$replace_html = preg_replace('/sizes=/i', 'data-sizes=', $replace_html);
103 103
 					} else {
104
-						$replace_html = preg_replace( '/data-srcset=/i', 'data-sizes="auto" data-srcset=', $replace_html );
104
+						$replace_html = preg_replace('/data-srcset=/i', 'data-sizes="auto" data-srcset=', $replace_html);
105 105
 					}
106 106
 
107 107
 					$add_class = true;
108
-				} elseif ( preg_match( '/src=[\'"]([^\'"]+)[\'"]/', $img_html ) ) {
109
-					$replace_html = preg_replace( '/<img(.*?)src=/i', '<img$1src="' . $placeholder_image . '" data-src=', $img_html );
108
+				} elseif (preg_match('/src=[\'"]([^\'"]+)[\'"]/', $img_html)) {
109
+					$replace_html = preg_replace('/<img(.*?)src=/i', '<img$1src="' . $placeholder_image . '" data-src=', $img_html);
110 110
 
111
-					if ( preg_match( '/srcset=[\'"]([^\'"]+)[\'"]/', $img_html ) ) {
112
-						if ( preg_match( '/sizes=[\'"]([^\'"]+)[\'"]/', $img_html ) ) {
113
-							$replace_html = preg_replace( '/srcset=/i', 'data-srcset=', $replace_html );
114
-							$replace_html = preg_replace( '/sizes=/i', 'data-sizes=', $replace_html );
111
+					if (preg_match('/srcset=[\'"]([^\'"]+)[\'"]/', $img_html)) {
112
+						if (preg_match('/sizes=[\'"]([^\'"]+)[\'"]/', $img_html)) {
113
+							$replace_html = preg_replace('/srcset=/i', 'data-srcset=', $replace_html);
114
+							$replace_html = preg_replace('/sizes=/i', 'data-sizes=', $replace_html);
115 115
 						} else {
116
-							$replace_html = preg_replace( '/srcset=/i', 'data-sizes="auto" data-srcset=', $replace_html );
116
+							$replace_html = preg_replace('/srcset=/i', 'data-sizes="auto" data-srcset=', $replace_html);
117 117
 						}
118 118
 					}
119 119
 
120 120
 					$add_class = true;
121 121
 				}
122 122
 
123
-				if ( $add_class ) {
124
-					$replace_html = self::add_class( $replace_html, 'lazyload' );
123
+				if ($add_class) {
124
+					$replace_html = self::add_class($replace_html, 'lazyload');
125 125
 					$replace_html .= '<noscript>' . $img_html . '</noscript>';
126 126
 					
127
-					array_push( $search, $img_html );
128
-					array_push( $replace, $replace_html );
127
+					array_push($search, $img_html);
128
+					array_push($replace, $replace_html);
129 129
 				}
130 130
 			}
131 131
 		}
132 132
 
133
-		$content = str_replace( $search, $replace, $content );
134
-		$content = preg_replace_callback( '~' . chr(20) . '([0-9]+)' . chr(20) . '~', 'self::noscripts_restore', $content );
133
+		$content = str_replace($search, $replace, $content);
134
+		$content = preg_replace_callback('~' . chr(20) . '([0-9]+)' . chr(20) . '~', 'self::noscripts_restore', $content);
135 135
 		return $content;
136 136
 	}
137 137
 
138
-	static function noscripts_remove( $match ) {
138
+	static function noscripts_remove($match) {
139 139
 		self::$noscript_id++;
140 140
 		self::$noscripts[self::$noscript_id] = $match[0];
141 141
 		return chr(20) . self::$noscript_id . chr(20);
142 142
 	}
143 143
 
144
-	static function noscripts_restore( $match ) {
144
+	static function noscripts_restore($match) {
145 145
 		return self::$noscripts[(int) $match[1]];
146 146
 	}
147 147
 
148
-	static function add_class( $html_string = '', $new_class ) {
148
+	static function add_class($html_string = '', $new_class) {
149 149
 		$pattern = '/class=[\'"]([^\'"]*)[\'"]/';
150 150
 
151
-		if ( preg_match( $pattern, $html_string, $matches ) ) {
152
-			$defined_classes = explode( ' ', $matches[1] );
151
+		if (preg_match($pattern, $html_string, $matches)) {
152
+			$defined_classes = explode(' ', $matches[1]);
153 153
 
154
-			if ( ! in_array( $new_class, $defined_classes ) ) {
154
+			if ( ! in_array($new_class, $defined_classes)) {
155 155
 				$defined_classes[] = $new_class;
156 156
 
157 157
 				$html_string = str_replace(
158 158
 					$matches[0],
159
-					sprintf( 'class="%s"', implode( ' ', $defined_classes ) ),
159
+					sprintf('class="%s"', implode(' ', $defined_classes)),
160 160
 					$html_string
161 161
 				);
162 162
 			}
163 163
 		} else {
164
-			$html_string = preg_replace( '/(\<.+\s)/', sprintf( '$1class="%s" ', $new_class ), $html_string );
164
+			$html_string = preg_replace('/(\<.+\s)/', sprintf('$1class="%s" ', $new_class), $html_string);
165 165
 		}
166 166
 
167 167
 		return $html_string;
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
 		return self::$enabled;
172 172
 	}
173 173
 
174
-	static function kses_allowed_html( $allowedtags, $context ) {
174
+	static function kses_allowed_html($allowedtags, $context) {
175 175
 		$allowedtags['noscript'] = array();
176 176
 		
177 177
 		$allowedtags['img']['data-src'] = true;
@@ -181,10 +181,10 @@  discard block
 block discarded – undo
181 181
 		return $allowedtags;
182 182
 	}
183 183
 
184
-	static function kses_allowed_protocols( $allowedprotocols ) {
184
+	static function kses_allowed_protocols($allowedprotocols) {
185 185
 		$allowedprotocols[] = 'data';
186 186
 		return $allowedprotocols;
187 187
 	}
188 188
 }
189 189
 
190
-add_action( 'init', array( 'LSX_LazyLoadImages', 'init' ) );
190
+add_action('init', array('LSX_LazyLoadImages', 'init'));
Please login to merge, or discard this patch.
comments.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 	<h3>
28 28
 		<?php
29 29
 			$count = get_comments_number();
30
-			printf( esc_html( _n( 'One Response to &ldquo;%2$s&rdquo;', '%1$s Responses to &ldquo;%2$s&rdquo;', $count, 'lsx' ) ), esc_html( number_format_i18n( $count ) ), get_the_title() );
30
+			printf(esc_html(_n('One Response to &ldquo;%2$s&rdquo;', '%1$s Responses to &ldquo;%2$s&rdquo;', $count, 'lsx')), esc_html(number_format_i18n($count)), get_the_title());
31 31
 		?>
32 32
 	</h3>
33 33
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 </nav>
49 49
 <?php endif; ?>
50 50
 
51
-<?php if (!comments_open() && !is_page() && post_type_supports(get_post_type(), 'comments')) : ?>
51
+<?php if ( ! comments_open() && ! is_page() && post_type_supports(get_post_type(), 'comments')) : ?>
52 52
 	<div class="alert alert-warning">
53 53
 		<?php esc_html_e('Comments are closed.', 'lsx'); ?>
54 54
 	</div>
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 
60 60
 <?php endif; ?>
61 61
 
62
-<?php if (!have_comments() && !comments_open() && !is_page() && post_type_supports(get_post_type(), 'comments')) : ?>
62
+<?php if ( ! have_comments() && ! comments_open() && ! is_page() && post_type_supports(get_post_type(), 'comments')) : ?>
63 63
 	<section id="comments">
64 64
 		<div class="alert alert-warning">
65 65
 			<?php esc_html_e('Comments are closed.', 'lsx'); ?>
@@ -72,24 +72,24 @@  discard block
 block discarded – undo
72 72
 
73 73
 <?php
74 74
 	$commenter = wp_get_current_commenter();
75
-	$req = get_option( 'require_name_email' );
76
-	$aria_req = ( $req ? " aria-required='true'" : '' );
77
-	$html_req = ( $req ? " required='required'" : '' );
75
+	$req = get_option('require_name_email');
76
+	$aria_req = ($req ? " aria-required='true'" : '');
77
+	$html_req = ($req ? " required='required'" : '');
78 78
 	
79 79
 	$comment_form_args = array(
80
-		'comment_field' => '<p class="comment-form-comment"><textarea placeholder="'. esc_html__( 'Comment', 'lsx' ) .'" id="comment" class="form-control" name="comment" cols="45" rows="8"'. $aria_req . $html_req .'></textarea></p>',
80
+		'comment_field' => '<p class="comment-form-comment"><textarea placeholder="' . esc_html__('Comment', 'lsx') . '" id="comment" class="form-control" name="comment" cols="45" rows="8"' . $aria_req . $html_req . '></textarea></p>',
81 81
 		
82 82
 		'fields' => array(
83
-			'author' => '<p class="comment-form-author"><label for="author">'. esc_html__( 'Name', 'lsx' ) .'</label> ' .
84
-				( $req ? '<span class="required">*</span>' : '' ) .
85
-				'<input class="form-control" placeholder="'. esc_html__( 'Name', 'lsx' ) .'" id="author" name="author" type="text" value="'. esc_attr( $commenter['comment_author'] ) .'" size="30"'. $aria_req . $html_req .'></p>',
83
+			'author' => '<p class="comment-form-author"><label for="author">' . esc_html__('Name', 'lsx') . '</label> ' .
84
+				($req ? '<span class="required">*</span>' : '') .
85
+				'<input class="form-control" placeholder="' . esc_html__('Name', 'lsx') . '" id="author" name="author" type="text" value="' . esc_attr($commenter['comment_author']) . '" size="30"' . $aria_req . $html_req . '></p>',
86 86
 
87
-			'email' => '<p class="comment-form-email"><label for="email">'. esc_html__( 'Email', 'lsx' ) .'</label> ' .
88
-				( $req ? '<span class="required">*</span>' : '' ) .
89
-				'<input class="form-control" placeholder="'. esc_html__( 'Email', 'lsx' ) .'" id="email" name="email" type="text" value="'. esc_attr(  $commenter['comment_author_email'] ) .'" size="30"' . $aria_req . $html_req . '></p>',
87
+			'email' => '<p class="comment-form-email"><label for="email">' . esc_html__('Email', 'lsx') . '</label> ' .
88
+				($req ? '<span class="required">*</span>' : '') .
89
+				'<input class="form-control" placeholder="' . esc_html__('Email', 'lsx') . '" id="email" name="email" type="text" value="' . esc_attr($commenter['comment_author_email']) . '" size="30"' . $aria_req . $html_req . '></p>',
90 90
 
91
-			'url' => '<p class="comment-form-url"><label for="url">'. esc_html__( 'Website', 'lsx' ) .'</label>' .
92
-				'<input class="form-control" placeholder="'. esc_html__( 'Website', 'lsx' ) .'" id="url" name="url" type="text" value="'. esc_attr( $commenter['comment_author_url'] ) .'" size="30"></p>'
91
+			'url' => '<p class="comment-form-url"><label for="url">' . esc_html__('Website', 'lsx') . '</label>' .
92
+				'<input class="form-control" placeholder="' . esc_html__('Website', 'lsx') . '" id="url" name="url" type="text" value="' . esc_attr($commenter['comment_author_url']) . '" size="30"></p>'
93 93
 		)
94 94
 	);
95 95
 ?>
Please login to merge, or discard this patch.
content-page.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,15 +16,15 @@
 block discarded – undo
16 16
 		<?php
17 17
 			the_content();
18 18
 
19
-			wp_link_pages( array(
19
+			wp_link_pages(array(
20 20
 				'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
21 21
 				'after' => '</div></div>',
22 22
 				'link_before' => '<span>',
23 23
 				'link_after' => '</span>'
24
-			) );
24
+			));
25 25
 		?>
26 26
 	</div><!-- .entry-content -->
27
-	<?php edit_post_link( esc_html__( 'Edit', 'lsx' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' ); ?>
27
+	<?php edit_post_link(esc_html__('Edit', 'lsx'), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>'); ?>
28 28
 
29 29
 	<?php lsx_entry_bottom(); ?>
30 30
 	
Please login to merge, or discard this patch.