Advertisement
Guest User

Untitled

a guest
Sep 15th, 2014
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3.  
  4. <div id="conteudo" class="site-content" role="main">
  5.  
  6. <?php if ( have_posts() ) : ?>
  7.  
  8. <header class="artigo">
  9. <h1 class="artigo_titulo"><?php printf( __( 'Search Results for: %s', 'WPTotal' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
  10. </header><!-- .page-header -->
  11.  
  12. <?php /*Iniciar o Loop */ ?>
  13. <?php while ( have_posts() ) : the_post(); ?>
  14.  
  15. <?php get_template_part( 'content', 'search' ); ?>
  16.  
  17. <?php endwhile; ?>
  18.  
  19. <?php clearly_content_nav( 'nav-below' ); ?>
  20.  
  21. <?php else : ?>
  22.  
  23. <?php get_404(); ?>
  24.  
  25. <?php endif; ?>
  26.  
  27. </div>
  28.  
  29.  
  30. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement