Skip to content

Instantly share code, notes, and snippets.

@aarifhsn
Created November 5, 2014 15:58
Show Gist options
  • Save aarifhsn/c98660c556227b483f53 to your computer and use it in GitHub Desktop.
Save aarifhsn/c98660c556227b483f53 to your computer and use it in GitHub Desktop.
<div class="your-class">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="your-single-class">
<?php the_post_thumbnail('your-image-size'); ?>
<h3><a href='<?php the_permalink() ?>'><?php the_title(); ?></a></h3>
<div class="date_comments">
<?php the_time(get_option('date_format')); ?>
<?php comments_number( '0', '1', '%' ); ?>
</div>
</div>
<?php endwhile; endif; ?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment