@@ -16,12 +16,12 @@ |
||
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 |
@@ -6,27 +6,27 @@ |
||
6 | 6 | * @subpackage 404-widget |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! function_exists( 'lsx_widget_area_404_init' ) ) : |
|
9 | +if ( ! function_exists('lsx_widget_area_404_init')) : |
|
10 | 10 | function lsx_widget_area_404_init() { |
11 | - register_sidebar( array( |
|
12 | - 'name' => esc_html__( '404 page', 'lsx' ), |
|
11 | + register_sidebar(array( |
|
12 | + 'name' => esc_html__('404 page', 'lsx'), |
|
13 | 13 | 'id' => 'sidebar-404', |
14 | 14 | 'before_widget' => '<aside id="%1$s" class="widget %2$s">', |
15 | 15 | 'after_widget' => '</aside>', |
16 | 16 | 'before_title' => '<h3 class="widget-title">', |
17 | 17 | 'after_title' => '</h3>', |
18 | - ) ); |
|
18 | + )); |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | endif; |
22 | 22 | |
23 | -add_action( 'widgets_init', 'lsx_widget_area_404_init' ); |
|
23 | +add_action('widgets_init', 'lsx_widget_area_404_init'); |
|
24 | 24 | |
25 | -if ( ! function_exists( 'my_search_placeholder' ) ) : |
|
25 | +if ( ! function_exists('my_search_placeholder')) : |
|
26 | 26 | function my_search_placeholder() { |
27 | - return __( 'lsdev.biz', 'Total' ); |
|
27 | + return __('lsdev.biz', 'Total'); |
|
28 | 28 | } |
29 | 29 | |
30 | 30 | endif; |
31 | 31 | |
32 | -add_filter( 'search_placeholder_text', 'my_search_placeholder' ); |
|
32 | +add_filter('search_placeholder_text', 'my_search_placeholder'); |