Advertisement
Guest User

Recipes Theme

a guest
Oct 16th, 2015
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.83 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div class="rcps-title-header">
  4.     <span><?php _e( 'Searching for', 'framework' ) ?></span>
  5.     <h1><?php printf( get_search_query() ); ?></h1>
  6. </div>
  7.  
  8. <div class="rcps-section-content">
  9.     <div class="rcps-inner">
  10.         <div class="rcps-single-content">
  11.             <?php if ( have_posts() ) : ?>
  12.              <?php while ( $wp_query->have_posts() ) : $wp_query->the_post(); ?>
  13.                 <?php get_template_part( 'templates/template', 'article' ); ?>
  14.                 <?php endwhile; ?>
  15.  
  16.             <?php else : ?>
  17.                 <p class="rcps-ingress rcps-ingress-center"><?php _e( 'Sorry, but nothing matched your search criteria.', 'framework' ); ?></p>
  18.             <?php endif; ?>
  19.  
  20.             <?php mytheme_page_navi(); ?>
  21.         </div><!-- .rcps-single-content -->
  22.     </div><!-- .rcps-inner -->
  23. </div><!-- .rcps-section-content -->
  24.  
  25. <?php get_sidebar(); ?>
  26.  
  27. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement