@@ -18,17 +18,17 @@ discard block |
||
18 | 18 | <div class="col-sm-12"> |
19 | 19 | <div class="entry-content"> |
20 | 20 | |
21 | - <?php if ( ! is_singular() ) { |
|
21 | + <?php if ( ! is_singular()) { |
|
22 | 22 | the_excerpt(); |
23 | 23 | } else { |
24 | 24 | the_content(); |
25 | 25 | |
26 | - wp_link_pages( array( |
|
26 | + wp_link_pages(array( |
|
27 | 27 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
28 | 28 | 'after' => '</div></div>', |
29 | 29 | 'link_before' => '<span>', |
30 | 30 | 'link_after' => '</span>' |
31 | - ) ); |
|
31 | + )); |
|
32 | 32 | } ?> |
33 | 33 | |
34 | 34 | <?php lsx_portfolio_gallery(); ?> |
@@ -36,16 +36,16 @@ discard block |
||
36 | 36 | <?php lsx_post_nav(); ?> |
37 | 37 | |
38 | 38 | <?php |
39 | - if ( class_exists( 'LSX_Sharing' ) ) { |
|
39 | + if (class_exists('LSX_Sharing')) { |
|
40 | 40 | lsx_content_sharing(); |
41 | 41 | } else { |
42 | - if ( function_exists( 'sharing_display' ) ) { |
|
43 | - sharing_display( '', true ); |
|
42 | + if (function_exists('sharing_display')) { |
|
43 | + sharing_display('', true); |
|
44 | 44 | } |
45 | 45 | |
46 | - if ( class_exists( 'Jetpack_Likes' ) ) { |
|
46 | + if (class_exists('Jetpack_Likes')) { |
|
47 | 47 | $custom_likes = new Jetpack_Likes; |
48 | - echo wp_kses_post( $custom_likes->post_likes( '' ) ); |
|
48 | + echo wp_kses_post($custom_likes->post_likes('')); |
|
49 | 49 | } |
50 | 50 | } |
51 | 51 | ?> |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | </div> |
58 | 58 | </div> |
59 | 59 | |
60 | - <?php edit_post_link( esc_html__( 'Edit', 'lsx' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' ); ?> |
|
60 | + <?php edit_post_link(esc_html__('Edit', 'lsx'), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>'); ?> |
|
61 | 61 | |
62 | 62 | <?php lsx_entry_bottom(); ?> |
63 | 63 |
@@ -7,16 +7,16 @@ |
||
7 | 7 | |
8 | 8 | get_header(); ?> |
9 | 9 | |
10 | - <div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>"> |
|
10 | + <div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>"> |
|
11 | 11 | <main id="main" class="site-main"> |
12 | 12 | |
13 | 13 | <section class="error-404 not-found"> |
14 | 14 | <header class="page-header"> |
15 | - <h1 class="page-title"><?php esc_html_e( 'Whoops!', 'lsx' ); ?></h1> |
|
15 | + <h1 class="page-title"><?php esc_html_e('Whoops!', 'lsx'); ?></h1> |
|
16 | 16 | </header><!-- .page-header --> |
17 | 17 | |
18 | 18 | <div class="page-content"> |
19 | - <p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try a search?', 'lsx' ); ?></p> |
|
19 | + <p><?php esc_html_e('It looks like nothing was found at this location. Maybe try a search?', 'lsx'); ?></p> |
|
20 | 20 | <?php get_search_form(); ?> |
21 | 21 | </div><!-- .page-content --> |
22 | 22 | </section><!-- .error-404 --> |