@@ -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(); ?> |
@@ -8,23 +8,23 @@ |
||
8 | 8 | |
9 | 9 | <section class="no-results not-found"> |
10 | 10 | <header class="page-header"> |
11 | - <h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'lsx' ); ?></h1> |
|
11 | + <h1 class="page-title"><?php esc_html_e('Nothing Found', 'lsx'); ?></h1> |
|
12 | 12 | </header><!-- .page-header --> |
13 | 13 | |
14 | 14 | <div class="page-content"> |
15 | 15 | |
16 | - <?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?> |
|
16 | + <?php if (is_home() && current_user_can('publish_posts')) : ?> |
|
17 | 17 | |
18 | - <p><?php esc_html_e( 'Ready to publish your first post?', 'lsx' ); ?> <a href="<?php echo esc_url( admin_url( 'post-new.php' ) ); ?>"><?php esc_html_e( 'Get started here', 'lsx' ); ?></a></p> |
|
18 | + <p><?php esc_html_e('Ready to publish your first post?', 'lsx'); ?> <a href="<?php echo esc_url(admin_url('post-new.php')); ?>"><?php esc_html_e('Get started here', 'lsx'); ?></a></p> |
|
19 | 19 | |
20 | - <?php elseif ( is_search() ) : ?> |
|
20 | + <?php elseif (is_search()) : ?> |
|
21 | 21 | |
22 | - <p><?php esc_html_e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'lsx' ); ?></p> |
|
22 | + <p><?php esc_html_e('Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'lsx'); ?></p> |
|
23 | 23 | <?php get_search_form(); ?> |
24 | 24 | |
25 | 25 | <?php else : ?> |
26 | 26 | |
27 | - <p><?php esc_html_e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'lsx' ); ?></p> |
|
27 | + <p><?php esc_html_e('It seems we can’t find what you’re looking for. Perhaps searching can help.', 'lsx'); ?></p> |
|
28 | 28 | <?php get_search_form(); ?> |
29 | 29 | |
30 | 30 | <?php endif; ?> |
@@ -16,16 +16,16 @@ |
||
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 | 27 | |
28 | - <?php edit_post_link( esc_html__( 'Edit', 'lsx' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' ); ?> |
|
28 | + <?php edit_post_link(esc_html__('Edit', 'lsx'), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>'); ?> |
|
29 | 29 | |
30 | 30 | <?php lsx_entry_bottom(); ?> |
31 | 31 |
@@ -24,38 +24,38 @@ |
||
24 | 24 | <?php |
25 | 25 | the_content(); |
26 | 26 | |
27 | - wp_link_pages( array( |
|
27 | + wp_link_pages(array( |
|
28 | 28 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
29 | 29 | 'after' => '</div></div>', |
30 | 30 | 'link_before' => '<span>', |
31 | 31 | 'link_after' => '</span>', |
32 | - ) ); |
|
32 | + )); |
|
33 | 33 | ?> |
34 | 34 | </div><!-- .entry-content --> |
35 | 35 | |
36 | 36 | <footer class="footer-meta clearfix"> |
37 | - <?php if ( has_tag() || class_exists( 'LSX_Sharing' ) || ( function_exists( 'sharing_display' ) || class_exists( 'Jetpack_Likes' ) ) ) : ?> |
|
37 | + <?php if (has_tag() || class_exists('LSX_Sharing') || (function_exists('sharing_display') || class_exists('Jetpack_Likes'))) : ?> |
|
38 | 38 | <div class="post-tags-wrapper"> |
39 | 39 | <?php lsx_content_post_tags(); ?> |
40 | 40 | |
41 | 41 | <?php |
42 | - if ( class_exists( 'LSX_Sharing' ) ) { |
|
42 | + if (class_exists('LSX_Sharing')) { |
|
43 | 43 | lsx_content_sharing(); |
44 | 44 | } else { |
45 | - if ( function_exists( 'sharing_display' ) ) { |
|
46 | - sharing_display( '', true ); |
|
45 | + if (function_exists('sharing_display')) { |
|
46 | + sharing_display('', true); |
|
47 | 47 | } |
48 | 48 | |
49 | - if ( class_exists( 'Jetpack_Likes' ) ) { |
|
49 | + if (class_exists('Jetpack_Likes')) { |
|
50 | 50 | $custom_likes = new Jetpack_Likes; |
51 | - echo wp_kses_post( $custom_likes->post_likes( '' ) ); |
|
51 | + echo wp_kses_post($custom_likes->post_likes('')); |
|
52 | 52 | } |
53 | 53 | } |
54 | 54 | ?> |
55 | 55 | <?php endif ?> |
56 | 56 | </footer><!-- .footer-meta --> |
57 | 57 | |
58 | - <?php edit_post_link( esc_html__( 'Edit', 'lsx' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' ); ?> |
|
58 | + <?php edit_post_link(esc_html__('Edit', 'lsx'), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>'); ?> |
|
59 | 59 | |
60 | 60 | <?php lsx_entry_bottom(); ?> |
61 | 61 |
@@ -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 | ?> |
@@ -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(); |
@@ -17,36 +17,36 @@ |
||
17 | 17 | */ |
18 | 18 | |
19 | 19 | // Exit if accessed directly |
20 | -if ( ! defined( 'ABSPATH' ) ) { |
|
20 | +if ( ! defined('ABSPATH')) { |
|
21 | 21 | exit; |
22 | 22 | } |
23 | 23 | |
24 | 24 | global $product; ?> |
25 | 25 | |
26 | 26 | <div class="lsx-woocommerce-slot"> |
27 | - <a href="<?php echo esc_url( $product->get_permalink() ); ?>"> |
|
27 | + <a href="<?php echo esc_url($product->get_permalink()); ?>"> |
|
28 | 28 | <figure class="lsx-woocommerce-avatar"> |
29 | - <?php echo $product->get_image( 'lsx-thumbnail-square' ); ?> |
|
29 | + <?php echo $product->get_image('lsx-thumbnail-square'); ?> |
|
30 | 30 | </figure> |
31 | 31 | </a> |
32 | 32 | |
33 | 33 | <h5 class="lsx-woocommerce-title"> |
34 | - <a href="<?php echo esc_url( $product->get_permalink() ); ?>"><?php echo $product->get_name(); ?></a> |
|
34 | + <a href="<?php echo esc_url($product->get_permalink()); ?>"><?php echo $product->get_name(); ?></a> |
|
35 | 35 | </h5> |
36 | 36 | |
37 | - <?php if ( ! empty( $show_rating ) ) : ?> |
|
37 | + <?php if ( ! empty($show_rating)) : ?> |
|
38 | 38 | <div class="lsx-woocommerce-rating"> |
39 | - <?php echo wc_get_rating_html( $product->get_average_rating() ); ?> |
|
39 | + <?php echo wc_get_rating_html($product->get_average_rating()); ?> |
|
40 | 40 | </div> |
41 | 41 | <?php endif; ?> |
42 | 42 | |
43 | - <?php if ( $price_html = $product->get_price_html() ) : ?> |
|
43 | + <?php if ($price_html = $product->get_price_html()) : ?> |
|
44 | 44 | <div class="lsx-woocommerce-price"> |
45 | 45 | <?php echo $price_html; ?> |
46 | 46 | </div> |
47 | 47 | <?php endif; ?> |
48 | 48 | |
49 | 49 | <div class="lsx-woocommerce-content"> |
50 | - <a href="<?php echo esc_url( $product->get_permalink() ); ?>" class="moretag"><?php esc_attr_e( 'View more', 'lsx' ); ?></a> |
|
50 | + <a href="<?php echo esc_url($product->get_permalink()); ?>" class="moretag"><?php esc_attr_e('View more', 'lsx'); ?></a> |
|
51 | 51 | </div> |
52 | 52 | </div> |