Definition:
function comment_author_rss() {}
Source code
function comment_author_rss() {
echo get_comment_author_rss();
}
671
Definition:
function comment_author_rss() {}
function comment_author_rss() {
echo get_comment_author_rss();
}
671
Definition:
function comment_author_link( $comment_ID = 0 ) {}
function comment_author_link( $comment_ID = 0 ) {
echo get_comment_author_link( $comment_ID );
}
669
Definition:
function comment_author_IP( $comment_ID = 0 ) {}
function comment_author_IP( $comment_ID = 0 ) {
echo get_comment_author_IP( $comment_ID );
}
667
Definition:
function comment_author_email_link($linktext='', $before='', $after='') {}
function comment_author_email_link($linktext='', $before='', $after='') {
if ( $link = get_comment_author_email_link( $linktext, $before, $after ) )
echo $link;
}
665
comment_author_url
Definition:
function comment_author_url( $comment_ID = 0 ) {}
Parameters
Defined filters
apply_filters('comment_url', get_comment_author_url( $comment_ID )Source code
function comment_author_url( $comment_ID = 0 ) { echo apply_filters('comment_url', get_comment_author_url( $comment_ID )); }673