Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php if ( have_posts() ) : while ( have_posts() ) : the_post();
- ?>
- <div class="post">
- <div class="single_title">
- <?php the_title(); ?><br />
- <span class="numComments"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span>
- <br />
- </div>
- <?php if ( function_exists('has_post_thumbnail') && has_post_thumbnail($post->ID) ){
- ?>
- <div class="single_figure">
- <?php the_post_thumbnail(full);
- ?>
- </div> <!--/figure-->
- <?php } ?>
- <div class="single_post">
- <?php the_content(); ?><br />
- </div><!--/post_content-->
- <br /><br />
- </div><!--/post-->
- <?php endwhile; else: ?>
- <p>Sorry, no posts matched your criteria.</p>
- <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement