Completed
Push — master ( 62b20b...ee6676 )
by
unknown
03:31
created
single-jetpack-portfolio.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,9 +21,9 @@
 block discarded – undo
21 21
 
22 22
 			<?php lsx_content_top(); ?>
23 23
 			
24
-			<?php while ( have_posts() ) : the_post(); ?>
24
+			<?php while (have_posts()) : the_post(); ?>
25 25
 
26
-				<?php get_template_part( 'content', 'portfolio-single' ); ?>
26
+				<?php get_template_part('content', 'portfolio-single'); ?>
27 27
 
28 28
 			<?php endwhile; ?>
29 29
 
Please login to merge, or discard this patch.
page-templates/template-front-page.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,9 +13,9 @@  discard block
 block discarded – undo
13 13
 
14 14
 			<?php lsx_content_top(); ?>		
15 15
 			
16
-			<?php if(have_posts() && !class_exists('Lsx_Banners')) : ?>
16
+			<?php if (have_posts() && ! class_exists('Lsx_Banners')) : ?>
17 17
 			
18
-				<?php while ( have_posts() ) : the_post(); ?>
18
+				<?php while (have_posts()) : the_post(); ?>
19 19
 				
20 20
 					<?php lsx_entry_before(); ?>
21 21
 
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 			
37 37
 			<div id="home-widgets">
38 38
 			
39
-				<?php if ( ! dynamic_sidebar( 'sidebar-home' ) ) : ?>
39
+				<?php if ( ! dynamic_sidebar('sidebar-home')) : ?>
40 40
 				
41 41
 				
42 42
 				<?php endif; // end sidebar widget area ?>
Please login to merge, or discard this patch.
page-templates/template-no-sidebar.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,9 +13,9 @@  discard block
 block discarded – undo
13 13
 
14 14
 			<?php lsx_content_top(); ?>		
15 15
 			
16
-				<?php while ( have_posts() ) : the_post(); ?>
16
+				<?php while (have_posts()) : the_post(); ?>
17 17
 		
18
-					<?php get_template_part( 'content', 'page' ); ?>
18
+					<?php get_template_part('content', 'page'); ?>
19 19
 		
20 20
 				<?php endwhile; // end of the loop. ?>		
21 21
 				
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 			
24 24
 			<?php
25 25
 				// If comments are open or we have at least one comment, load up the comment template
26
-				if ( comments_open() || '0' != get_comments_number() ) :
26
+				if (comments_open() || '0' != get_comments_number()) :
27 27
 					comments_template();
28 28
 				endif;
29 29
 			?>			
Please login to merge, or discard this patch.
content-portfolio.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
 
8 8
 
9 9
 $type_class = "filter-item column-3 ";
