2012-01-07 03:25:13 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2016-09-27 06:16:03 +00:00
|
|
|
* The template for displaying 404 pages (not found)
|
2012-01-07 03:25:13 +00:00
|
|
|
*
|
2015-07-01 15:21:44 +00:00
|
|
|
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
|
|
|
|
*
|
2012-01-07 03:25:13 +00:00
|
|
|
* @package _s
|
|
|
|
*/
|
|
|
|
|
2017-08-01 20:27:46 +00:00
|
|
|
get_header();
|
|
|
|
?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2012-08-25 16:57:24 +00:00
|
|
|
<div id="primary" class="content-area">
|
2017-06-23 16:41:05 +00:00
|
|
|
<main id="main" class="site-main">
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-03-02 01:28:18 +00:00
|
|
|
<section class="error-404 not-found">
|
|
|
|
<header class="page-header">
|
2015-04-24 02:39:05 +00:00
|
|
|
<h1 class="page-title"><?php esc_html_e( 'Oops! That page can’t be found.', '_s' ); ?></h1>
|
2013-03-02 01:28:18 +00:00
|
|
|
</header><!-- .page-header -->
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-03-02 01:28:18 +00:00
|
|
|
<div class="page-content">
|
2015-04-24 02:39:05 +00:00
|
|
|
<p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', '_s' ); ?></p>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-11-11 21:59:40 +00:00
|
|
|
<?php
|
2018-02-27 10:18:50 +00:00
|
|
|
get_search_form();
|
2015-11-11 21:59:40 +00:00
|
|
|
|
2018-02-27 10:18:50 +00:00
|
|
|
the_widget( 'WP_Widget_Recent_Posts' );
|
2015-11-11 21:59:40 +00:00
|
|
|
?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-03-26 22:55:49 +00:00
|
|
|
<div class="widget widget_categories">
|
2015-04-24 02:39:05 +00:00
|
|
|
<h2 class="widget-title"><?php esc_html_e( 'Most Used Categories', '_s' ); ?></h2>
|
2012-01-07 03:25:13 +00:00
|
|
|
<ul>
|
2017-08-01 20:27:46 +00:00
|
|
|
<?php
|
2020-04-05 20:49:27 +00:00
|
|
|
wp_list_categories(
|
|
|
|
array(
|
|
|
|
'orderby' => 'count',
|
|
|
|
'order' => 'DESC',
|
|
|
|
'show_count' => 1,
|
|
|
|
'title_li' => '',
|
|
|
|
'number' => 10,
|
|
|
|
)
|
|
|
|
);
|
2017-08-01 20:27:46 +00:00
|
|
|
?>
|
2012-01-07 03:25:13 +00:00
|
|
|
</ul>
|
2012-05-23 19:01:41 +00:00
|
|
|
</div><!-- .widget -->
|
2012-01-07 03:25:13 +00:00
|
|
|
|
|
|
|
<?php
|
2017-08-01 20:27:46 +00:00
|
|
|
/* translators: %1$s: smiley */
|
2018-02-27 10:35:30 +00:00
|
|
|
$_s_archive_content = '<p>' . sprintf( esc_html__( 'Try looking in the monthly archives. %1$s', '_s' ), convert_smilies( ':)' ) ) . '</p>';
|
|
|
|
the_widget( 'WP_Widget_Archives', 'dropdown=1', "after_title=</h2>$_s_archive_content" );
|
2015-11-11 21:59:40 +00:00
|
|
|
|
2017-08-01 20:27:46 +00:00
|
|
|
the_widget( 'WP_Widget_Tag_Cloud' );
|
2015-11-11 21:59:40 +00:00
|
|
|
?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-03-02 01:28:18 +00:00
|
|
|
</div><!-- .page-content -->
|
2013-07-11 19:18:47 +00:00
|
|
|
</section><!-- .error-404 -->
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-07-30 19:12:45 +00:00
|
|
|
</main><!-- #main -->
|
2013-03-05 00:41:38 +00:00
|
|
|
</div><!-- #primary -->
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-11-11 21:59:40 +00:00
|
|
|
<?php
|
|
|
|
get_footer();
|