Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2012
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.12 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="content">
  4.     <div id="leftcolumn">
  5.         <div id="currentbrowsing">
  6.                 <h1>Results for</h1>
  7.                 <h2>
  8.                         <?php the_search_query(); ?>
  9.                 </h2>
  10.         </div>
  11.         <?php if (have_posts()) : ?>
  12.         <?php while (have_posts()) : the_post(); ?>
  13.         <div id="archive-post">
  14.                 <div class="edit">
  15.                         <li class="time">
  16.                                 <?php the_time('j') ?>
  17.                                 <?php the_time(' F ') ?>
  18.                                 <br>
  19.                                 <?php the_category(', ') ?>
  20.                         </li>
  21.                         <li>
  22.                                 <h1> <a  href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
  23.                                         <?php the_title(); ?>
  24.                                         </a></h1>
  25.                         </li>
  26.                         <div class="commenticon2"><a>
  27.                                 <?php comments_popup_link('0 ', '1 ', '% '); ?>
  28.                                 </a> </div>
  29.                 </div>
  30.                 <div id="second-post-title">
  31.             <div id="archive-post-thumb" >
  32.                         <a  href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
  33.                         <?php the_post_thumbnail( 'thumbnail' ); ?>
  34.             </a></div>
  35.                         <p>
  36.                                 <?php wpe_excerpt('wpe_excerptlength_index', 'wpe_excerptmore'); ?>
  37.                         </p>
  38.                 </div>
  39.         </div>
  40.         <div id="contentblock"></div>
  41.         <?php endwhile; ?>
  42.         <?php else : ?>
  43.         <p>No matching criteria. Please try a different search, or maybe browse through our most recent posts in the footer.</p>
  44.         <?php endif; ?>
  45.         <div id="pagenavi">
  46.                 <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
  47.         </div>
  48.     </div>
  49.     <?php get_sidebar(); ?>
  50. </div>
  51. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement