Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: get_comment_author_link

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
166 function get_comment_author_link() {
167      global $comment;
168      $url    = get_comment_author_url();
169      $author = get_comment_author();
170
171      if ( empty( $url ) )
172           $return = $author;
173      else
174           $return = "<a href='$url' rel='external nofollow'>$author</a>";
175      return apply_filters('get_comment_author_link', $return);
176 }
177
178 function comment_author_link() {
179      echo get_comment_author_link();
180 }
181
182 function get_comment_type() {
183      global $comment;
184