Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: comment_text

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
1079           }
1080
1081           if ( in_array( 'date_gmt', $fields, true ) ) {
1082                $data['date_gmt'] = mysql_to_rfc3339( $comment->comment_date_gmt );
1083           }
1084
1085           if ( in_array( 'content', $fields, true ) ) {
1086                $data['content'] = array(
1087                     /** This filter is documented in wp-includes/comment-template.php */
1088                     'rendered' => apply_filters( 'comment_text', $comment->comment_content, $comment ),
1089                     'raw'      => $comment->comment_content,
1090                );
1091           }
1092
1093           if ( in_array( 'link', $fields, true ) ) {
1094                $data['link'] = get_comment_link( $comment );
1095           }
1096
1097           if ( in_array( 'status', $fields, true ) ) {