-
Notifications
You must be signed in to change notification settings - Fork 10
/
404.php
108 lines (98 loc) · 2.85 KB
/
404.php
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?php
/**
* Error 404 Page template file
*
* This file is the Error 404 Page template file, which is output whenever
* the server encounters a "404 - file not found" error.
*
* @uses oenology_hook_post_404() Defined in /functions/hooks.php
*
* @link http://codex.wordpress.org/Function_Reference/get_header get_header()
* @link http://codex.wordpress.org/Function_Reference/get_footer get_footer()
* @link http://codex.wordpress.org/Function_Reference/get_sidebar get_sidebar()
*
* @package Oenology
* @copyright Copyright (c) 2010, Chip Bennett
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU General Public License, v2 (or newer)
*
* @since Oenology 1.0
*/
?>
<?php
/**
* Include the header template part file
*
* MUST come first.
* Calls the header PHP file.
* Used in all primary template pages
*
* Codex reference: {@link: http://codex.wordpress.org/Function_Reference/get_header get_header}
*
* Child Themes can replace this template part file globally, via "header.php",
* or in a specific context only, via "header-404.php"
*/
get_header( '404' );
?>
<!-- Begin Main (div#main) -->
<?php
/**
* Container div#main contains the center column content of the three-column
* layout, and the left-column content of the two-column layout.
* Generally, this column contains the main content of the page
* (blog post/posts, page content, search results, etc.), and
* contains the WordPress "Loop". For other non-WordPress pages
* (or any page not containing the "Loop") the site structure
* can be kept consistent by replacing "loop.php" with whatever
* file (or static content) is desired.
*/
?>
<div id="main">
<div <?php
post_class();
?>>
<div class="post-title">
<h1>Don't Panic</h1>
</div>
<div class="post-entry">
<?php
/**
* Fire the 'oenology_hook_post_404' hook
*
* @return mixed any content hooked into 'oenology_hook_post_404'
*/
oenology_hook_post_404();
?>
</div>
</div>
</div>
<!-- End Main (div#main) -->
<?php
/**
* Include the sidebar template part file
*
* Calls a sidebar template part file.
* Used in all primary template pages, except static Pages.
*
* Codex reference: http: *codex.wordpress.org/Function_Reference/get_sidebar
*
* Child Themes can replace this template part file globally,
* via "sidebar.php", or in the Error 404 Page context only, via
* "sidebar-404.php"
*/
get_sidebar( '404' );
?>
<?php
/**
* Include the footer template part file
*
* MUST come last.
* Calls the footer PHP file.
* Used in all primary template pages
*
* Codex reference: {@link http: *codex.wordpress.org/Function_Reference/get_footer get_footer}
*
* Child Themes can replace this template part file globally, via "footer.php",
* or in a specific context only, via "footer-{context}.php"
*/
get_footer( '404' );
?>