Index: wp-includes/post-functions.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- wp-includes/post-functions.php	(revision 35119)
+++ wp-includes/post-functions.php	(revision )
@@ -443,6 +443,18 @@
 		$_post = WP_Post::get_instance( $post );
 	}
 
+	/**
+	 * Filter that allows a post object to be further sanitized, virtualized and/or have properties annotated.
+	 *
+	 * @since 4.4.0
+	 *
+	 * @param WP_Post $_post    Post object to saitize/virtualize/annotate/etc.
+	 * @param WP_Post $post     Original post object passed in.
+	 * @param string  $output   Format of data to return, potentially 'OBJECT', 'ARRAY_A' or 'ARRAY_N'.
+	 * @param string  $filter   Type of filter to apply, potentially 'raw', 'edit', 'db' or 'display'.
+	 */
+	$_post = apply_filters( 'get_post', $_post, $post, $output, $filter );
+
 	if ( ! $_post )
 		return null;
 
