Advertisement
Guest User

search.php

a guest
May 2nd, 2013
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <?php if (have_posts()) : ?>
  4. <div id="left" class="pageContentArea">
  5.  
  6.  
  7. <article class="post">
  8.  
  9.  
  10. <h1>Results for '<?php the_search_query(); ?>'</h1>
  11.  
  12. <?php include (TEMPLATEPATH . '/_/inc/post/nav.php' ); ?>
  13.  
  14. <?php while (have_posts()) : the_post(); ?>
  15.  
  16. <article <?php post_class() ?> id="post-<?php the_ID(); ?>">
  17.  
  18. <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
  19.  
  20.  
  21.  
  22. <div class="entry">
  23.  
  24. <?php the_excerpt(); ?>
  25.  
  26. </div>
  27.  
  28. </article>
  29.  
  30. <?php endwhile; ?>
  31.  
  32. <?php include (TEMPLATEPATH . '/_/inc/post/nav.php' ); ?>
  33.  
  34. <?php else : ?>
  35.  
  36. <h2>No posts found.</h2>
  37.  
  38. <?php endif; ?>
  39. </article>
  40. </div>
  41. <div id="right">
  42.  
  43. <?php get_sidebar(); ?>
  44. </div>
  45.  
  46. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement