Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: get_comment_type

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
466  *
467  * @return string The comment type
468  */
469 function get_comment_type() {
470      global $comment;
471
472      if ( '' == $comment->comment_type )
473           $comment->comment_type = 'comment';
474
475      return apply_filters('get_comment_type', $comment->comment_type);
476 }
477
478 /**
479  * Display the comment type of the current comment.
480  *
481  * @since 0.71
482  *
483  * @param string $commenttxt The string to display for comment type
484  * @param string $trackbacktxt The string to display for trackback type