404.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. /**
  3. * @package Apostrophe 2
  4. *
  5. * The template for displaying 404 pages (Not Found).
  6. */
  7. get_header(); ?>
  8. <section id="primary" class="content-area">
  9. <main id="main" class="site-main" role="main">
  10. <section class="error-404 not-found">
  11. <header class="page-header">
  12. <h1 class="page-title"><?php esc_html_e( 'Oops! That page can&rsquo;t be found.', 'apostrophe-2' ); ?></h1>
  13. </header><!-- .page-header -->
  14. <div class="page-content">
  15. <p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'apostrophe-2' ); ?></p>
  16. <?php get_search_form(); ?>
  17. <div class="apostrophe-2-widget-column">
  18. <?php the_widget( 'WP_Widget_Recent_Posts' ); ?>
  19. <div class="widget widget_categories">
  20. <h2 class="widgettitle"><?php esc_html_e( 'Most Used Categories', 'apostrophe-2' ); ?></h2>
  21. <ul>
  22. <?php
  23. wp_list_categories( array(
  24. 'orderby' => 'count',
  25. 'order' => 'DESC',
  26. 'show_count' => 1,
  27. 'title_li' => '',
  28. 'number' => 10,
  29. ) );
  30. ?>
  31. </ul>
  32. </div><!-- .widget -->
  33. </div><!-- .apostrophe-2-widget-column -->
  34. <div class="apostrophe-2-widget-column">
  35. <?php
  36. /* translators: %1$s: smiley */
  37. $archive_content = '<p>' . sprintf( esc_html__( 'Try looking in the monthly archives. %1$s', 'apostrophe-2' ), convert_smilies( ':)' ) ) . '</p>';
  38. the_widget( 'WP_Widget_Archives', 'dropdown=1', "after_title=</h2>$archive_content" );
  39. ?>
  40. <?php the_widget( 'WP_Widget_Tag_Cloud' ); ?>
  41. </div><!-- .apostrophe-2-widget-column -->
  42. </div><!-- .page-content -->
  43. </section><!-- .error-404 -->
  44. </main><!-- #main -->
  45. </section><!-- #primary -->
  46. <?php get_sidebar(); ?>
  47. <?php get_footer(); ?>