Index: wp-content/themes/twentyten/loop-attachment.php
===================================================================
--- wp-content/themes/twentyten/loop-attachment.php	(revision 21425)
+++ wp-content/themes/twentyten/loop-attachment.php	(working copy)
@@ -110,6 +110,7 @@
 						<?php twentyten_posted_in(); ?>
 						<?php edit_post_link( __( 'Edit', 'twentyten' ), ' <span class="edit-link">', '</span>' ); ?>
 					</div><!-- .entry-utility -->
+					<?php do_action( 'post_after' ); ?>
 				</div><!-- #post-## -->
 
 <?php comments_template(); ?>
Index: wp-content/themes/twentyten/search.php
===================================================================
--- wp-content/themes/twentyten/search.php	(revision 21425)
+++ wp-content/themes/twentyten/search.php	(working copy)
@@ -28,6 +28,7 @@
 						<p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'twentyten' ); ?></p>
 						<?php get_search_form(); ?>
 					</div><!-- .entry-content -->
+					<?php do_action( 'post_after' ); ?>
 				</div><!-- #post-0 -->
 <?php endif; ?>
 			</div><!-- #content -->
Index: wp-content/themes/twentyten/404.php
===================================================================
--- wp-content/themes/twentyten/404.php	(revision 21425)
+++ wp-content/themes/twentyten/404.php	(working copy)
@@ -18,6 +18,7 @@
 					<p><?php _e( 'Apologies, but the page you requested could not be found. Perhaps searching will help.', 'twentyten' ); ?></p>
 					<?php get_search_form(); ?>
 				</div><!-- .entry-content -->
+				<?php do_action( 'post_after' ); ?>
 			</div><!-- #post-0 -->
 
 		</div><!-- #content -->
Index: wp-content/themes/twentyten/functions.php
===================================================================
--- wp-content/themes/twentyten/functions.php	(revision 21425)
+++ wp-content/themes/twentyten/functions.php	(working copy)
@@ -351,6 +351,7 @@
 		<div class="reply">
 			<?php comment_reply_link( array_merge( $args, array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
 		</div><!-- .reply -->
+		<?php do_action( 'comment_after' ); ?>
 	</div><!-- #comment-##  -->
 
 	<?php
Index: wp-content/themes/twentyten/loop.php
===================================================================
--- wp-content/themes/twentyten/loop.php	(revision 21425)
+++ wp-content/themes/twentyten/loop.php	(working copy)
@@ -35,6 +35,7 @@
 			<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyten' ); ?></p>
 			<?php get_search_form(); ?>
 		</div><!-- .entry-content -->
+		<?php do_action( 'post_after' ); ?>
 	</div><!-- #post-0 -->
 <?php endif; ?>
 
@@ -99,6 +100,7 @@
 				<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
 				<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
 			</div><!-- .entry-utility -->
+			<?php do_action( 'post_after' ); ?>
 		</div><!-- #post-## -->
 
 <?php /* How to display posts of the Aside format. The asides category is the old way. */ ?>
@@ -122,6 +124,7 @@
 				<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
 				<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
 			</div><!-- .entry-utility -->
+			<?php do_action( 'post_after' ); ?>
 		</div><!-- #post-## -->
 
 <?php /* How to display all other posts. */ ?>
@@ -164,6 +167,7 @@
 				<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
 				<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
 			</div><!-- .entry-utility -->
+			<?php do_action( 'post_after' ); ?>
 		</div><!-- #post-## -->
 
 		<?php comments_template( '', true ); ?>
Index: wp-content/themes/twentyten/loop-page.php
===================================================================
--- wp-content/themes/twentyten/loop-page.php	(revision 21425)
+++ wp-content/themes/twentyten/loop-page.php	(working copy)
@@ -29,6 +29,7 @@
 						<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
 						<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
 					</div><!-- .entry-content -->
+					<?php do_action( 'post_after' ); ?>
 				</div><!-- #post-## -->
 
 				<?php comments_template( '', true ); ?>
Index: wp-content/themes/twentyten/header.php
===================================================================
--- wp-content/themes/twentyten/header.php	(revision 21425)
+++ wp-content/themes/twentyten/header.php	(working copy)
@@ -103,6 +103,7 @@
 				<?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?>
 			</div><!-- #access -->
 		</div><!-- #masthead -->
+		<?php do_action( 'header_after' ); ?>
 	</div><!-- #header -->
 
 	<div id="main">
Index: wp-content/themes/twentyten/loop-single.php
===================================================================
--- wp-content/themes/twentyten/loop-single.php	(revision 21425)
+++ wp-content/themes/twentyten/loop-single.php	(working copy)
@@ -55,6 +55,7 @@
 						<?php twentyten_posted_in(); ?>
 						<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
 					</div><!-- .entry-utility -->
+					<?php do_action( 'post_after' ); ?>
 				</div><!-- #post-## -->
 
 				<div id="nav-below" class="navigation">
