Guest User

Untitled

a guest
Nov 24th, 2017
66
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 ( function_exists('yoast_breadcrumb') ) { yoast_breadcrumb('<div id="breadcrumb"><p>','</p></div>'); } ?>
  7. <?php if (have_posts()) : $count = 0; ?>
  8.  
  9. <span class="archive_header"><?php _e('Search results:', 'woothemes') ?> <?php printf(the_search_query());?></span>
  10.  
  11. <?php while (have_posts()) : the_post(); $count++; ?>
  12.  
  13. <!-- Post Starts -->
  14. <div class="post">
  15.  
  16. <?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']); ?>
  17.  
  18. <h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
  19.  
  20. <?php woo_post_meta(); ?>
  21.  
  22. <div class="entry">
  23. <?php the_excerpt(); ?>
  24. </div><!-- /.entry -->
  25.  
  26. </div><!-- /.post -->
  27.  
  28. <?php endwhile; else: ?>
  29.  
  30. <div class="post">
  31. <p><?php _e('Sorry, no posts matched your criteria.', 'woothemes') ?></p>
  32. </div><!-- /.post -->
  33.  
  34. <?php endif; ?>
  35.  
  36. <?php woo_pagenav(); ?>
  37.  
  38. </div><!-- /#main -->
  39.  
  40. <?php get_sidebar(); ?>
  41.  
  42. </div><!-- /#content -->
  43.  
  44. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment