暫無描述

comments-single.php 689B

12345678910111213141516
  1. <?php if ( ! defined( 'ABSPATH' ) ) exit;
  2. $comment_title = apply_filters( 'um_user_profile_comment_title', get_the_title( $comment->comment_post_ID ), $comment );
  3. $link = apply_filters( 'um_user_profile_comment_url', get_permalink( $comment->comment_post_ID ), $comment ); ?>
  4. <div class="um-item">
  5. <div class="um-item-link">
  6. <i class="um-icon-chatboxes"></i>
  7. <a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>">
  8. <?php echo get_comment_excerpt( $comment->comment_ID ); ?>
  9. </a>
  10. </div>
  11. <div class="um-item-meta">
  12. <span><?php printf( __( 'On <a href="%1$s">%2$s</a>','ultimate-member' ), $link, $comment_title ); ?></span>
  13. </div>
  14. </div>