Advertisement
Guest User

Untitled

a guest
Dec 1st, 2015
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. <?php
  2. // Example Comment Repeater Template
  3. ?>
  4. <li <?php comment_class(); ?> id="comment-<?php comment_ID(); ?>">
  5. <div id="comment-<?php comment_ID(); ?>" class="comment">
  6. <div class="comment-meta comment-author vcard">
  7. <?php echo get_avatar( $comment, 120 ); ?>
  8. <h3>
  9. <a href="<?php comment_author_url(); ?>">
  10. <?php comment_author(); ?>
  11. </a>
  12. </h3>
  13. <p class="comment-date"><?php comment_date(); ?> @ <?php echo comment_time(); ?></p>
  14. </div>
  15. <div class="comment-content post-content">
  16. <?php comment_text(); ?>
  17. <div class="comment-actions">
  18. <?php edit_comment_link( __( 'Edit' ), '', '' ); ?>
  19. <?php comment_reply_link( array_merge( $args, array( 'reply_text' => __( 'Reply'), 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
  20. </div>
  21. </div>
  22. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement