Advertisement
Guest User

Untitled

a guest
May 17th, 2011
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.45 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3.     <!-- BEGIN content -->
  4.     <div id="main-content" class="">
  5.  
  6.         <div id="content">
  7.  
  8.       <?php include("featured.php"); ?>
  9.  
  10.             <div class="cutting_line"></div>
  11.             <?php
  12.             if (have_posts()) : $side = 'r';
  13.         while (have_posts()) : the_post();
  14.           $arc_year = get_the_time('Y');
  15.           $arc_month = get_the_time('m');
  16.           $arc_day = get_the_time('d');
  17.           $side = ($side=='r') ? 'l' : 'r';
  18.             ?>
  19.           <div class="<?php echo $side; ?>">
  20.             <!-- begin post -->
  21.             <div class="post">
  22.             <h3><a>"><?php the_title(); ?></a></h3>
  23.             <?php dp_attachment_image(0, 'thumbnail', 'alt="' . $post->post_title . '"'); ?>
  24.             <p><?php ob_start(); the_excerpt(); echo dp_clean(ob_get_clean(), 350); ?>...</p>
  25.             <div class="break"></div>
  26.             </div>
  27.             <!-- end post -->
  28.           </div>
  29.             <?php endwhile;?>
  30.  
  31.         <div class="break"></div>
  32.         <!-- begin post navigation -->
  33.           <div class="postnav">
  34.           <?php if(function_exists('wp_page_numbers')) { wp_page_numbers(); } ?>
  35.           </div>
  36.         <!-- end post navigation -->
  37.             <?php else : ?>
  38.         <div class="notfound">
  39.           <h2>Not Found</h2>
  40.           <p>Sorry, but you are looking for something that is not here.</p>
  41.         </div>
  42.             <?php endif; ?>
  43.  
  44.         </div>
  45.  
  46.     <?php get_sidebar(); ?>
  47.  
  48.     </div>
  49.  
  50. <!-- END content -->
  51.  
  52. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement