comment_author_url_link

Definition:
function comment_author_url_link( $linktext = '', $before = '', $after = '' ) {}

Displays the HTML link of the url of the author of the current comment.

Parameters

  • string $linktext: The text to display instead of the comment author’s email address
  • string $before: The text or HTML to display before the email link.
  • string $after: The text or HTML to display after the email link.

Source code

function comment_author_url_link( $linktext = '', $before = '', $after = '' ) {

	echo get_comment_author_url_link( $linktext, $before, $after );

}

675

No comments yet... Be the first to leave a reply!

Leave a comment