I am trying to find a way to link the ‘username’ in comments from registered and logged in users to their profile pages instead of their website URL. And comments from unregistered users to their website URL as usual.
Is this possible? My wordpress version is 3.5.1 and I am using the default theme Twenty Twelve.
Here’s the code to the function ‘twentytwelve_comment’:
<li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>">
<article id="comment-<?php comment_ID(); ?>" class="comment">
<header class="comment-meta comment-author vcard">
<?php
echo get_avatar( $comment, 44 );
printf( '<cite class="fn">%1$s %2$s</cite>',
get_comment_author_link(),
// If current post author is also comment author, make it known visually.
( $comment->user_id === $post->post_author ) ? '<span> ' . __( 'Post author', 'twentytwelve' ) . '</span>' : ''
);
printf( '<a href="%1$s"><time datetime="%2$s">%3$s</time></a>',
esc_url( get_comment_link( $comment->comment_ID ) ),
get_comment_time( 'c' ),
/* translators: 1: date, 2: time */
sprintf( __( '%1$s at %2$s', 'twentytwelve' ), get_comment_date(), get_comment_time() )
);
?>
</header><!-- .comment-meta -->
<?php if ( '0' == $comment->comment_approved ) : ?>
<p class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.', 'twentytwelve' ); ?></p>
<?php endif; ?>
<section class="comment-content comment">
<?php comment_text(); ?>
<?php edit_comment_link( __( 'Edit', 'twentytwelve' ), '<p class="edit-link">', '</p>' ); ?>
</section><!-- .comment-content -->
<div class="reply">
<?php comment_reply_link( array_merge( $args, array( 'reply_text' => __( 'Reply', 'twentytwelve' ), 'after' => ' <span>↓</span>', 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
</div><!-- .reply -->
</article><!-- #comment-## -->
<?php
break;
endswitch; // end comment_type check
}
endif;
I have written a solution for that some time ago:
If the users are already logged in, then simply pointing to the admin page would have them see their profile. The link can point them to:
User profile page:
http://yoursite.com/wp-admin/profile.php
You would need to edit your comments template to check if the user is logged in (if I’m not mistaken the comments template already check for that, depending if the theme was well coded). If not you can use:
You can get the comments author’s link with:
Guided mostly by s_ha_dum’s comment, here’s how you can generate a link to author’s archive page (where all posts by that author are listed). You need to put the code inside functions.php‘s
twentytwelve_comment
function, where$comment
object is available.As for
comment_author_link
, it will get you a link to a URL author may have provided in their profile information. If they did not then it will just return the author’s name.