Tagged: ,

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #366542

    Hello,

    I’m using the comments widget in teh sidebar of my blog, and I noticed that a commenter’s name is linked, but the link goes nowhere. I’d like to remove that link, if possible, and just keep the link to the blog post, which comes right afterwards. Can you help? Thanks!

    #366849

    Hey 1lizcollins!

    Try adding this to the bottom of your functions.php file.

    add_filter( 'get_comment_author_link', 'enfold_customization_nocommenturl' );
    function enfold_customization_nocommenturl ( $c ) {
    	global $comment, $post;
    	return get_comment_author( get_comment_ID() );
    }

    Regards,
    Elliott

    #367131

    Perfect, thank you very much!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Comments widget link goes nowhere’ is closed to new replies.