Index: wp-content/themes/twentyeleven/content-single.php
===================================================================
--- wp-content/themes/twentyeleven/content-single.php	(revision 18623)
+++ wp-content/themes/twentyeleven/content-single.php	(working copy)
@@ -49,6 +49,7 @@
 				esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) )
 			);
 		?>
+		<?php the_rest(); ?>
 		<?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
 
 		<?php if ( get_the_author_meta( 'description' ) && is_multi_author() ) : // If a user has filled out their description and this is a multi-author blog, show a bio on their entries ?>
Index: wp-content/themes/twentyeleven/functions.php
===================================================================
--- wp-content/themes/twentyeleven/functions.php	(revision 18623)
+++ wp-content/themes/twentyeleven/functions.php	(working copy)
@@ -103,6 +103,9 @@
 	// Add support for a variety of post formats
 	add_theme_support( 'post-formats', array( 'aside', 'link', 'gallery', 'status', 'quote', 'image' ) );
 
+	// We use the_rest()
+	add_theme_support( 'the-rest' );
+
 	// Add support for custom backgrounds
 	add_custom_background();
 
@@ -590,4 +593,3 @@
 	return $classes;
 }
 add_filter( 'body_class', 'twentyeleven_body_classes' );
-

