Advertisement
pattyayers

search.php template file

Jul 2nd, 2012
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.57 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="wrap">
  4.  
  5. <div id="content">
  6.  
  7.     <div id="contentleft">
  8.    
  9.         <?php include(TEMPLATEPATH."/breadcrumb.php");?>
  10.        
  11.         <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  12.                
  13.         <div <?php post_class(); ?>>
  14.                    
  15.             <h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1>
  16.            
  17.                 <div class="postauthor">
  18.                     <p><?php _e("Posted by", 'studiopress'); ?> <?php the_author_posts_link(); ?> <?php _e("on", 'studiopress'); ?> <?php the_time('F j, Y'); ?> &middot; <a href="<?php the_permalink(); ?>#comments"><?php comments_number(__('Leave a Comment', 'studiopress'), __('1 Comment', 'studiopress'), __('% Comments', 'studiopress')); ?></a>&nbsp;<?php edit_post_link(__('(Edit)', 'studiopress'), '', ''); ?></p>
  19.                 </div>
  20.  
  21.                 <?php the_content(__('Read more', 'studiopress'));?><div class="clear"></div>
  22.            
  23.             <div class="postmeta">
  24.                 <p><?php _e("Filed under", 'studiopress'); ?> <?php the_category(', ') ?> &middot; <?php _e("Tagged with", 'studiopress'); ?> <?php the_tags('') ?></p>
  25.             </div>
  26.            
  27.         </div>
  28.                    
  29.         <?php endwhile; else: ?>
  30.         <p><?php _e('Sorry, no posts matched your criteria.', 'studiopress'); ?></p><?php endif; ?>
  31.        
  32.         <div class="navlink">
  33.             <p><?php posts_nav_link(' &#8212; ', __('&laquo; Previous Page', 'studiopress'), __('Next Page &raquo;', 'studiopress')); ?></p>
  34.         </div>
  35.            
  36.     </div>
  37.            
  38. <?php get_sidebar(); ?>
  39.  
  40. </div>
  41.  
  42. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement