Status
Not open for further replies.
2 comments
changed in comment-template.php
Code:
function get_comment_author_link( $comment_ID = 0 ) {
    /** @todo Only call these functions when they are needed. Include in if... else blocks */
    $url    = get_comment_author_url( $comment_ID );
    $author = get_comment_author( $comment_ID );

    if ( empty( $url ) || 'http://' == $url )
        $return = $author;
    else
        [COLOR=Red]$return = "<a href='$url' rel='external nofollow' class='url'>$author</a>";[/COLOR]
    return apply_filters('get_comment_author_link', $return);
}
TO
Code:
function get_comment_author_link( $comment_ID = 0 ) {
    /** @todo Only call these functions when they are needed. Include in if... else blocks */
    $url    = get_comment_author_url( $comment_ID );
    $author = get_comment_author( $comment_ID );

    if ( empty( $url ) || 'http://' == $url )
        $return = $author;
    else
        [COLOR=Red]//$return = "<a href='$url' rel='external nofollow' class='url'>$author</a>";
        $return = $author;[/COLOR]
    return apply_filters('get_comment_author_link', $return);
}

Still not hide Comment URL in post comment. (hided in Recent Comments)
 
Status
Not open for further replies.
Back
Top