Completed
Push — master ( 3ee43f...c4ee74 )
by
unknown
03:13
created
inc/extras.php 1 patch
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 	
15 15
   // Add post/page slug
16 16
   if (is_single() || is_page() && !is_front_page()) {
17
-    $classes[] = basename(get_permalink());
17
+	$classes[] = basename(get_permalink());
18 18
   }
19 19
   
20 20
   if(!class_exists('Lsx_Banners')){
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
   // Remove unnecessary classes
39 39
   $home_id_class = 'page-id-' . get_option('page_on_front');
40 40
   $remove_classes = array(
41
-    'page-template-default',
42
-    $home_id_class
41
+	'page-template-default',
42
+	$home_id_class
43 43
   );
44 44
   $classes = array_diff($classes, $remove_classes);
45 45
 
@@ -278,12 +278,12 @@  discard block
 block discarded – undo
278 278
 		 || (is_singular('jetpack-portfolio')) ) { ?>
279 279
 	        
280 280
 	        <?php 
281
-	        	$bg_image = '';
282
-	        	if(has_post_thumbnail()){
283
-	        		$bg_image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()),'full');
284
-	        		$bg_image = $bg_image[0];
285
-	        	}
286
-	        ?>
281
+				$bg_image = '';
282
+				if(has_post_thumbnail()){
283
+					$bg_image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()),'full');
284
+					$bg_image = $bg_image[0];
285
+				}
286
+			?>
287 287
 
288 288
 	   		<?php if ( ! empty( $bg_image ) ) : ?>
289 289
 	        
@@ -316,8 +316,8 @@  discard block
 block discarded – undo
316 316
  * @category mobile
317 317
  */
318 318
 function lsx_allow_sms_protocol( $protocols ) {
319
-    $protocols[] = 'sms';
320
-    return $protocols;
319
+	$protocols[] = 'sms';
320
+	return $protocols;
321 321
 }
322 322
 add_filter( 'kses_allowed_protocols', 'lsx_allow_sms_protocol' );
323 323
 
@@ -326,27 +326,27 @@  discard block
 block discarded – undo
326 326
  * Adding browser and user-agent classes to body
327 327
  */
328 328
 function mv_browser_body_class($classes) {
329
-        global $is_lynx, $is_gecko, $is_IE, $is_opera, $is_NS4, $is_safari, $is_chrome, $is_iphone;
330
-        if($is_lynx) $classes[] = 'lynx';
331
-        elseif($is_gecko) $classes[] = 'gecko';
332
-        elseif($is_opera) $classes[] = 'opera';
333
-        elseif($is_NS4) $classes[] = 'ns4';
334
-        elseif($is_safari) $classes[] = 'safari';
335
-        elseif($is_chrome) $classes[] = 'chrome';
336
-        elseif($is_IE) {
337
-                $classes[] = 'ie';
338
-                if(preg_match('/MSIE ([0-9]+)([a-zA-Z0-9.]+)/', $_SERVER['HTTP_USER_AGENT'], $browser_version))
339
-                $classes[] = 'ie'.$browser_version[1];
340
-        } else $classes[] = 'unknown';
341
-        if($is_iphone) $classes[] = 'iphone';
342
-        if ( stristr( $_SERVER['HTTP_USER_AGENT'],"mac") ) {
343
-                 $classes[] = 'osx';
344
-           } elseif ( stristr( $_SERVER['HTTP_USER_AGENT'],"linux") ) {
345
-                 $classes[] = 'linux';
346
-           } elseif ( stristr( $_SERVER['HTTP_USER_AGENT'],"windows") ) {
347
-                 $classes[] = 'windows';
348
-           }
349
-        return $classes;
329
+		global $is_lynx, $is_gecko, $is_IE, $is_opera, $is_NS4, $is_safari, $is_chrome, $is_iphone;
330
+		if($is_lynx) $classes[] = 'lynx';
331
+		elseif($is_gecko) $classes[] = 'gecko';
332
+		elseif($is_opera) $classes[] = 'opera';
333
+		elseif($is_NS4) $classes[] = 'ns4';
334
+		elseif($is_safari) $classes[] = 'safari';
335
+		elseif($is_chrome) $classes[] = 'chrome';
336
+		elseif($is_IE) {
337
+				$classes[] = 'ie';
338
+				if(preg_match('/MSIE ([0-9]+)([a-zA-Z0-9.]+)/', $_SERVER['HTTP_USER_AGENT'], $browser_version))
339
+				$classes[] = 'ie'.$browser_version[1];
340
+		} else $classes[] = 'unknown';
341
+		if($is_iphone) $classes[] = 'iphone';
342
+		if ( stristr( $_SERVER['HTTP_USER_AGENT'],"mac") ) {
343
+				 $classes[] = 'osx';
344
+		   } elseif ( stristr( $_SERVER['HTTP_USER_AGENT'],"linux") ) {
345
+				 $classes[] = 'linux';
346
+		   } elseif ( stristr( $_SERVER['HTTP_USER_AGENT'],"windows") ) {
347
+				 $classes[] = 'windows';
348
+		   }
349
+		return $classes;
350 350
 }
351 351
 add_filter('body_class','mv_browser_body_class');
352 352
 
Please login to merge, or discard this patch.
inc/the-events-calendar.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
  */
19 19
 
20 20
 function lsx_events_styles() {
21
-    wp_enqueue_style( 'events', get_template_directory_uri() . '/css/the-events-calendar.css' );
21
+	wp_enqueue_style( 'events', get_template_directory_uri() . '/css/the-events-calendar.css' );
22 22
 }
23 23
 add_action( 'wp_enqueue_scripts', 'lsx_events_styles' );
24 24
 
Please login to merge, or discard this patch.
inc/customizer-font.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 
13 13
 	/**
14 14
 	 * Constructor
15
-	**/
15
+	 **/
16 16
 	public function __construct($title, $location, $cssDeclaration, $cssClass)
17 17
 	{
18 18
 		$this->title = $title;
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 	/**
25 25
 	 * Getters
26 26
 	 * taken from: http://stackoverflow.com/questions/4478661/getter-and-setter
27
-	**/
27
+	 **/
28 28
 	public function __get($property) 
29 29
 	{
30 30
 		if (property_exists($this, $property)) {
Please login to merge, or discard this patch.
inc/woocommerce.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -69,8 +69,8 @@
 block discarded – undo
69 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(), WC_VERSION, 'all' );
73
-    wp_enqueue_style( 'woocommerce-smallscreen', get_template_directory_uri() . '/css/woocommerce-smallscreen.css', array( 'woocommerce-layout' ), WC_VERSION, 'only screen and (max-width: 767px)' );
74
-    wp_enqueue_style( 'woocommerce-general', get_template_directory_uri() . '/css/woocommerce.css', array(), WC_VERSION, 'all' );
72
+	wp_enqueue_style( 'woocommerce-layout', get_template_directory_uri() . '/css/woocommerce-layout.css', array(), WC_VERSION, 'all' );
73
+	wp_enqueue_style( 'woocommerce-smallscreen', get_template_directory_uri() . '/css/woocommerce-smallscreen.css', array( 'woocommerce-layout' ), WC_VERSION, 'only screen and (max-width: 767px)' );
74
+	wp_enqueue_style( 'woocommerce-general', get_template_directory_uri() . '/css/woocommerce.css', array(), WC_VERSION, 'all' );
75 75
 }
76 76
 add_action( 'wp_enqueue_scripts', 'lsx_woocommerce_styles' );
77 77
\ No newline at end of file
Please login to merge, or discard this patch.
image.php 1 patch
Indentation   +48 added lines, -48 removed lines patch added patch discarded remove patch
@@ -31,20 +31,20 @@  discard block
 block discarded – undo
31 31
  
32 32
                         <div class="entry-meta">
33 33
                             <?php
34
-                               $metadata = wp_get_attachment_metadata();
35
-                                printf( wp_kses_post( '%1$s <span class="entry-date"><time class="entry-date" datetime="%2$s" pubdate>%3$s</time></span> %4$s <a href="%5$s">%6$s &times; %7$s</a> %8$s <a href="%9$s" title="%10$s" rel="gallery">%10$s</a>' ),
36
-                                    esc_html__( 'Published', 'lsx' ),
37
-                                    esc_attr( get_the_date( 'c' ) ),
38
-                                    esc_html( get_the_date() ),
39
-                                    esc_html__( 'at', 'lsx' ),
40
-                                    esc_url( wp_get_attachment_url() ),
41
-                                    esc_attr( $metadata['width'] ),
42
-                                    esc_attr( $metadata['height'] ),
43
-                                    esc_html__( 'in', 'lsx' ),
44
-                                    esc_url( get_permalink( $post->post_parent ) ),
45
-                                    get_the_title( $post->post_parent )
46
-                                );
47
-                            ?>
34
+							   $metadata = wp_get_attachment_metadata();
35
+								printf( wp_kses_post( '%1$s <span class="entry-date"><time class="entry-date" datetime="%2$s" pubdate>%3$s</time></span> %4$s <a href="%5$s">%6$s &times; %7$s</a> %8$s <a href="%9$s" title="%10$s" rel="gallery">%10$s</a>' ),
36
+									esc_html__( 'Published', 'lsx' ),
37
+									esc_attr( get_the_date( 'c' ) ),
38
+									esc_html( get_the_date() ),
39
+									esc_html__( 'at', 'lsx' ),
40
+									esc_url( wp_get_attachment_url() ),
41
+									esc_attr( $metadata['width'] ),
42
+									esc_attr( $metadata['height'] ),
43
+									esc_html__( 'in', 'lsx' ),
44
+									esc_url( get_permalink( $post->post_parent ) ),
45
+									get_the_title( $post->post_parent )
46
+								);
47
+							?>
48 48
                             <?php edit_post_link( esc_html__( 'Edit', 'lsx' ), '<span class="sep"> | </span> <span class="edit-link">', '</span>' ); ?>
49 49
                         </div><!-- .entry-meta -->
50 50
  
@@ -59,34 +59,34 @@  discard block
 block discarded – undo
59 59
                         <div class="entry-attachment">
60 60
                             <div class="attachment">
61 61
                                 <?php
62
-                                    /**
63
-                                     * Grab the IDs of all the image attachments in a gallery so we can get the URL of the next adjacent image in a gallery,
64
-                                     * or the first image (if we're looking at the last image in a gallery), or, in a gallery of one, just the link to that image file
65
-                                     */
66
-                                    $attachments = array_values( get_children( array( 'post_parent' => $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ) );
67
-                                    foreach ( $attachments as $k => $attachment ) {
68
-                                        if ( $attachment->ID == $post->ID )
69
-                                            break;
70
-                                    }
71
-                                    $k++;
72
-                                    // If there is more than 1 attachment in a gallery
73
-                                    if ( count( $attachments ) > 1 ) {
74
-                                        if ( isset( $attachments[ $k ] ) )
75
-                                            // get the URL of the next image attachment
76
-                                            $next_attachment_url = get_attachment_link( $attachments[ $k ]->ID );
77
-                                        else
78
-                                            // or get the URL of the first image attachment
79
-                                            $next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID );
80
-                                    } else {
81
-                                        // or, if there's only 1 image, get the URL of the image
82
-                                        $next_attachment_url = wp_get_attachment_url();
83
-                                    }
84
-                                ?>
62
+									/**
63
+									 * Grab the IDs of all the image attachments in a gallery so we can get the URL of the next adjacent image in a gallery,
64
+									 * or the first image (if we're looking at the last image in a gallery), or, in a gallery of one, just the link to that image file
65
+									 */
66
+									$attachments = array_values( get_children( array( 'post_parent' => $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ) );
67
+									foreach ( $attachments as $k => $attachment ) {
68
+										if ( $attachment->ID == $post->ID )
69
+											break;
70
+									}
71
+									$k++;
72
+									// If there is more than 1 attachment in a gallery
73
+									if ( count( $attachments ) > 1 ) {
74
+										if ( isset( $attachments[ $k ] ) )
75
+											// get the URL of the next image attachment
76
+											$next_attachment_url = get_attachment_link( $attachments[ $k ]->ID );
77
+										else
78
+											// or get the URL of the first image attachment
79
+											$next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID );
80
+									} else {
81
+										// or, if there's only 1 image, get the URL of the image
82
+										$next_attachment_url = wp_get_attachment_url();
83
+									}
84
+								?>
85 85
  
86 86
                                 <a href="<?php echo esc_url( $next_attachment_url ); ?>" title="<?php echo esc_attr( get_the_title() ); ?>" rel="attachment"><?php
87
-                                    $attachment_size = apply_filters( 'shape_attachment_size', array( 1200, 1200 ) ); // Filterable image size.
88
-                                    echo wp_get_attachment_image( $post->ID, $attachment_size );
89
-                                ?></a>
87
+									$attachment_size = apply_filters( 'shape_attachment_size', array( 1200, 1200 ) ); // Filterable image size.
88
+									echo wp_get_attachment_image( $post->ID, $attachment_size );
89
+								?></a>
90 90
                             </div><!-- .attachment -->
91 91
  
92 92
                             <?php if ( ! empty( $post->post_excerpt ) ) : ?>
@@ -97,15 +97,15 @@  discard block
 block discarded – undo
97 97
                         </div><!-- .entry-attachment -->
98 98
  
99 99
                         <?php
100
-                            the_content();
100
+							the_content();
101 101
 
102
-                            wp_link_pages( array(
103
-                                'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
104
-                                'after' => '</div></div>',
105
-                                'link_before' => '<span>',
106
-                                'link_after' => '</span>'
107
-                            ) );
108
-                        ?>
102
+							wp_link_pages( array(
103
+								'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
104
+								'after' => '</div></div>',
105
+								'link_before' => '<span>',
106
+								'link_after' => '</span>'
107
+							) );
108
+						?>
109 109
  
110 110
                     </div><!-- .entry-content -->
111 111
                     
Please login to merge, or discard this patch.