| Server IP : 170.10.161.225 / Your IP : 216.73.217.54 Web Server : Apache System : Linux vps103298.mylogin.co 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : calvet ( 273824) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : ON Directory : /home/www/calvetrealty.com/wp-content/plugins/ultimate-member/templates/profile/ |
Upload File : |
<?php
/**
* Template for the profile single comments
*
* This template can be overridden by copying it to yourtheme/ultimate-member/profile/comments-single.php
*
* Page: "Profile"
*
* @version 2.6.1
*
* @var object $comment
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
$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 ); ?>
<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 ); ?>
</a>
</div>
<div class="um-item-meta">
<span>
<?php
// translators: %1$s is a link; %2$s is a title.
printf( __( 'On <a href="%1$s">%2$s</a>','ultimate-member' ), $link, $comment_title );
?>
</span>
</div>
</div>