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
147                $_comment = & $GLOBALS['comment'];
148           } elseif ( ! $_comment = wp_cache_get($comment, 'comment') ) {
149                $_comment = $wpdb->get_row($wpdb->prepare("SELECT * FROM $wpdb->comments WHERE comment_ID = %d LIMIT 1", $comment));
150                if ( ! $_comment )
151                     return $null;
152                wp_cache_add($_comment->comment_ID, $_comment, 'comment');
153           }
154      }
155
156      $_comment = apply_filters('get_comment', $_comment);
157
158      if ( $output == OBJECT ) {
159           return $_comment;
160      } elseif ( $output == ARRAY_A ) {
161           $__comment = get_object_vars($_comment);
162           return $__comment;
163      } elseif ( $output == ARRAY_N ) {
164           $__comment = array_values(get_object_vars($_comment));
165           return $__comment;