Advertisement
Guest User

Untitled

a guest
Dec 4th, 2014
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.60 KB | None | 0 0
  1.  
  2. <h2>Can't find that page, sorry... (Error 404)</h2>
  3.  
  4. <p>Let me help you find what you came here for:</p>
  5. <?php
  6. $s = preg_replace("/(.*)-(html|htm|php|asp|aspx)$/","$1",$wp_query->query_vars['name']);
  7. $posts = query_posts('post_type=any&name='.$s);
  8. $s = str_replace("-"," ",$s);
  9. if (count($posts) == 0) {
  10. $posts = query_posts('post_type=any&s='.$s);
  11. }
  12. if (count($posts) > 0) {
  13. echo "<ol><li>";
  14. echo "<p>Were you looking for <strong>one of the following</strong> posts or pages?</p>";
  15. echo "<ul>";
  16. foreach ($posts as $post) {
  17. echo '<li><a href="'.get_permalink($post->ID).'">'.$post->post_title.'</a></li>';
  18. }
  19. echo "</ul>";
  20. echo "<p>If not, don't worry, I've got a few more tips for you to find it:</p></li>";
  21. } else {
  22. echo "<p><strong>Don't worry though!</strong> I've got a few tips for you to find it:</p>";
  23. echo "<ol>";
  24. }
  25. ?>
  26. <li>
  27. <label for="s"><strong>Search</strong> for it:</label>
  28. <form style="display:inline;" action="<?php bloginfo('siteurl');?>">
  29. <input type="text" value="<?php echo esc_attr($s); ?>" id="s" name="s"/> <input type="submit" value="Search"/>
  30. </form>
  31. </li>
  32. <li>
  33. <strong>If you typed in a URL...</strong> make sure the spelling, cApitALiZaTiOn, and punctuation are correct. Then try reloading the page.
  34.  
  35. </li>
  36. <li>
  37. <strong>Look</strong> for it in the <a href="<?php bloginfo('siteurl');?>/sitemap/">sitemap</a>.
  38.  
  39. </li>
  40. <li>
  41. <strong>Start over again</strong> at my <a href="<?php bloginfo('siteurl');?>">homepage</a> (and please contact me to say what went wrong, so I can fix it).
  42. </li>
  43. </ol>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement