Skip to content

Instantly share code, notes, and snippets.

@lilithlavender
Created November 18, 2014 22:13
Show Gist options
  • Select an option

  • Save lilithlavender/c0cd9a09841d8b826c74 to your computer and use it in GitHub Desktop.

Select an option

Save lilithlavender/c0cd9a09841d8b826c74 to your computer and use it in GitHub Desktop.
<?php if($comments) : ?>
<?php foreach($comments as $comment) : ?>
<div class="row">
<div class="col-md-2">
<img src="<?php bloginfo('template_directory'); ?>/images/placeholder.png" alt="" class="img-circle comment-author-img">
</div> <!-- end col-md-2 -->
<div class="col-md-10">
<div class="post-comment">
<p class="comment-info"><strong><?php comment_author(); ?></strong> / <span class="comment-time"><?php comment_date('M j'); ?> at <?php comment_time('G:i'); ?></span> / <a href="#">Reply</a></p>
<p><?php comment_text(); ?></p>
</div> <!-- end post-comment -->
</div> <!-- end col-md-10 -->
</div>
<?php endforeach; ?>
<p>No comments</p>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment