@@ -47,9 +47,12 @@ |
||
47 | 47 | |
48 | 48 | <?php lsx_paging_nav(); ?> |
49 | 49 | |
50 | - <?php else : ?> |
|
50 | + <?php else { |
|
51 | + : ?> |
|
51 | 52 | |
52 | - <?php get_template_part( 'content', 'none' ); ?> |
|
53 | + <?php get_template_part( 'content', 'none' ); |
|
54 | +} |
|
55 | +?> |
|
53 | 56 | |
54 | 57 | <?php endif; ?> |
55 | 58 |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | |
23 | 23 | if('posts' == $show_on_front && is_home()){ |
24 | 24 | $sidebar = 'home'; |
25 | - }else{ |
|
25 | + } else{ |
|
26 | 26 | $sidebar = 'sidebar-1'; |
27 | 27 | } |
28 | 28 | } |
@@ -38,9 +38,12 @@ discard block |
||
38 | 38 | |
39 | 39 | <div id="secondary" class="widget-area <?php echo esc_attr(lsx_sidebar_class()); ?>" role="complementary"> |
40 | 40 | |
41 | - <?php else : ?> |
|
41 | + <?php else { |
|
42 | + : ?> |
|
42 | 43 | |
43 | - <div id="secondary" class="widget-area <?php echo esc_attr(lsx_sidebar_class()); ?>" role="complementary"> |
|
44 | + <div id="secondary" class="widget-area <?php echo esc_attr(lsx_sidebar_class()); |
|
45 | +} |
|
46 | +?>" role="complementary"> |
|
44 | 47 | |
45 | 48 | <?php endif ; ?> |
46 | 49 |
@@ -12,7 +12,7 @@ |
||
12 | 12 | $layout = get_theme_mod('lsx_layout','2cr'); |
13 | 13 | if('posts' == $show_on_front && is_home()){ |
14 | 14 | $sidebar = 'home'; |
15 | - }else{ |
|
15 | + } else{ |
|
16 | 16 | $sidebar = 'sidebar-1'; |
17 | 17 | } |
18 | 18 |
@@ -25,7 +25,7 @@ |
||
25 | 25 | if(has_nav_menu('footer-menu')){ |
26 | 26 | wp_nav_menu(array('theme_location' => 'footer-menu')); |
27 | 27 | } |
28 | - }else{ |
|
28 | + } else{ |
|
29 | 29 | if(has_nav_menu('footer_logged_in')){ |
30 | 30 | wp_nav_menu(array('theme_location' => 'footer_logged_in')); |
31 | 31 | } |
@@ -62,18 +62,20 @@ |
||
62 | 62 | */ |
63 | 63 | $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' ) ) ); |
64 | 64 | foreach ( $attachments as $k => $attachment ) { |
65 | - if ( $attachment->ID == $post->ID ) |
|
66 | - break; |
|
65 | + if ( $attachment->ID == $post->ID ) { |
|
66 | + break; |
|
67 | + } |
|
67 | 68 | } |
68 | 69 | $k++; |
69 | 70 | // If there is more than 1 attachment in a gallery |
70 | 71 | if ( count( $attachments ) > 1 ) { |
71 | - if ( isset( $attachments[ $k ] ) ) |
|
72 | - // get the URL of the next image attachment |
|
72 | + if ( isset( $attachments[ $k ] ) ) { |
|
73 | + // get the URL of the next image attachment |
|
73 | 74 | $next_attachment_url = get_attachment_link( $attachments[ $k ]->ID ); |
74 | - else |
|
75 | - // or get the URL of the first image attachment |
|
75 | + } else { |
|
76 | + // or get the URL of the first image attachment |
|
76 | 77 | $next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID ); |
78 | + } |
|
77 | 79 | } else { |
78 | 80 | // or, if there's only 1 image, get the URL of the image |
79 | 81 | $next_attachment_url = wp_get_attachment_url(); |
@@ -31,20 +31,20 @@ discard block |
||
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 × %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 × %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 |
||
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 |
||
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 |
@@ -1,5 +1,8 @@ |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly |
|
2 | +if ( ! defined( 'ABSPATH' ) ) { |
|
3 | + return; |
|
4 | +} |
|
5 | +// Exit if accessed directly |
|
3 | 6 | |
4 | 7 | /** |
5 | 8 | * Theme Configuration File |
@@ -1,5 +1,8 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly |
|
2 | +if ( ! defined( 'ABSPATH' ) ) { |
|
3 | + return; |
|
4 | +} |
|
5 | +// Exit if accessed directly |
|
3 | 6 | |
4 | 7 | /** |
5 | 8 | * Layout hooks |
@@ -62,7 +65,7 @@ discard block |
||
62 | 65 | $show_on_front = get_option('show_on_front'); |
63 | 66 | if('page' == $show_on_front){ |
64 | 67 | return lsx_layout_selector( 'main', 'home' ); |
65 | - }else{ |
|
68 | + } else{ |
|
66 | 69 | return lsx_layout_selector( 'main', 'site' ); |
67 | 70 | } |
68 | 71 |
@@ -1,5 +1,8 @@ |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly |
|
2 | +if ( ! defined( 'ABSPATH' ) ) { |
|
3 | + return; |
|
4 | +} |
|
5 | +// Exit if accessed directly |
|
3 | 6 | |
4 | 7 | /** |
5 | 8 | * LSX_Customize_Font_Control Class |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | |
13 | 13 | /** |
14 | 14 | * Enqueue the styles and scripts |
15 | - **/ |
|
15 | + **/ |
|
16 | 16 | public function enqueue(){ |
17 | 17 | // styles |
18 | 18 | wp_enqueue_style( 'lsx-font-picker-custom-control', get_template_directory_uri() .'/css/customizer-font.css', array(), LSX_VERSION ); |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | |
24 | 24 | /** |
25 | 25 | * Render the content on the theme customizer page |
26 | - **/ |
|
26 | + **/ |
|
27 | 27 | public function render_content(){ |
28 | 28 | if ( empty( $this->choices ) ){ |
29 | 29 | // if there are no choices then don't print anything |
@@ -1,5 +1,8 @@ |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly |
|
2 | +if ( ! defined( 'ABSPATH' ) ) { |
|
3 | + return; |
|
4 | +} |
|
5 | +// Exit if accessed directly |
|
3 | 6 | |
4 | 7 | /** |
5 | 8 | * Customize Swatch Control Class |