10
-$types = get_the_terms( get_the_ID(), 'jetpack-portfolio-type');
10
+$types = get_the_terms(get_the_ID(), 'jetpack-portfolio-type');
11 11
 if ($types) {
12 12
 	foreach ($types as $type) {
13 13
 		$type_class .= $type->slug . " ";
@@ -18,13 +18,13 @@  discard block
 block discarded – undo
18 18
 <article id="post-<?php the_ID(); ?>" data-column="<?php echo 3; ?>" <?php post_class($type_class); ?>>
19 19
 	<div class="portfolio-content-wrapper">
20 20
 		<div class="portfolio-thumbnail">
21
-			<?php if ( has_post_thumbnail() ) : ?>
21
+			<?php if (has_post_thumbnail()) : ?>
22 22
 				<a href="<?php the_permalink(); ?>">
23
-					<?php lsx_thumbnail( 'lsx-thumbnail-wide' ); ?>
23
+					<?php lsx_thumbnail('lsx-thumbnail-wide'); ?>
24 24
 				</a>
25 25
 			<?php endif; ?>
26 26
 		</div>
27 27
 		
28
-		<?php the_title( '<a class="portfolio-title" href="' . esc_url( get_permalink() ) . '" rel="bookmark"><span>', '</span></a>' ); ?>
28
+		<?php the_title('<a class="portfolio-title" href="' . esc_url(get_permalink()) . '" rel="bookmark"><span>', '</span></a>'); ?>
29 29
 	</div>
30 30
 </article>
31 31
\ No newline at end of file
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( __( 'Edit', 'lsx' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' ); ?>
27
+	<?php edit_post_link(__('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.
inc/config.php 1 patch
Spacing   +41 added lines, -41 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,50 +28,50 @@  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( 'automatic-feed-links' );
41
-	add_theme_support( 'title-tag' );
42
-	add_theme_support( 'post-thumbnails' );
43
-	add_theme_support( 'post-formats', array('image', 'video', 'gallery', 'audio', 'link', 'quote', 'aside') );
40
+	add_theme_support('automatic-feed-links');
41
+	add_theme_support('title-tag');
42
+	add_theme_support('post-thumbnails');
43
+	add_theme_support('post-formats', array('image', 'video', 'gallery', 'audio', 'link', 'quote', 'aside'));
44 44
 
45 45
 	// This theme uses wp_nav_menu() in one location.
46
-	register_nav_menus( array(
47
-		'primary' => __( 'Primary Menu', 'lsx' ),
48
-		'top-menu'=> __( 'Top Menu' , 'lsx' ),
49
-		'social'=> __( 'Social Menu' , 'lsx' ),
50
-		'footer'=> __( 'Footer Menu' , 'lsx' )
51
-	) );	
46
+	register_nav_menus(array(
47
+		'primary' => __('Primary Menu', 'lsx'),
48
+		'top-menu'=> __('Top Menu', 'lsx'),
49
+		'social'=> __('Social Menu', 'lsx'),
50
+		'footer'=> __('Footer Menu', 'lsx')
51
+	));	
52 52
 
53 53
 	//Set the content width
54 54
 	$content_width = 1140;
55 55
 	
56
-	add_editor_style( get_template_directory_uri() . '/css/editor-style.css' );	
57
-	add_theme_support( 'html5', array( 'caption' ) );
56
+	add_editor_style(get_template_directory_uri() . '/css/editor-style.css');	
57
+	add_theme_support('html5', array('caption'));
58 58
 
59
-	add_theme_support( 'woocommerce' );	
60
-	add_theme_support( 'sensei' );
59
+	add_theme_support('woocommerce');	
60
+	add_theme_support('sensei');
61 61
 }
62 62
 endif; // lsx_setup
63
-add_action( 'after_setup_theme', 'lsx_setup' );
63
+add_action('after_setup_theme', 'lsx_setup');
64 64
 
65 65
 /**
66 66
  * Removes the "Custom Fields" meta box.
67 67
  */
68 68
 function lsx_remove_meta_boxes() {
69 69
 	$post_types = get_post_types();
70
-	foreach($post_types as $post_type){
71
-		remove_meta_box( 'postcustom' , $post_type , 'normal' ); 
70
+	foreach ($post_types as $post_type) {
71
+		remove_meta_box('postcustom', $post_type, 'normal'); 
72 72
 	}
73 73
 }
74
-add_action( 'admin_menu' , 'lsx_remove_meta_boxes' );
74
+add_action('admin_menu', 'lsx_remove_meta_boxes');
75 75
 
76 76
 /**
77 77
  * Overwrite the $content_width var, based on the layout of the page.
@@ -83,34 +83,34 @@  discard block
 block discarded – undo
83 83
 function lsx_process_content_width() {
84 84
 	global $content_width;
85 85
 
86
-	if(
86
+	if (
87 87
 		is_page_template('page-templates/template-portfolio.php') ||
88 88
 		is_page_template('page-templates/template-front-page.php') ||
89 89
 		is_page_template('page-templates/template-full-width.php') ||
90 90
 		is_post_type_archive('jetpack-portfolio') ||
91
-		is_tax(array('jetpack-portfolio-type','jetpack-portfolio-tag')) ||
91
+		is_tax(array('jetpack-portfolio-type', 'jetpack-portfolio-tag')) ||
92 92
 		is_singular('jetpack-portfolio')
93
-	){
93
+	) {
94 94
 		$content_width = 1140;
95 95
 	}
96 96
 }
97
-add_action('wp_head','lsx_process_content_width');
97
+add_action('wp_head', 'lsx_process_content_width');
98 98
 
99 99
 /**
100 100
  * Disable the comments form by default for the page post type.
101 101
  * @package	lsx
102 102
  * @subpackage config
103 103
  */
104
-function lsx_page_comments_off( $data ) {
104
+function lsx_page_comments_off($data) {
105 105
 
106
-	if( $data['post_type'] == 'page' && $data['post_status'] == 'auto-draft' && $data['post_title'] == __('Auto Draft','lsx') ) {
106
+	if ($data['post_type'] == 'page' && $data['post_status'] == 'auto-draft' && $data['post_title'] == __('Auto Draft', 'lsx')) {
107 107
 		$data['comment_status'] = 0;
108 108
 		$data['ping_status'] = 0;
109 109
 	}
110 110
 
111 111
 	return $data;
112 112
 }
113
-add_filter( 'wp_insert_post_data', 'lsx_page_comments_off' );
113
+add_filter('wp_insert_post_data', 'lsx_page_comments_off');
114 114
 
115 115
 /**
116 116
  * Disable the comments form by default for the page post type.
@@ -119,14 +119,14 @@  discard block
 block discarded – undo
119 119
  */
120 120
 function lsx_is_legacy($data) {
121 121
 
122
-	if( $data['post_type'] == 'page' && $data['post_status'] == 'auto-draft' && $data['post_title'] == __('Auto Draft','lsx') ) {
122
+	if ($data['post_type'] == 'page' && $data['post_status'] == 'auto-draft' && $data['post_title'] == __('Auto Draft', 'lsx')) {
123 123
 		$data['comment_status'] = 0;
124 124
 		$data['ping_status'] = 0;
125 125
 	}
126 126
 
127 127
 	return $data;
128 128
 }
129
-add_filter( 'wp_insert_post_data', 'lsx_page_comments_off' );
129
+add_filter('wp_insert_post_data', 'lsx_page_comments_off');
130 130
 
131 131
 /**
132 132
  * Run the init command
@@ -134,11 +134,11 @@  discard block
 block discarded – undo
134 134
  * @subpackage config
135 135
  */
136 136
 function lsx_init() {
137
-	if(class_exists('WooCommerce')){
138
-		remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 );
137
+	if (class_exists('WooCommerce')) {
138
+		remove_action('woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
139 139
 	}
140 140
 }
141
-add_action( 'init', 'lsx_init',100 );
141
+add_action('init', 'lsx_init', 100);
142 142
 
143 143
 /**
144 144
  * Run on the wp_head 
@@ -147,11 +147,11 @@  discard block
 block discarded – undo
147 147
  */
148 148
 function lsx_wp_head() {
149 149
 
150
-	$layout = get_theme_mod('lsx_layout','2cr');
151
-	$layout = apply_filters( 'lsx_layout', $layout );
150
+	$layout = get_theme_mod('lsx_layout', '2cr');
151
+	$layout = apply_filters('lsx_layout', $layout);
152 152
 
153
-	if('1c' === $layout && (is_author() || is_search() || (is_post_type_archive(array('post','page','jetpack-portfolio')) && !is_post_type_archive('tribe_events')) || is_tag() || is_category() || is_date() || is_tax('post_format')) ){
154
-		remove_action('lsx_content_top', 'lsx_breadcrumbs', 100 );
153
+	if ('1c' === $layout && (is_author() || is_search() || (is_post_type_archive(array('post', 'page', 'jetpack-portfolio')) && ! is_post_type_archive('tribe_events')) || is_tag() || is_category() || is_date() || is_tax('post_format'))) {
154
+		remove_action('lsx_content_top', 'lsx_breadcrumbs', 100);
155 155
 	}
156 156
 }
157
-add_action( 'wp_head', 'lsx_wp_head',100 );
157
+add_action('wp_head', 'lsx_wp_head', 100);
Please login to merge, or discard this patch.
inc/sanitize.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -17,14 +17,14 @@  discard block
 block discarded – undo
17 17
  * @param  mixed    $setting    The setting for which the sanitizing is occurring.
18 18
  * @return mixed                The sanitized value.
19 19
 */
20
-function lsx_sanitize_choices( $value, $setting ) {
21
-	if ( is_object( $setting ) ) {
20
+function lsx_sanitize_choices($value, $setting) {
21
+	if (is_object($setting)) {
22 22
 		$setting = $setting->id;
23 23
 	}
24
-	$choices = lsx_customizer_sanitize_get_choices( $setting );
25
-	$allowed_choices = array_keys( $choices );
26
-	if ( ! in_array( $value, $allowed_choices ) ) {
27
-		$value = lsx_customizer_sanitize_get_default( $setting );
24
+	$choices = lsx_customizer_sanitize_get_choices($setting);
25
+	$allowed_choices = array_keys($choices);
26
+	if ( ! in_array($value, $allowed_choices)) {
27
+		$value = lsx_customizer_sanitize_get_default($setting);
28 28
 	}
29 29
 	return $value;
30 30
 }
@@ -39,13 +39,13 @@  discard block
 block discarded – undo
39 39
  * @return mixed $field
40 40
  */
41 41
 
42
-function lsx_customizer_sanitize_get_choices( $id ) {
42
+function lsx_customizer_sanitize_get_choices($id) {
43 43
 	global $lsx_customizer;
44 44
 	//LSX_Theme_Customizer
45 45
 	
46 46
 	$field = $lsx_customizer->get_control($id);
47 47
 	
48
-	if ( isset( $field['choices'] ) ) {
48
+	if (isset($field['choices'])) {
49 49
 		return $field['choices'];
50 50
 	}
51 51
 
@@ -61,13 +61,13 @@  discard block
 block discarded – undo
61 61
  * @return mixed $default
62 62
  */
63 63
 
64
-function lsx_customizer_sanitize_get_default( $id ) {
64
+function lsx_customizer_sanitize_get_default($id) {
65 65
 	global $lsx_customizer;
66 66
 	//LSX_Theme_Customizer
67 67
 
68 68
 	$setting = $lsx_customizer->get_setting($id);
69 69
 
70
-	if ( isset( $setting['default'] ) ) {
70
+	if (isset($setting['default'])) {
71 71
 		return $setting['default'];
72 72
 	}
73 73
 }
@@ -82,12 +82,12 @@  discard block
 block discarded – undo
82 82
  * @param obj $setting
83 83
  * @return string $default
84 84
  */
85
-function lsx_sanitize_email( $email, $setting ) {
85
+function lsx_sanitize_email($email, $setting) {
86 86
 	// Sanitize $input as a hex value without the hash prefix.
87
-	$email = sanitize_email( $email );
87
+	$email = sanitize_email($email);
88 88
 
89 89
 	// If $email is a valid email, return it; otherwise, return the default.
90
-	return ( ! is_null( $email ) ? $email : $setting->default );
90
+	return ( ! is_null($email) ? $email : $setting->default);
91 91
 }
92 92
 
93 93
 /**
@@ -99,8 +99,8 @@  discard block
 block discarded – undo
99 99
  * @param array $input
100 100
  * @return array $output
101 101
  */
102
-function lsx_sanitize_checkbox( $input ) {
103
-	if ( $input ) {
102
+function lsx_sanitize_checkbox($input) {
103
+	if ($input) {
104 104
 		$output = '1';
105 105
 	} else {
106 106
 		$output = false;
Please login to merge, or discard this patch.
inc/buddypress.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,10 +19,10 @@
 block discarded – undo
19 19
  */
20 20
  function lsx_buddypress_page_columns($layout) {
21 21
  	
22
-	if(bp_is_profile_component()|| bp_is_settings_component() || bp_is_activity_component() || bp_is_group() || bp_is_messages_component()
23
-		|| bp_is_members_directory() || bp_is_groups_directory() || bp_is_groups_component() || bp_is_members_component()){
22
+	if (bp_is_profile_component() || bp_is_settings_component() || bp_is_activity_component() || bp_is_group() || bp_is_messages_component()
23
+		|| bp_is_members_directory() || bp_is_groups_directory() || bp_is_groups_component() || bp_is_members_component()) {
24 24
 		$layout = '1c';
25 25
 	}
26 26
 	return $layout;
27 27
  }
28
- add_filter( 'lsx_layout', 'lsx_buddypress_page_columns' , 1 , 100 );
29 28
\ No newline at end of file
29
+ add_filter('lsx_layout', 'lsx_buddypress_page_columns', 1, 100);
30 30
\ No newline at end of file
Please login to merge, or discard this patch.
inc/nav.php 1 patch
Spacing   +8 added lines, -8 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
  * Cleaner walker for wp_nav_menu()
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 		$item_html = '';
26 26
 		
27 27
 		//If there is no menu set, dont use the pages, the objects are not the same as whats supposed to be used.
28
-		if(isset($item->title)){
28
+		if (isset($item->title)) {
29 29
 
30 30
 			parent::start_el($item_html, $item, $depth, $args);
31 31
 	
@@ -45,10 +45,10 @@  discard block
 block discarded – undo
45 45
 	}
46 46
 
47 47
 	function display_element($element, &$children_elements, $max_depth, $depth = 0, $args, &$output) {
48
-		$element->is_dropdown = ((!empty($children_elements[$element->ID]) && (($depth+1) < $max_depth || ($max_depth === 0))));
48
+		$element->is_dropdown = (( ! empty($children_elements[$element->ID]) && (($depth + 1) < $max_depth || ($max_depth === 0))));
49 49
 
50 50
 		if ($element->is_dropdown) {
51
-			if ($depth>0) {
51
+			if ($depth > 0) {
52 52
 				$element->classes[] = 'dropdown-submenu';
53 53
 			} else {
54 54
 				$element->classes[] = 'dropdown';
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 	$classes = preg_replace('/(current(-menu-|[-_]page[-_])(item|parent|ancestor))/', 'active', $classes);
69 69
 	$classes = preg_replace('/^((menu|page)[-_\w+]+)+/', '', $classes);
70 70
 
71
-	$classes[] = 'menu-'.$slug;
71
+	$classes[] = 'menu-' . $slug;
72 72
 
73 73
 	$classes = array_unique($classes);
74 74
 
@@ -86,15 +86,15 @@  discard block
 block discarded – undo
86 86
 function lsx_nav_menu_args($args = '') {
87 87
 	$roots_nav_menu_args['container'] = false;
88 88
 
89
-	if (!$args['items_wrap']) {
89
+	if ( ! $args['items_wrap']) {
90 90
 		$roots_nav_menu_args['items_wrap'] = '<ul class="%2$s">%3$s</ul>';
91 91
 	}
92 92
 
93
-	if (current_theme_supports('bootstrap-top-navbar') && !$args['depth']) {
93
+	if (current_theme_supports('bootstrap-top-navbar') && ! $args['depth']) {
94 94
 		$roots_nav_menu_args['depth'] = 2;
95 95
 	}
96 96
 
97
-	if (!$args['walker']) {
97
+	if ( ! $args['walker']) {
98 98
 		$roots_nav_menu_args['walker'] = new LSX_Nav_Walker();
99 99
 	}
100 100
 
Please login to merge, or discard this patch.