Advertisement
Guest User

Untitled

a guest
Mar 31st, 2015
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div class="wrapper section">
  4.  
  5. <div class="section-inner">
  6.  
  7.  
  8. <div class="content">
  9.  
  10. <?php if ( have_posts() ) : ?>
  11.  
  12. <div class="page-title">
  13.  
  14. <h4><?php _e( 'Search results:', 'lovecraft'); echo ' "' . get_search_query() . '"'; ?>
  15.  
  16. <?php
  17.  
  18. $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
  19.  
  20. if ( "1" < $wp_query->max_num_pages ) : ?>
  21.  
  22.  
  23. <span><?php printf( __('(Page %s of %s)', 'lovecraft'), $paged, $wp_query->max_num_pages ); ?></span>
  24.  
  25. <div class="clear"></div>
  26.  
  27.  
  28. <?php endif; ?></h4>
  29.  
  30. </div>
  31.  
  32.  
  33. <div class="posts" id="posts">
  34.  
  35. <?php while (have_posts()) : the_post(); ?>
  36.  
  37. <?php get_template_part( 'content', get_post_format() ); ?>
  38.  
  39. <?php endwhile; ?>
  40.  
  41. </div> <!-- /posts -->
  42.  
  43.  
  44. <?php lovecraft_archive_navigation(); ?>
  45.  
  46. <?php else : ?>
  47.  
  48. <div class="page-title">
  49.  
  50. <h4>
  51. <?php _e( 'Search results:', 'lovecraft'); echo ' "' . get_search_query() . '"'; ?>
  52.  
  53. </h4>
  54.  
  55.  
  56. </div> <!-- /page-title -->
  57.  
  58. <div class="post single">
  59.  
  60. <div class="post-inner">
  61.  
  62. <div class="post-content">
  63.  
  64. <p><?php _e('No results. Try again, would you kindly?', 'lovecraft'); ?></p>
  65.  
  66. <?php get_search_form(); ?>
  67.  
  68.  
  69. </div> <!-- /post-content -->
  70.  
  71.  
  72. </div> <!-- /post-inner -->
  73.  
  74. <div class="clear"></div>
  75.  
  76.  
  77. </div> <!-- /post -->
  78.  
  79.  
  80. <?php endif; ?>
  81.  
  82.  
  83. </div> <!-- /content -->
  84.  
  85.  
  86. <?php get_sidebar(); ?>
  87.  
  88. <div class="clear"></div>
  89.  
  90.  
  91. </div> <!-- /section-inner -->
  92.  
  93. </div> <!-- /wrapper.section -->
  94.  
  95. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement