Index: wp-includes/post-template.php
===================================================================
--- wp-includes/post-template.php	(revision 18623)
+++ wp-includes/post-template.php	(working copy)
@@ -229,6 +229,20 @@
 }
 
 /**
+ * Display any post extras.
+ *
+ * @since 3.3.0
+ *
+ * @param int|object $post Post ID or post object.
+ */
+function the_rest( $post = 0 ) {
+	$post = &get_post( $post );
+
+    // Execute the rest of a posts content
+    do_action( 'the_rest', $post );
+}
+
+/**
  * Preview fix for javascript bug with foreign languages
  *
  * @since 3.1.0

