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
1541
1542           if ( rest_is_field_included( 'content', $fields ) ) {
1543                $data['content'] = array();
1544           }
1545           if ( rest_is_field_included( 'content.raw', $fields ) ) {
1546                $data['content']['raw'] = $post->post_content;
1547           }
1548           if ( rest_is_field_included( 'content.rendered', $fields ) ) {
1549                /** This filter is documented in wp-includes/post-template.php */
1550                $data['content']['rendered'] = post_password_required( $post ) ? '' : apply_filters( 'the_content', $post->post_content );
1551           }
1552           if ( rest_is_field_included( 'content.protected', $fields ) ) {
1553                $data['content']['protected'] = (bool) $post->post_password;
1554           }
1555           if ( rest_is_field_included( 'content.block_version', $fields ) ) {
1556                $data['content']['block_version'] = block_version( $post->post_content );
1557           }
1558
1559           if ( rest_is_field_included( 'excerpt', $fields ) ) {