-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
44 lines (34 loc) · 1014 Bytes
/
Copy path404.php
File metadata and controls
44 lines (34 loc) · 1014 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
/**
* The template for displaying 404 pages (Not Found)
*
* @package WordPress
* @subpackage Howes
* @since Howes 1.0
*/
get_header();
global $howes;
?>
<div class="container">
<div class="row">
<div id="primary" class="content-area col-md-12 col-lg-12 col-sm-12 col-xs-12">
<div id="content" class="site-content" role="main">
<div class="page-wrapper">
<div class="page-content">W-P-L-O-C-K-E-R-.-C-O-M
<?php _e($howes['error404'], 'howes'); ?>
<?php
/*
* Search is now optional. You can show/hide search button from "Theme Options > Error 404 Page Settings" directly.
*/
$error404_search = ( !isset($howes['error404_search']) ) ? '1' : $howes['error404_search'] ;
if( $error404_search=='1' ){
get_search_form();
}
?>
</div><!-- .page-content -->
</div><!-- .page-wrapper -->
</div><!-- #content -->
</div><!-- #primary -->
</div><!-- .row -->
</div><!-- .container -->
<?php get_footer(); ?>