WordPress Theme Development 9 – 404 Template

Most of the basic theme template file are explained. We do felt error 404 page, 404.php, is quite important. There is always a chance that user might click on the page that does not exist. If it does happen, proper error 404 page as following will handle it.

1
2
3
4
5
6
7
8
9
10
11
12
  1. <?php
  2. /**
  3.  * @package WordPress
  4.  * @subpackage Your_Theme
  5.  */
  6. ?>
  7. <?php get_header(); ?>
  8.  
  9. <h2><?php _e('Error 404 - Not Found'); ?></h2>
  10. <?php get_search_form(); ?>
  11.  
  12. <?php get_footer(); ?>

Related Posts

References

blog comments powered by Disqus