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