Completed
Push — master ( 02c4bb...d27ae5 )
by Warwick
07:49 queued 02:53
created
404.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -11,11 +11,11 @@  discard block
 block discarded – undo
11 11
 		<main id="main" class="site-main" role="main">
12 12
 			<section class="error-404 not-found">
13 13
 				<header class="page-header">
14
-					<h1 class="page-title"><?php esc_html_e( 'Whoops!', 'lsx' ); ?></h1>
14
+					<h1 class="page-title"><?php esc_html_e('Whoops!', 'lsx'); ?></h1>
15 15
 				</header><!-- .page-header -->
16 16
 
17 17
 				<div class="page-content">
18
-					<p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try a search?', 'lsx' ); ?></p>
18
+					<p><?php esc_html_e('It looks like nothing was found at this location. Maybe try a search?', 'lsx'); ?></p>
19 19
 					<?php get_search_form(); ?>
20 20
 				</div><!-- .page-content -->
21 21
 			</section><!-- .error-404 -->
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
 	<div id="secondary" class="col-sm-12 sidebar-container" role="complementary">
27 27
 		<div class="widget-area">
28
-			<?php dynamic_sidebar( 'sidebar-404' ); ?>
28
+			<?php dynamic_sidebar('sidebar-404'); ?>
29 29
 		</div><!-- .widget-area -->
30 30
 	</div><!-- #secondary -->
31 31
 
Please login to merge, or discard this patch.
includes/404-widget.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -6,27 +6,27 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.