Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: the_content

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
320                     'rendered' => get_the_title( $post->ID ),
321                );
322           }
323
324           if ( ! empty( $schema['properties']['content'] ) ) {
325
326                $data['content'] = array(
327                     'raw'      => $post->post_content,
328                     /** This filter is documented in wp-includes/post-template.php */
329                     'rendered' => apply_filters( 'the_content', $post->post_content ),
330                );
331           }
332
333           if ( ! empty( $schema['properties']['excerpt'] ) ) {
334                $data['excerpt'] = array(
335                     'raw'      => $post->post_excerpt,
336                     'rendered' => $this->prepare_excerpt_response( $post->post_excerpt, $post ),
337                );
338           }