Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: get_the_guid

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
1727                } else {
1728                     $post_date_gmt = $post->post_date_gmt;
1729                }
1730                $data['date_gmt'] = $this->prepare_date_response( $post_date_gmt );
1731           }
1732
1733           if ( rest_is_field_included( 'guid', $fields ) ) {
1734                $data['guid'] = array(
1735                     /** This filter is documented in wp-includes/post-template.php */
1736                     'rendered' => apply_filters( 'get_the_guid', $post->guid, $post->ID ),
1737                     'raw'      => $post->guid,
1738                );
1739           }
1740
1741           if ( rest_is_field_included( 'modified', $fields ) ) {
1742                $data['modified'] = $this->prepare_date_response( $post->post_modified_gmt, $post->post_modified );
1743           }
1744
1745           if ( rest_is_field_included( 'modified_gmt', $fields ) ) {