Guest User

Untitled

a guest
Mar 22nd, 2018
91
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_search_form(); ?>
  2. <hr class="dotted">
  3. <div id="search-results" class="marginbottom2">
  4. <?php if(have_posts()) {
  5. // Results found
  6. global $wp_query;
  7. echo '<p>'.$wp_query->found_posts.' result'.(($wp_query->found_posts > 1) ? 's' : null).' found.</p>';
  8. while(have_posts()) {
  9. the_post();
  10. echo '<li><a href="'.get_the_permalink().'">'.get_the_title().'</a></li>';
  11. }
  12. get_template_part('nav', 'below');
  13. } else {
  14. // No results
  15. echo '<p>Sorry, your search returned nothing. Did you spell it correctly?</p>';
  16. } ?>
  17. </div>
  18. <p class="lead halfmargin">Can't find what you're looking for?</p>
  19. <p><a href="/contact-us/" class="btn btn-primary">Contact Us</a></p>
Add Comment
Please, Sign In to add comment