Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2013
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.64 KB | None | 0 0
  1. <?php include($_SERVER["DOCUMENT_ROOT"] . "/wp-blog-header.php"); ?>
  2.  
  3. <div id="content" <?php cyberchimps_filter_content_class(); ?>>
  4.  
  5.            
  6.  
  7.             <?php do_action( 'cyberchimps_before_content'); ?>
  8.  
  9.            
  10.  
  11.             <?php if ( have_posts() ) : ?>
  12.  
  13.                
  14.  
  15.                 <?php while ( have_posts() ) : the_post(); ?>
  16.  
  17.                     <?php get_template_part( 'content', get_post_format() ); ?>
  18.  
  19.                    
  20.  
  21.                    
  22.  
  23.                 <?php endwhile; ?>
  24.  
  25. <?php elseif ( current_user_can( 'edit_posts' ) ) : ?>
  26.  
  27.                 <?php get_template_part( 'no-results', '/wp-content/themes/ifeature/index.php' ); ?>
  28.  
  29.             <?php endif; ?>
  30.  
  31.            
  32.  
  33.             <?php do_action( 'cyberchimps_after_content'); ?>
  34. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement