-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
53 lines (35 loc) · 1.01 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
<?php
/**
* 404 Template
*
* @package MPH Starter
* @since 0.1.0
*/
get_header();
?>
<div class="row">
<section class="primary-content grid-8">
<article class="entry">
<h1>Page not found</h1>
<div class="entry-content">
<p>We can’t seem to find what you’re looking for. Try searching, or maybe one of the links below can help.</p>
<div class="404-search">
<?php get_search_form(); ?>
</div>
<div class="row sidebar">
<div class="grid-4">
<?php the_widget( 'WP_Widget_Recent_Posts', array( 'number' => 5 ), array( 'widget_id' => '404' ) ); ?>
</div>
<div class="grid-4">
<div class="widget">
<h2 class="widgettitle"><?php _e( 'Most Used Categories' ); ?></h2>
<ul>
<?php wp_list_categories( array( 'orderby' => 'count', 'order' => 'DESC', 'show_count' => 1, 'title_li' => '', 'number' => 5 ) ); ?>
</ul>
</div>
</div>
</div>
</article>
</section>
</div>
<?php get_footer(); ?>