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
1018       * Filter the returned comment type.
1019       *
1020       * @since 1.5.0
1021       * @since 4.1.0 The `$comment_ID` and `$comment` parameters were added.
1022       *
1023       * @param string     $comment_type The type of comment, such as 'comment', 'pingback', or 'trackback'.
1024       * @param int           $comment_ID   The comment ID.
1025       * @param WP_Comment $comment      The comment object.
1026       */
1027      return apply_filters( 'get_comment_type', $comment->comment_type, $comment->comment_ID, $comment );
1028 }
1029
1030 /**
1031  * Display the comment type of the current comment.
1032  *
1033  * @since 0.71
1034  *
1035  * @param string $commenttxt   Optional. String to display for comment type. Default false.
1036  * @param string $trackbacktxt Optional. String to display for trackback type. Default false.