This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
_s/404.php

61 lines
1.5 KiB
PHP
Raw Permalink Normal View History

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
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
2012-01-07 03:25:13 +00:00
* @package _s
*/
get_header();
?>
2012-01-07 03:25:13 +00:00
<main id="primary" class="site-main">
2012-01-07 03:25:13 +00:00
<section class="error-404 not-found">
<header class="page-header">
<h1 class="page-title"><?php esc_html_e( 'Oops! That page can&rsquo;t be found.', '_s' ); ?></h1>
</header><!-- .page-header -->
2012-01-07 03:25:13 +00:00
<div class="page-content">
<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
<?php
get_search_form();
the_widget( 'WP_Widget_Recent_Posts' );
?>
2012-01-07 03:25:13 +00:00
<div class="widget widget_categories">
<h2 class="widget-title"><?php esc_html_e( 'Most Used Categories', '_s' ); ?></h2>
2012-01-07 03:25:13 +00:00
<ul>
<?php
2020-04-05 20:49:27 +00:00
wp_list_categories(
array(
'orderby' => 'count',
'order' => 'DESC',
'show_count' => 1,
'title_li' => '',
'number' => 10,
)
);
?>
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
/* translators: %1$s: smiley */
$_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" );
the_widget( 'WP_Widget_Tag_Cloud' );
?>
2012-01-07 03:25:13 +00:00
</div><!-- .page-content -->
</section><!-- .error-404 -->
2012-01-07 03:25:13 +00:00
</main><!-- #main -->
2012-01-07 03:25:13 +00:00
<?php
get_footer();