-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path404.php
71 lines (52 loc) · 1.72 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
<?php
/**
* 404 Template
* Displays if/when 404 page is required to be displayed
*
* @package Desk_Mess_Mirrored
* @since 1.0
*
* @link http://buynowshop.com/themes/desk-mess-mirrored/
* @link https://github.com/Cais/desk-mess-mirrored/
* @link https://wordpress.org/themes/desk-mess-mirrored/
*
* @author Edward Caissie <edward.caissie@gmail.com>
* @copyright Copyright (c) 2009-2016, Edward Caissie
*
* @version 2.1
* @date December 3, 2012
* Added 'DMM No Posts Found' function to replace repetitive code
*
* @version 2.2
* @date February 26, 2013
* Added some additional text and relevant i18n support
*/
get_header(); ?>
<div id="maintop"></div>
<div id="wrapper">
<div id="content">
<div id="main-blog">
<h1><?php _e( 'You have arrived at the 404 page!!!', 'desk-mess-mirrored' ); ?></h1>
<?php
$message_404 = __( 'This is not the page you are looking for ...', 'desk-mess-mirrored' ) . '<br />';
$message_404 .= __( '... well, that is rather obvious. No one really looks for a 404 page.', 'desk-mess-mirrored' ) . '<br />';
$message_404 .= '<br />';
$message_404 .= __( 'We apologize for the inconvenience, would you care to look for something else?', 'desk-mess-mirrored' ) . '<br />';
echo $message_404; ?>
<?php if ( have_posts() ) {
while ( have_posts() ) {
the_post();
get_template_part( 'desk-mess-mirrored', get_post_format() );
}
get_template_part( 'dmm-navigation' );
} else {
dmm_no_posts_found();
} ?>
</div>
<!--end main blog-->
<?php get_sidebar(); ?>
<div class="clear"></div>
</div>
<!--end content-->
</div><!--end wrapper-->
<?php get_footer();