Advertisement
Guest User

Untitled

a guest
Sep 19th, 2010
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="content">
  4. <div class="post">
  5. <h2>Page could not be found - Error 404</h2>
  6. <div class="contenttext">
  7. <p><strong>The page you tried to reach could not be found. It may have been moved or deleted, or the address may be incorrect. Please use the navigation menus or the search box to find what you are looking for!</strong></p>
  8.  
  9. <?php if (smart404_loop()) : ?>
  10. <p>Or, try one of these posts:</p>
  11. <?php while (have_posts()) : the_post(); ?>
  12. <h4><a href="<?php the_permalink() ?>"
  13. rel="bookmark"
  14. title="<?php the_title_attribute(); ?>">
  15. <?php the_title(); ?></a></h4>
  16. <small><?php the_excerpt(); ?></small>
  17. <?php endwhile; ?>
  18. <?php endif; ?></div>
  19. </div>
  20. </div>
  21.  
  22. <?php get_sidebar(); ?>
  23. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement