@@ -5,32 +5,32 @@ |
||
5 | 5 | * @package lsx |
6 | 6 | */ |
7 | 7 | |
8 | -$show_on_front = get_option( 'show_on_front' ); |
|
8 | +$show_on_front = get_option('show_on_front'); |
|
9 | 9 | |
10 | -$layout = get_theme_mod( 'lsx_layout', '2cr' ); |
|
11 | -$layout = apply_filters( 'lsx_layout', $layout ); |
|
10 | +$layout = get_theme_mod('lsx_layout', '2cr'); |
|
11 | +$layout = apply_filters('lsx_layout', $layout); |
|
12 | 12 | |
13 | -if ( 'posts' === $show_on_front && is_home() ) { |
|
13 | +if ('posts' === $show_on_front && is_home()) { |
|
14 | 14 | $sidebar = 'home'; |
15 | 15 | } else { |
16 | 16 | $sidebar = 'sidebar-1'; |
17 | 17 | } |
18 | 18 | |
19 | -if ( '1c' !== $layout ) : ?> |
|
19 | +if ('1c' !== $layout) : ?> |
|
20 | 20 | |
21 | 21 | <?php lsx_sidebars_before(); ?> |
22 | 22 | |
23 | - <div id="secondary" class="widget-area <?php echo esc_attr( lsx_sidebar_class() ); ?>" role="complementary"> |
|
23 | + <div id="secondary" class="widget-area <?php echo esc_attr(lsx_sidebar_class()); ?>" role="complementary"> |
|
24 | 24 | |
25 | 25 | <?php lsx_sidebar_top(); ?> |
26 | 26 | |
27 | - <h2><?php esc_attr_e( 'Categories', 'lsx' ); ?></h2> |
|
27 | + <h2><?php esc_attr_e('Categories', 'lsx'); ?></h2> |
|
28 | 28 | |
29 | 29 | <aside id="categories" class="widget widget_categories"> |
30 | 30 | <?php |
31 | - echo wp_tag_cloud( array( |
|
31 | + echo wp_tag_cloud(array( |
|
32 | 32 | 'taxonomy' => 'category', |
33 | - ) ); |
|
33 | + )); |
|
34 | 34 | ?> |
35 | 35 | </aside> |
36 | 36 |
@@ -5,56 +5,56 @@ |
||
5 | 5 | * @package lsx |
6 | 6 | */ |
7 | 7 | |
8 | -$sidebar_enabled = apply_filters( 'lsx_sidebar_enable', true ); |
|
8 | +$sidebar_enabled = apply_filters('lsx_sidebar_enable', true); |
|
9 | 9 | |
10 | -if ( true !== $sidebar_enabled ) { |
|
10 | +if (true !== $sidebar_enabled) { |
|
11 | 11 | return true; |
12 | 12 | } |
13 | 13 | |
14 | -$show_on_front = get_option( 'show_on_front' ); |
|
14 | +$show_on_front = get_option('show_on_front'); |
|
15 | 15 | |
16 | -if ( 'page' === $show_on_front && is_front_page() ) { |
|
16 | +if ('page' === $show_on_front && is_front_page()) { |
|
17 | 17 | $layout = '1c'; |
18 | 18 | $sidebar = 'home'; |
19 | 19 | } else { |
20 | - $layout = get_theme_mod( 'lsx_layout', '2cr' ); |
|
21 | - $layout = apply_filters( 'lsx_layout', $layout ); |
|
20 | + $layout = get_theme_mod('lsx_layout', '2cr'); |
|
21 | + $layout = apply_filters('lsx_layout', $layout); |
|
22 | 22 | |
23 | - if ( 'posts' === $show_on_front && is_home() ) { |
|
23 | + if ('posts' === $show_on_front && is_home()) { |
|
24 | 24 | $sidebar = 'home'; |
25 | 25 | } else { |
26 | 26 | $sidebar = 'sidebar-1'; |
27 | 27 | } |
28 | 28 | } |
29 | 29 | |
30 | -if ( '1c' !== $layout ) : ?> |
|
30 | +if ('1c' !== $layout) : ?> |
|
31 | 31 | |
32 | 32 | <?php lsx_sidebars_before(); ?> |
33 | 33 | |
34 | - <div id="secondary" class="widget-area <?php echo esc_attr( lsx_sidebar_class() ); ?>" role="complementary"> |
|
34 | + <div id="secondary" class="widget-area <?php echo esc_attr(lsx_sidebar_class()); ?>" role="complementary"> |
|
35 | 35 | |
36 | 36 | <?php lsx_sidebar_top(); ?> |
37 | 37 | |
38 | - <?php if ( ! dynamic_sidebar( $sidebar ) ) : ?> |
|
38 | + <?php if ( ! dynamic_sidebar($sidebar)) : ?> |
|
39 | 39 | |
40 | 40 | <aside id="search" class="widget widget_search"> |
41 | 41 | <?php get_search_form(); ?> |
42 | 42 | </aside> |
43 | 43 | |
44 | 44 | <aside id="archives" class="widget"> |
45 | - <h1 class="widget-title"><?php esc_attr_e( 'Archives', 'lsx' ); ?></h1> |
|
45 | + <h1 class="widget-title"><?php esc_attr_e('Archives', 'lsx'); ?></h1> |
|
46 | 46 | |
47 | 47 | <ul> |
48 | 48 | <?php |
49 | - wp_get_archives( array( |
|
49 | + wp_get_archives(array( |
|
50 | 50 | 'type' => 'monthly', |
51 | - ) ); |
|
51 | + )); |
|
52 | 52 | ?> |
53 | 53 | </ul> |
54 | 54 | </aside> |
55 | 55 | |
56 | 56 | <aside id="meta" class="widget"> |
57 | - <h1 class="widget-title"><?php esc_attr_e( 'Meta', 'lsx' ); ?></h1> |
|
57 | + <h1 class="widget-title"><?php esc_attr_e('Meta', 'lsx'); ?></h1> |
|
58 | 58 | |
59 | 59 | <ul> |
60 | 60 | <?php wp_register(); ?> |
@@ -70,14 +70,20 @@ discard block |
||
70 | 70 | <h1 class="entry-title"> |
71 | 71 | <?php if ( has_post_thumbnail() ) : ?> |
72 | 72 | <a href="<?php echo esc_url( $archive_link ); ?>" class="format-link has-thumb fa fa-<?php echo esc_attr( $format ); ?>"></a> |
73 | - <?php else : ?> |
|
74 | - <a href="<?php echo esc_url( $archive_link ); ?>" class="format-link fa fa-<?php echo esc_attr( $format ); ?>"></a> |
|
73 | + <?php else { |
|
74 | + : ?> |
|
75 | + <a href="<?php echo esc_url( $archive_link ); |
|
76 | +} |
|
77 | +?>" class="format-link fa fa-<?php echo esc_attr( $format ); ?>"></a> |
|
75 | 78 | <?php endif; ?> |
76 | 79 | |
77 | 80 | <?php if ( has_post_format( array( 'link' ) ) ) : ?> |
78 | 81 | <a href="<?php echo esc_url( lsx_get_my_url() ); ?>" rel="bookmark"><?php the_title(); ?> <span class="fa fa-external-link"></span></a> |
79 | - <?php else : ?> |
|
80 | - <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a> |
|
82 | + <?php else { |
|
83 | + : ?> |
|
84 | + <a href="<?php the_permalink(); |
|
85 | +} |
|
86 | +?>" rel="bookmark"><?php the_title(); ?></a> |
|
81 | 87 | <?php endif; ?> |
82 | 88 | |
83 | 89 | <?php if ( is_sticky() ) : ?> |
@@ -103,11 +109,13 @@ discard block |
||
103 | 109 | <?php the_content(); ?> |
104 | 110 | </div><!-- .entry-content --> |
105 | 111 | |
106 | - <?php else : ?> |
|
112 | + <?php else { |
|
113 | + : ?> |
|
107 | 114 | |
108 | 115 | <div class="entry-content"> |
109 | 116 | <?php |
110 | 117 | the_content(); |
118 | +} |
|
111 | 119 | |
112 | 120 | wp_link_pages( array( |
113 | 121 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
@@ -17,38 +17,38 @@ discard block |
||
17 | 17 | 'quote' => 'quote', |
18 | 18 | 'video' => 'video', |
19 | 19 | ); |
20 | - $no_thumb_post_formats = apply_filters( 'lsx_no_thumb_post_formats', $no_thumb_post_types ); |
|
20 | + $no_thumb_post_formats = apply_filters('lsx_no_thumb_post_formats', $no_thumb_post_types); |
|
21 | 21 | |
22 | - $has_thumb = has_post_thumbnail() && ! has_post_format( $no_thumb_post_formats ); |
|
22 | + $has_thumb = has_post_thumbnail() && ! has_post_format($no_thumb_post_formats); |
|
23 | 23 | |
24 | - if ( $has_thumb ) { |
|
24 | + if ($has_thumb) { |
|
25 | 25 | $thumb_class = 'has-thumb'; |
26 | 26 | } else { |
27 | 27 | $thumb_class = 'no-thumb'; |
28 | 28 | } |
29 | 29 | |
30 | - $blog_layout = apply_filters( 'lsx_blog_layout', 'default' ); |
|
30 | + $blog_layout = apply_filters('lsx_blog_layout', 'default'); |
|
31 | 31 | |
32 | 32 | $image_class = ''; |
33 | 33 | |
34 | - $thumbnail_id = get_post_thumbnail_id( get_the_ID() ); |
|
35 | - $image_arr = wp_get_attachment_image_src( $thumbnail_id, 'lsx-thumbnail-single' ); |
|
34 | + $thumbnail_id = get_post_thumbnail_id(get_the_ID()); |
|
35 | + $image_arr = wp_get_attachment_image_src($thumbnail_id, 'lsx-thumbnail-single'); |
|
36 | 36 | |
37 | - if ( is_array( $image_arr ) ) { |
|
37 | + if (is_array($image_arr)) { |
|
38 | 38 | $image_src = $image_arr[0]; |
39 | 39 | } |
40 | 40 | ?> |
41 | 41 | |
42 | -<article id="post-<?php the_ID(); ?>" <?php post_class( array( 'lsx-slot', $thumb_class ) ); ?>> |
|
42 | +<article id="post-<?php the_ID(); ?>" <?php post_class(array('lsx-slot', $thumb_class)); ?>> |
|
43 | 43 | <?php lsx_entry_top(); ?> |
44 | 44 | |
45 | 45 | <div class="entry-layout"> |
46 | 46 | <div class="entry-layout-content entry-layout-content-<?php echo has_post_thumbnail() ? '67' : '100'; ?>"> |
47 | 47 | <header class="entry-header"> |
48 | - <?php if ( $has_thumb ) : ?> |
|
49 | - <div class="entry-image <?php echo esc_attr( $image_class ); ?>"> |
|
48 | + <?php if ($has_thumb) : ?> |
|
49 | + <div class="entry-image <?php echo esc_attr($image_class); ?>"> |
|
50 | 50 | <a class="thumbnail" href="<?php the_permalink(); ?>"> |
51 | - <?php lsx_thumbnail( 'lsx-thumbnail-single' ); ?> |
|
51 | + <?php lsx_thumbnail('lsx-thumbnail-single'); ?> |
|
52 | 52 | </a> |
53 | 53 | </div> |
54 | 54 | <?php endif; ?> |
@@ -56,37 +56,37 @@ discard block |
||
56 | 56 | <?php |
57 | 57 | $format = get_post_format(); |
58 | 58 | |
59 | - if ( false === $format ) { |
|
59 | + if (false === $format) { |
|
60 | 60 | $format = 'standard'; |
61 | - $show_on_front = get_option( 'show_on_front', 'posts' ); |
|
61 | + $show_on_front = get_option('show_on_front', 'posts'); |
|
62 | 62 | |
63 | - if ( 'page' === $show_on_front ) { |
|
64 | - $archive_link = get_permalink( get_option( 'page_for_posts' ) ); |
|
63 | + if ('page' === $show_on_front) { |
|
64 | + $archive_link = get_permalink(get_option('page_for_posts')); |
|
65 | 65 | } else { |
66 | 66 | $archive_link = home_url(); |
67 | 67 | } |
68 | 68 | } else { |
69 | - $archive_link = get_post_format_link( $format ); |
|
69 | + $archive_link = get_post_format_link($format); |
|
70 | 70 | } |
71 | 71 | |
72 | - $format = lsx_translate_format_to_fontawesome( $format ); |
|
72 | + $format = lsx_translate_format_to_fontawesome($format); |
|
73 | 73 | ?> |
74 | 74 | |
75 | 75 | <h1 class="entry-title"> |
76 | - <?php if ( has_post_thumbnail() ) : ?> |
|
77 | - <a href="<?php echo esc_url( $archive_link ); ?>" class="format-link has-thumb fa fa-<?php echo esc_attr( $format ); ?>"></a> |
|
76 | + <?php if (has_post_thumbnail()) : ?> |
|
77 | + <a href="<?php echo esc_url($archive_link); ?>" class="format-link has-thumb fa fa-<?php echo esc_attr($format); ?>"></a> |
|
78 | 78 | <?php else : ?> |
79 | - <a href="<?php echo esc_url( $archive_link ); ?>" class="format-link fa fa-<?php echo esc_attr( $format ); ?>"></a> |
|
79 | + <a href="<?php echo esc_url($archive_link); ?>" class="format-link fa fa-<?php echo esc_attr($format); ?>"></a> |
|
80 | 80 | <?php endif; ?> |
81 | 81 | |
82 | - <?php if ( has_post_format( array( 'link' ) ) ) : ?> |
|
83 | - <a href="<?php echo esc_url( lsx_get_my_url() ); ?>" rel="bookmark"><?php the_title(); ?> <span class="fa fa-external-link"></span></a> |
|
82 | + <?php if (has_post_format(array('link'))) : ?> |
|
83 | + <a href="<?php echo esc_url(lsx_get_my_url()); ?>" rel="bookmark"><?php the_title(); ?> <span class="fa fa-external-link"></span></a> |
|
84 | 84 | <?php else : ?> |
85 | 85 | <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a> |
86 | 86 | <?php endif; ?> |
87 | 87 | |
88 | - <?php if ( is_sticky() ) : ?> |
|
89 | - <span class="label label-default label-sticky"><?php esc_html_e( 'Featured', 'lsx' ); ?></span> |
|
88 | + <?php if (is_sticky()) : ?> |
|
89 | + <span class="label label-default label-sticky"><?php esc_html_e('Featured', 'lsx'); ?></span> |
|
90 | 90 | <?php endif; ?> |
91 | 91 | </h1> |
92 | 92 | |
@@ -98,18 +98,18 @@ discard block |
||
98 | 98 | |
99 | 99 | </header><!-- .entry-header --> |
100 | 100 | |
101 | - <?php if ( has_post_format( array( 'quote' ) ) || apply_filters( 'lsx_blog_display_text_on_list', true ) ) : ?> |
|
101 | + <?php if (has_post_format(array('quote')) || apply_filters('lsx_blog_display_text_on_list', true)) : ?> |
|
102 | 102 | |
103 | - <?php if ( lsx_post_format_force_content_on_list() && ! apply_filters( 'lsx_blog_force_content_on_list', false ) ) : ?> |
|
103 | + <?php if (lsx_post_format_force_content_on_list() && ! apply_filters('lsx_blog_force_content_on_list', false)) : ?> |
|
104 | 104 | |
105 | 105 | <div class="entry-summary"> |
106 | 106 | <?php |
107 | - if ( ! has_excerpt() ) { |
|
107 | + if ( ! has_excerpt()) { |
|
108 | 108 | |
109 | - $excerpt_more = '<p><a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'Read More', 'lsx' ) . '</a></p>'; |
|
110 | - $content = wp_trim_words( get_the_content(), 30 ); |
|
109 | + $excerpt_more = '<p><a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('Read More', 'lsx') . '</a></p>'; |
|
110 | + $content = wp_trim_words(get_the_content(), 30); |
|
111 | 111 | $content = '<p>' . $content . '</p>' . $excerpt_more; |
112 | - echo wp_kses_post( $content ); |
|
112 | + echo wp_kses_post($content); |
|
113 | 113 | } else { |
114 | 114 | the_excerpt(); |
115 | 115 | } |
@@ -117,9 +117,9 @@ discard block |
||
117 | 117 | |
118 | 118 | </div><!-- .entry-summary --> |
119 | 119 | |
120 | - <?php elseif ( has_post_format( array( 'link' ) ) ) : ?> |
|
120 | + <?php elseif (has_post_format(array('link'))) : ?> |
|
121 | 121 | |
122 | - <?php elseif ( apply_filters( 'lsx_blog_force_content_on_list', false ) ) : ?> |
|
122 | + <?php elseif (apply_filters('lsx_blog_force_content_on_list', false)) : ?> |
|
123 | 123 | |
124 | 124 | <div class="entry-content"> |
125 | 125 | <?php the_content(); ?> |
@@ -131,12 +131,12 @@ discard block |
||
131 | 131 | <?php |
132 | 132 | the_content(); |
133 | 133 | |
134 | - wp_link_pages( array( |
|
134 | + wp_link_pages(array( |
|
135 | 135 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
136 | 136 | 'after' => '</div></div>', |
137 | 137 | 'link_before' => '<span>', |
138 | 138 | 'link_after' => '</span>', |
139 | - ) ); |
|
139 | + )); |
|
140 | 140 | ?> |
141 | 141 | </div><!-- .entry-content --> |
142 | 142 | |
@@ -148,28 +148,28 @@ discard block |
||
148 | 148 | |
149 | 149 | <?php $comments_number = get_comments_number(); ?> |
150 | 150 | |
151 | - <?php if ( has_tag() || ! empty( $comments_number ) ) { ?> |
|
151 | + <?php if (has_tag() || ! empty($comments_number)) { ?> |
|
152 | 152 | <div class="post-tags-wrapper"> |
153 | 153 | |
154 | 154 | <?php lsx_content_post_tags(); ?> |
155 | 155 | |
156 | - <?php if ( comments_open() && ! empty( $comments_number ) ) : ?> |
|
156 | + <?php if (comments_open() && ! empty($comments_number)) : ?> |
|
157 | 157 | <div class="post-comments"> |
158 | 158 | <a href="<?php the_permalink(); ?>#comments"> |
159 | 159 | <?php |
160 | - if ( '1' === $comments_number ) { |
|
161 | - echo esc_html_x( 'One Comment', 'content.php', 'lsx' ); |
|
160 | + if ('1' === $comments_number) { |
|
161 | + echo esc_html_x('One Comment', 'content.php', 'lsx'); |
|
162 | 162 | } else { |
163 | 163 | printf( |
164 | 164 | /* Translators: %s: number of comments */ |
165 | - esc_html( _nx( |
|
165 | + esc_html(_nx( |
|
166 | 166 | '%s Comment', |
167 | 167 | '%s Comments', |
168 | 168 | $comments_number, |
169 | 169 | 'content.php', |
170 | 170 | 'lsx' |
171 | - ) ), |
|
172 | - esc_html( number_format_i18n( $comments_number ) ) |
|
171 | + )), |
|
172 | + esc_html(number_format_i18n($comments_number)) |
|
173 | 173 | ); |
174 | 174 | } |
175 | 175 | ?> |
@@ -180,11 +180,11 @@ discard block |
||
180 | 180 | <?php } ?> |
181 | 181 | </div> |
182 | 182 | |
183 | - <?php if ( has_post_thumbnail() ) : ?> |
|
183 | + <?php if (has_post_thumbnail()) : ?> |
|
184 | 184 | |
185 | 185 | <div class="entry-image hidden-xs"> |
186 | - <a class="thumbnail" href="<?php the_permalink(); ?>" style="background-image:url(<?php echo esc_url( $image_src ); ?>);"> |
|
187 | - <?php lsx_thumbnail( 'lsx-thumbnail-single' ); ?> |
|
186 | + <a class="thumbnail" href="<?php the_permalink(); ?>" style="background-image:url(<?php echo esc_url($image_src); ?>);"> |
|
187 | + <?php lsx_thumbnail('lsx-thumbnail-single'); ?> |
|
188 | 188 | </a> |
189 | 189 | </div> |
190 | 190 |
@@ -9,7 +9,7 @@ discard block |
||
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 | |
@@ -17,15 +17,15 @@ discard block |
||
17 | 17 | |
18 | 18 | <?php lsx_content_top(); ?> |
19 | 19 | |
20 | - <?php if ( have_posts() ) : ?> |
|
20 | + <?php if (have_posts()) : ?> |
|
21 | 21 | |
22 | - <?php while ( have_posts() ) : the_post(); ?> |
|
22 | + <?php while (have_posts()) : the_post(); ?> |
|
23 | 23 | |
24 | 24 | <?php |
25 | - if ( is_singular( 'post' ) ) { |
|
26 | - get_template_part( 'partials/content', 'post' ); |
|
25 | + if (is_singular('post')) { |
|
26 | + get_template_part('partials/content', 'post'); |
|
27 | 27 | } else { |
28 | - get_template_part( 'partials/content', 'custom' ); |
|
28 | + get_template_part('partials/content', 'custom'); |
|
29 | 29 | } |
30 | 30 | ?> |
31 | 31 | |
@@ -40,13 +40,13 @@ discard block |
||
40 | 40 | <?php lsx_content_after(); ?> |
41 | 41 | |
42 | 42 | <?php |
43 | - if ( is_singular( 'post' ) ) { |
|
43 | + if (is_singular('post')) { |
|
44 | 44 | lsx_post_nav(); |
45 | 45 | } |
46 | 46 | ?> |
47 | 47 | |
48 | 48 | <?php |
49 | - if ( comments_open() ) { |
|
49 | + if (comments_open()) { |
|
50 | 50 | comments_template(); |
51 | 51 | } |
52 | 52 | ?> |
@@ -9,7 +9,7 @@ discard block |
||
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 | |
@@ -17,11 +17,11 @@ discard block |
||
17 | 17 | |
18 | 18 | <?php lsx_content_top(); ?> |
19 | 19 | |
20 | - <?php if ( have_posts() ) : ?> |
|
20 | + <?php if (have_posts()) : ?> |
|
21 | 21 | |
22 | - <?php while ( have_posts() ) : the_post(); ?> |
|
22 | + <?php while (have_posts()) : the_post(); ?> |
|
23 | 23 | |
24 | - <?php get_template_part( 'partials/content', 'page' ); ?> |
|
24 | + <?php get_template_part('partials/content', 'page'); ?> |
|
25 | 25 | |
26 | 26 | <?php endwhile; ?> |
27 | 27 | |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | <?php lsx_content_after(); ?> |
35 | 35 | |
36 | 36 | <?php |
37 | - if ( comments_open() ) { |
|
37 | + if (comments_open()) { |
|
38 | 38 | comments_template(); |
39 | 39 | } |
40 | 40 | ?> |
@@ -20,7 +20,10 @@ |
||
20 | 20 | <div class="col-sm-12"> |
21 | 21 | <?php lsx_footer_top(); ?> |
22 | 22 | |
23 | - <p class="credit <?php if ( has_nav_menu( 'social' ) || has_nav_menu( 'footer' ) ) echo 'credit-float'; ?>"> |
|
23 | + <p class="credit <?php if ( has_nav_menu( 'social' ) || has_nav_menu( 'footer' ) ) { |
|
24 | + echo 'credit-float'; |
|
25 | +} |
|
26 | +?>"> |
|
24 | 27 | <?php |
25 | 28 | printf( |
26 | 29 | /* Translators: 1: current year, 2: blog name */ |
@@ -20,21 +20,21 @@ discard block |
||
20 | 20 | <div class="col-sm-12"> |
21 | 21 | <?php lsx_footer_top(); ?> |
22 | 22 | |
23 | - <p class="credit <?php if ( has_nav_menu( 'social' ) || has_nav_menu( 'footer' ) ) echo 'credit-float'; ?>"> |
|
23 | + <p class="credit <?php if (has_nav_menu('social') || has_nav_menu('footer')) echo 'credit-float'; ?>"> |
|
24 | 24 | <?php |
25 | 25 | printf( |
26 | 26 | /* Translators: 1: current year, 2: blog name */ |
27 | - esc_html__( '© %1$s %2$s All Rights Reserved', 'lsx' ), |
|
28 | - esc_html( date_i18n( 'Y' ) ), |
|
29 | - esc_html( get_bloginfo( 'name' ) ) |
|
27 | + esc_html__('© %1$s %2$s All Rights Reserved', 'lsx'), |
|
28 | + esc_html(date_i18n('Y')), |
|
29 | + esc_html(get_bloginfo('name')) |
|
30 | 30 | ); |
31 | 31 | ?> |
32 | 32 | |
33 | - <?php if ( apply_filters( 'lsx_credit_link', true ) ) : ?> |
|
33 | + <?php if (apply_filters('lsx_credit_link', true)) : ?> |
|
34 | 34 | <?php |
35 | 35 | printf( |
36 | 36 | /* Translators: 1: theme name, 2: author name and link */ |
37 | - esc_html__( ' | %1$s is a WordPress theme developed by %2$s.', 'lsx' ), |
|
37 | + esc_html__(' | %1$s is a WordPress theme developed by %2$s.', 'lsx'), |
|
38 | 38 | 'LSX', |
39 | 39 | '<a href="https://www.lsdev.biz/" rel="nofollow noreferrer noopener" title="LightSpeed WordPress Development - Unlocking the full value of your business, online" rel="author nofollow noopener noreferrer" >LightSpeed</a>' |
40 | 40 | ); |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | <?php endif; ?> |
43 | 43 | </p> |
44 | 44 | |
45 | - <?php if ( has_nav_menu( 'social' ) ) : ?> |
|
45 | + <?php if (has_nav_menu('social')) : ?> |
|
46 | 46 | <nav id="social-navigation" class="social-navigation"> |
47 | 47 | <?php |
48 | 48 | wp_nav_menu( |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | </nav><!-- .social-navigation --> |
56 | 56 | <?php endif; ?> |
57 | 57 | |
58 | - <?php if ( has_nav_menu( 'footer' ) ) : ?> |
|
58 | + <?php if (has_nav_menu('footer')) : ?> |
|
59 | 59 | <nav id="footer-navigation" class="footer-navigation"> |
60 | 60 | <?php |
61 | 61 | wp_nav_menu( |
@@ -9,7 +9,7 @@ discard block |
||
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 | |
@@ -17,13 +17,13 @@ discard block |
||
17 | 17 | |
18 | 18 | <?php lsx_content_top(); ?> |
19 | 19 | |
20 | - <?php if ( have_posts() ) : ?> |
|
20 | + <?php if (have_posts()) : ?> |
|
21 | 21 | |
22 | 22 | <div class="post-wrapper"> |
23 | 23 | |
24 | - <?php while ( have_posts() ) : the_post(); ?> |
|
24 | + <?php while (have_posts()) : the_post(); ?> |
|
25 | 25 | |
26 | - <?php get_template_part( 'partials/content', get_post_format() ); ?> |
|
26 | + <?php get_template_part('partials/content', get_post_format()); ?> |
|
27 | 27 | |
28 | 28 | <?php endwhile; ?> |
29 | 29 | |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | |
34 | 34 | <?php else : ?> |
35 | 35 | |
36 | - <?php get_template_part( 'partials/content', 'none' ); ?> |
|
36 | + <?php get_template_part('partials/content', 'none'); ?> |
|
37 | 37 | |
38 | 38 | <?php endif; ?> |
39 | 39 | |
@@ -47,6 +47,6 @@ discard block |
||
47 | 47 | |
48 | 48 | <?php lsx_content_wrap_after(); ?> |
49 | 49 | |
50 | -<?php get_sidebar( 'sidebar' ); ?> |
|
50 | +<?php get_sidebar('sidebar'); ?> |
|
51 | 51 | |
52 | 52 | <?php get_footer(); |
@@ -31,9 +31,12 @@ |
||
31 | 31 | |
32 | 32 | <?php lsx_paging_nav(); ?> |
33 | 33 | |
34 | - <?php else : ?> |
|
34 | + <?php else { |
|
35 | + : ?> |
|
35 | 36 | |
36 | - <?php get_template_part( 'partials/content', 'none' ); ?> |
|
37 | + <?php get_template_part( 'partials/content', 'none' ); |
|
38 | +} |
|
39 | +?> |
|
37 | 40 | |
38 | 41 | <?php endif; ?> |
39 | 42 |
@@ -9,7 +9,7 @@ discard block |
||
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 | |
@@ -17,13 +17,13 @@ discard block |
||
17 | 17 | |
18 | 18 | <?php lsx_content_top(); ?> |
19 | 19 | |
20 | - <?php if ( have_posts() ) : ?> |
|
20 | + <?php if (have_posts()) : ?> |
|
21 | 21 | |
22 | 22 | <div class="post-wrapper"> |
23 | 23 | |
24 | - <?php while ( have_posts() ) : the_post(); ?> |
|
24 | + <?php while (have_posts()) : the_post(); ?> |
|
25 | 25 | |
26 | - <?php get_template_part( 'partials/content', get_post_format() ); ?> |
|
26 | + <?php get_template_part('partials/content', get_post_format()); ?> |
|
27 | 27 | |
28 | 28 | <?php endwhile; ?> |
29 | 29 | |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | |
34 | 34 | <?php else : ?> |
35 | 35 | |
36 | - <?php get_template_part( 'partials/content', 'none' ); ?> |
|
36 | + <?php get_template_part('partials/content', 'none'); ?> |
|
37 | 37 | |
38 | 38 | <?php endif; ?> |
39 | 39 |
@@ -31,9 +31,12 @@ |
||
31 | 31 | |
32 | 32 | <?php lsx_paging_nav(); ?> |
33 | 33 | |
34 | - <?php else : ?> |
|
34 | + <?php else { |
|
35 | + : ?> |
|
35 | 36 | |
36 | - <?php get_template_part( 'partials/content', 'none' ); ?> |
|
37 | + <?php get_template_part( 'partials/content', 'none' ); |
|
38 | +} |
|
39 | +?> |
|
37 | 40 | |
38 | 41 | <?php endif; ?> |
39 | 42 |
@@ -7,28 +7,28 @@ |
||
7 | 7 | |
8 | 8 | $style = 'body #searchform { display: block; }'; |
9 | 9 | |
10 | -if ( is_customize_preview() ) { |
|
11 | - $search_form = get_theme_mod( 'lsx_header_search', false ); |
|
10 | +if (is_customize_preview()) { |
|
11 | + $search_form = get_theme_mod('lsx_header_search', false); |
|
12 | 12 | |
13 | - if ( false === $search_form ) { |
|
13 | + if (false === $search_form) { |
|
14 | 14 | $style = 'body #searchform { display: none; }'; |
15 | 15 | } |
16 | 16 | } |
17 | 17 | ?> |
18 | 18 | |
19 | -<form role="search" method="get" class="search-form form-inline" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>"> |
|
19 | +<form role="search" method="get" class="search-form form-inline" id="searchform" action="<?php echo esc_url(home_url('/')); ?>"> |
|
20 | 20 | <div class="input-group"> |
21 | - <input type="search" value="<?php if ( is_search() ) { echo get_search_query(); } ?>" name="s" class="search-field form-control" placeholder="<?php esc_attr_e( 'Search', 'lsx' ); ?> <?php echo esc_attr( get_bloginfo( 'name' ) ); ?>"> |
|
22 | - <label class="hide"><?php esc_attr_e( 'Search for:', 'lsx' ); ?></label> |
|
21 | + <input type="search" value="<?php if (is_search()) { echo get_search_query(); } ?>" name="s" class="search-field form-control" placeholder="<?php esc_attr_e('Search', 'lsx'); ?> <?php echo esc_attr(get_bloginfo('name')); ?>"> |
|
22 | + <label class="hide"><?php esc_attr_e('Search for:', 'lsx'); ?></label> |
|
23 | 23 | |
24 | 24 | <span class="input-group-btn"> |
25 | 25 | <button type="submit" class="search-submit btn btn-default"><span class="fa fa-search"></span></button> |
26 | 26 | </span> |
27 | 27 | </div> |
28 | 28 | |
29 | - <?php if ( is_customize_preview() ) : ?> |
|
29 | + <?php if (is_customize_preview()) : ?> |
|
30 | 30 | <style id="lsx-header-search-css"> |
31 | - <?php echo esc_attr( $style ); ?> |
|
31 | + <?php echo esc_attr($style); ?> |
|
32 | 32 | </style> |
33 | 33 | <?php endif; ?> |
34 | 34 | </form> |