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
659  *
660  * @param int $comment_ID The ID of the comment for which to get the type. Optional.
661  * @return string The comment type
662  */
663 function get_comment_type( $comment_ID = 0 ) {
664      $comment = get_comment( $comment_ID );
665      if ( '' == $comment->comment_type )
666           $comment->comment_type = 'comment';
667
668      return apply_filters('get_comment_type', $comment->comment_type);
669 }
670
671 /**
672  * Display the comment type of the current comment.
673  *
674  * @since 0.71
675  *
676  * @param string $commenttxt The string to display for comment type
677  * @param string $trackbacktxt The string to display for trackback type