-
-
Save lilithlavender/c0cd9a09841d8b826c74 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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