Advertisement
Guest User

single2

a guest
Nov 29th, 2012
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. get_header();
  3. if (have_posts()) {
  4.  
  5.     while (have_posts()) : the_post();
  6.         easel_display_post();
  7.         RBL_UI();
  8.     endwhile;
  9.    
  10. } else { ?>
  11.  
  12.     <div <?php post_class(); ?>>
  13.         <div class="post-head"></div>
  14.         <div class="post">
  15.             <p><?php _e('Sorry, post is not found.','easel'); ?></p>
  16.             <div class="clear"></div>
  17.         </div>
  18.         <div class="post-foot"></div>
  19.     </div>
  20.     <?php
  21. }
  22. get_footer();
  23. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement