get_the_guid, $post->guid, $post->ID

get_the_guid, $post->guid, $post->ID

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: gutenberg.23.6.2

apply_filters('get_the_guid, $post->guid, $post->ID') is found 1 times:

  • /lib/compat/wordpress-7.0/class-gutenberg-rest-revisions-controller.php line 82
    			$data['guid'] = array();
    		}
    		if ( rest_is_field_included( 'guid.rendered', $fields ) ) {
    			/** This filter is documented in wp-includes/post-template.php */
    			$data['guid']['rendered'] = apply_filters( 'get_the_guid', $post->guid, $post->ID );
    		}
    		if ( rest_is_field_included( 'guid.raw', $fields ) ) {
    			$data['guid']['raw'] = $post->guid;
    		}
    
    		if ( rest_is_field_included( 'title', $fields ) ) {