-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
30 lines (25 loc) · 872 Bytes
/
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
<?php get_header(); ?>
<section id="news">
<article id="post-0" class="post error404 not-found">
<header class="entry-header">
<h1 class="entry-title">This is somewhat embarrassing, isn’t it?</h1>
</header>
<div class="entry-content">
<p>It seems we can’t find what you’re looking for. Perhaps one of the links below, can help.</p>
<?php the_widget( 'WP_Widget_Recent_Posts', array( 'number' => 5 ), array( 'widget_id' => '404' ) ); ?>
<div class="widget">
<h2 class="widget-title">Categories</h2>
<ul>
<?php wp_list_categories( array('title_li' => '')); ?>
</ul>
</div>
<div class="widget">
<h2 class="widget-title">Archives</h2>
<ul>
<?php wp_get_archives(); ?>
</ul>
</div>
</div><!-- .entry-content -->
</article><!-- #post-0 -->
</section><!-- End #news -->
<?php get_footer(); ?>