Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: get_comment

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
122      } else {
123           if ( isset($GLOBALS['comment']) && ($GLOBALS['comment']->comment_ID == $comment) ) {
124                $_comment = & $GLOBALS['comment'];
125           } elseif ( ! $_comment = wp_cache_get($comment, 'comment') ) {
126                $_comment = $wpdb->get_row($wpdb->prepare("SELECT * FROM $wpdb->comments WHERE comment_ID = %d LIMIT 1", $comment));
127                wp_cache_add($_comment->comment_ID, $_comment, 'comment');
128           }
129      }
130
131      $_comment = apply_filters('get_comment', $_comment);
132
133      if ( $output == OBJECT ) {
134           return $_comment;
135      } elseif ( $output == ARRAY_A ) {
136           return get_object_vars($_comment);
137      } elseif ( $output == ARRAY_N ) {
138           return array_values(get_object_vars($_comment));
139      } else {
140           return $_comment;