2018-12-05 10:50:08 +02:00
|
|
|
<?php if ( ! defined( 'ABSPATH' ) ) exit;
|
2018-10-29 17:18:43 +02:00
|
|
|
|
2019-10-17 18:05:44 +03:00
|
|
|
$comment_title = apply_filters( 'um_user_profile_comment_title', get_the_title( $comment->comment_post_ID ), $comment );
|
|
|
|
|
$link = apply_filters( 'um_user_profile_comment_url', get_permalink( $comment->comment_post_ID ), $comment ); ?>
|
2018-10-29 17:18:43 +02:00
|
|
|
|
2019-10-17 18:05:44 +03:00
|
|
|
<div class="um-item">
|
|
|
|
|
<div class="um-item-link">
|
|
|
|
|
<i class="um-icon-chatboxes"></i>
|
|
|
|
|
<a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>">
|
|
|
|
|
<?php echo get_comment_excerpt( $comment->comment_ID ); ?>
|
2018-12-05 10:50:08 +02:00
|
|
|
</a>
|
|
|
|
|
</div>
|
2019-10-17 18:05:44 +03:00
|
|
|
<div class="um-item-meta">
|
|
|
|
|
<span><?php printf( __( 'On <a href="%1$s">%2$s</a>','ultimate-member' ), $link, $comment_title ); ?></span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|