Advertisement
Guest User

EcoNest Search

a guest
Jun 2nd, 2011
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <?php if (have_posts()) : ?>
  2.  
  3. <div id="content" class="container_12 clearfloat learnmore">
  4.  
  5. <h2>Search Results for "<em><?php the_search_query() ?></em>"</h2>
  6.  
  7. <?php while (have_posts()) : the_post(); ?>
  8.  
  9. <div class="search-post">
  10. <h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title();?></a></h2>
  11. <?php the_excerpt();?>
  12. <p><a href="<?php the_permalink();?>"><?php the_permalink();?></a></p>
  13. <a class="button" href="<?php the_permalink();?>">View Result &raquo;</a>
  14. </div>
  15.  
  16. <?php endwhile; ?>
  17. </div>
  18. <?php if (next_posts_link() || previous_posts_link()): ?>
  19. <?php next_posts_link('&laquo; Older Entries') ?> | <?php previous_posts_link('Newer Entries &raquo;') ?>
  20. <?php endif ?>
  21.  
  22. <?php else : ?>
  23.  
  24. <h2>No results found. Try a different search?</h2>
  25. <div class="search-container no-results clearit">
  26. <?php get_search_form(); ?>
  27. </div>
  28. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement