Guest User

Untitled

a guest
Jun 24th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="content" class="col-full">
  4. <div id="main" class="col-left">
  5.  
  6. <?php if ( $woo_options[ 'woo_breadcrumbs_show' ] == 'true' ) { ?>
  7. <?php woo_breadcrumbs(); ?>
  8. <?php } ?>
  9.  
  10. <?php if (have_posts()) : $count = 0; ?>
  11.  
  12. <span class="archive_header"><?php _e( 'Search results:', 'woothemes' ) ?> <?php the_search_query();?></span>
  13.  
  14. <?php while (have_posts()) : the_post(); $count++; ?>
  15.  
  16. <!-- Post Starts -->
  17. <div <?php post_class(); ?>>
  18.  
  19. <?php if ( $woo_options[ 'woo_post_content' ] != "content" ) woo_image( 'width='.$woo_options[ 'woo_thumb_w' ].'&height='.$woo_options[ 'woo_thumb_h' ].'&class=thumbnail '.$woo_options[ 'woo_thumb_align' ]); ?>
  20.  
  21. <h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
  22.  
  23. <?php woo_post_meta(); ?>
  24.  
  25. <div class="entry">
  26. <?php the_excerpt(); ?>
  27. </div><!-- /.entry -->
  28.  
  29. </div><!-- /.post -->
  30.  
  31. <?php endwhile; else: ?>
  32.  
  33. <div <?php post_class(); ?>>
  34. <p><?php _e( 'Sorry, no posts matched your criteria.', 'woothemes' ) ?></p>
  35. </div><!-- /.post -->
  36.  
  37. <?php endif; ?>
  38.  
  39. <?php woo_pagenav(); ?>
  40.  
  41. </div><!-- /#main -->
  42.  
  43. <?php get_sidebar(); ?>
  44.  
  45. </div><!-- /#content -->
  46.  
  47. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment