Index: wp-content/themes/twentyten/author.php
===================================================================
--- wp-content/themes/twentyten/author.php	(revision 13142)
+++ wp-content/themes/twentyten/author.php	(working copy)
@@ -5,20 +5,8 @@
 
 <?php the_post(); ?>
 
-				<h1 class="page-title author"><?php printf( __( 'Author Archives: <span class="vcard">%s</span>', 'twentyten' ), "<a class='url fn n' href='$authordata->user_url' title='" . esc_attr(get_the_author()) . "' rel='me'>" . get_the_author() . "</a>" ); ?></h1>
+<?php twentyten_page_title(); ?>
 
-<?php if ( get_the_author_meta('description') ) : // If a user has filled out their decscription show a bio on their entries  ?>
-					<div id="entry-author-info">
-						<div id="author-avatar">
-							<?php echo get_avatar( get_the_author_meta('user_email'), apply_filters('twentyten_author_bio_avatar_size', 60) ); ?>
-						</div><!-- #author-avatar 	-->
-						<div id="author-description">
-							<h2><?php printf(__('About %s', 'twentyten'), get_the_author()); ?></h2>
-							<?php the_author_meta('description'); ?>
-						</div><!-- #author-description	-->
-					</div><!-- .entry-author-info -->
-<?php endif; ?>
-
 <?php rewind_posts(); ?>
 
 <?php include 'loop.php'; ?>
Index: wp-content/themes/twentyten/search.php
===================================================================
--- wp-content/themes/twentyten/search.php	(revision 13142)
+++ wp-content/themes/twentyten/search.php	(working copy)
@@ -4,7 +4,7 @@
 			<div id="content">
 
 <?php if ( have_posts() ) : ?>
-				<h1 class="page-title"><?php _e( 'Search Results for: ', 'twentyten' ); ?><span><?php the_search_query(); ?></span></h1>
+	<?php twentyten_page_title(); ?>
 	<?php include 'loop.php'; ?>
 <?php else : ?>
 				<div id="post-0" class="post no-results not-found">
Index: wp-content/themes/twentyten/functions.php
===================================================================
--- wp-content/themes/twentyten/functions.php	(revision 13142)
+++ wp-content/themes/twentyten/functions.php	(working copy)
@@ -65,7 +65,72 @@
 }
 add_filter( 'excerpt_more', 'twentyten_new_excerpt_more' );
 
+// Displays the page title
+function twentyten_page_title() {
+	$title = null;
+	$description = '';
+	
+	if ( is_tax() ) {
+		global $wp_query;
+		$term = $wp_query->get_queried_object();
+		$title = sprintf( __( 'Taxonomy Archives: <span>%s</span>', 'twentyten' ), esc_html($term->name) );
+		if ( $term->description ) {
+			$description = apply_filters( 'archive_meta', '<div class="archive-meta"><p>' . esc_html($term->description) . '</p></div>' );
+		}
+		
+	} elseif ( is_category() ) {
+		$title = sprintf( __( 'Category Archives: <span>%s</span>', 'twentyten' ), single_cat_title( '', false ) );
+		if ( category_description() ) {
+			$description = apply_filters( 'archive_meta', '<div class="archive-meta">' . category_description() . '</div>' );
+		}
+		
+	} elseif ( is_tag() ) {
+		$title = sprintf( __( 'Tag Archives: <span>%s</span>', 'twentyten' ), single_tag_title( '', false ) );
+		if ( tag_description() ) {
+			$description = apply_filters( 'archive_meta', '<div class="archive-meta">' . tag_description() . '</div>' );
+		}
+		
+	} elseif ( is_author() ) {
+		$title = sprintf( __( 'Author Archives: <span class="vcard">%s</span>', 'twentyten' ), '<a href="'. esc_attr(get_the_author_meta('user_url')) .'" title="'. esc_attr(get_the_author()) .'" rel="me">'. esc_html(get_the_author()) .'</a>' );
+		if ( get_the_author_meta( 'description' ) ) {
+			$description  = '<div id="entry-author-info">' . "\n" . '<div id="author-avatar">' . "\n";
+			$description .= get_avatar( get_the_author_meta('user_email'), apply_filters('twentyten_author_bio_avatar_size', 60) );
+			$description .= '</div><!-- #author-avatar -->' . "\n" . '<div id="author-description">' . "\n";
+			$description .= '<h2>'. sprintf( __( 'About %s', 'twentyten' ), get_the_author() ) .'</h2>';
+			$description .= get_the_author_meta( 'description' ) . '</div><!-- #author-description  -->' . "\n" . '</div><!-- .entry-author-info -->';
+		}
+		
+	} elseif ( is_search() ) {
+		$title = sprintf( __( 'Search Results for: <span>%s</span>', 'twentyten' ), esc_attr( apply_filters('the_search_query', get_search_query()) ) );
 
+	} elseif ( is_day() ) {
+		$title = sprintf( __( 'Daily Archives: <span>%s</span>', 'twentyten' ), get_the_time(get_option('date_format')) );
+	} elseif ( is_month() ) {
+		$title = sprintf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_time('F Y') );
+	} elseif ( is_year() ) {
+		$title = sprintf( __( 'Yearly Archives: <span>%s</span>', 'twentyten' ), get_the_time('Y') );
+	} elseif ( isset($_GET['paged']) && !empty($_GET['paged']) ) {
+		$title = __( 'Archives', 'twentyten' );
+	}
+	
+	echo apply_filters( 'twentyten_page_title', '<h1 class="page-title">'. $title .'</h1>' . $description );
+}
+
+// Displays the Newer Posts|Older Posts links
+function twentyten_page_links() {
+	global $wp_query;
+	$total_pages = $wp_query->max_num_pages;
+	$pagelinks = '';
+	
+	if ( $total_pages > 1 ) {
+		$pagelinks  = '<div id="nav-above" class="navigation">' . "\n";
+		$pagelinks .= '<div class="nav-previous">' . get_next_posts_link(__( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' )) . "</div>\n";
+		$pagelinks .= '<div class="nav-next">' . get_previous_posts_page_link(__( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyten' )) . "</div>\n";
+		$pagelinks .= '</div><!-- #nav-above -->' . "\n";
+	}
+	echo apply_filters( 'twentyten_page_links', $pagelinks );
+}
+
 // Template for comments and pingbacks
 function twentyten_list_comment( $comment, $args, $depth ) {
 	$GLOBALS['comment'] = $comment; ?>
@@ -222,4 +287,4 @@
 } // end theme_widgets_init
 
 // Add all the groovy widget areas
-add_action( 'init', 'twentyten_widgets_init' );
+add_action( 'init', 'twentyten_widgets_init' );
\ No newline at end of file
Index: wp-content/themes/twentyten/loop.php
===================================================================
--- wp-content/themes/twentyten/loop.php	(revision 13142)
+++ wp-content/themes/twentyten/loop.php	(working copy)
@@ -1,107 +1,97 @@
-<?php if ( $wp_query->max_num_pages > 1 ) { ?>
-	<div id="nav-above" class="navigation">
-		<div class="nav-previous"><?php next_posts_link(__( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' )); ?></div>
-		<div class="nav-next"><?php previous_posts_link(__( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyten' )); ?></div>
-	</div><!-- #nav-above -->
-<?php } ?>
-
-<?php while ( have_posts() ) : the_post(); ?>
-<?php if ( in_category( 'Gallery' ) ) { ?>
-	<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-		<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
-
-		<div class="entry-meta">
-			<span class="meta-prep meta-prep-author"><?php _e( 'Posted on ', 'twentyten' ); ?></span>
-			<a href="<?php the_permalink(); ?>" title="<?php the_time(); ?>" rel="bookmark"><span class="entry-date"><?php echo get_the_date(); ?></span></a>
-			<span class="meta-sep"> <?php _e( 'by ', 'twentyten' ); ?> </span>
-			<span class="author vcard"><a class="url fn n" href="<?php echo get_author_posts_url( $authordata->ID ); ?>" title="<?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ); ?>"><?php the_author(); ?></a></span>
-		</div><!-- .entry-meta -->
-
-		<div class="entry-content">
-			<div class="gallery-thumb">
-				<a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php
-				$images =& get_children( array('post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999) );
-				$total_images = count($images);
-				$image = array_shift($images);
-				echo wp_get_attachment_image( $image->ID, 'thumbnail' );
-				?></a>
-			</div>
-			<p><em><?php printf( __('This gallery contains <a %1$s>%2$s photos</a>.', 'twentyten'), 'href="' . get_permalink() . '" title="' . sprintf( esc_attr__('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ) . '" rel="bookmark"', $total_images ); ?></em></p>
-
-			<?php the_excerpt( '' ); ?>
-		</div><!-- .entry-content -->
-
-		<div class="entry-utility">
-			<?php
-				$category_id = get_cat_ID( 'Gallery' );
-				$category_link = get_category_link( $category_id );
-			?>
-			<a href="<?php echo $category_link; ?>" title="<?php esc_attr_e('View posts in the Gallery category', 'twentyten'); ?>"><?php _e('More Galleries', 'twentyten'); ?></a>
-			<span class="meta-sep"><?php __( ' | ', 'twentyten' ); ?></span>
-			<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>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t\n" ); ?>
-		</div><!-- #entry-utility -->
-	</div>
-
-
-<?php } elseif ( in_category( 'asides' ) ) { ?>
-	<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-		<div class="entry-content">
-			<?php the_content( __( 'Continue&nbsp;reading&nbsp;<span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
-		</div><!-- .entry-content -->
-
-		<div class="entry-utility">
-			<span class="meta-prep meta-prep-author"><?php _e( 'Posted on ', 'twentyten' ); ?></span>
-			<a href="<?php the_permalink(); ?>" title="<?php the_time(); ?>" rel="bookmark"><span class="entry-date"><?php echo get_the_date(); ?></span></a>
-			<span class="meta-sep"> <?php _e( ' by ', 'twentyten' ); ?> </span>
-			<span class="author vcard"><a class="url fn n" href="<?php echo get_author_posts_url( $authordata->ID ); ?>" title="<?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ); ?>"><?php the_author(); ?></a></span>
-			<span class="meta-sep"><?php __( ' | ', 'twentyten' ); ?></span>
-			<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>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t\n" ); ?>
-		</div><!-- #entry-utility -->
-	</div><!-- #post-<?php the_ID(); ?> -->
-
-
-<?php } else { ?>
-	<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-		<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
-
-		<div class="entry-meta">
-			<span class="meta-prep meta-prep-author"><?php _e('Posted on ', 'twentyten'); ?></span>
-			<a href="<?php
-the_permalink(); ?>" title="<?php the_time(); ?>" rel="bookmark"><span class="entry-date"><?php echo get_the_date(); ?></span></a>
-			<span class="meta-sep"><?php _e( ' by ', 'twentyten' ); ?></span>
-			<span class="author vcard"><a class="url fn n" href="<?php echo get_author_posts_url( $authordata->ID ); ?>" title="<?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ); ?>"><?php the_author(); ?></a></span>
-		</div><!-- .entry-meta -->
-
-<?php if ( is_archive() || is_search() ) : //Only display Excerpts for archives & search ?>
-		<div class="entry-summary">
-			<?php the_excerpt( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
-		</div><!-- .entry-summary -->
-<?php else : ?>
-		<div class="entry-content">
-			<?php the_content( __( 'Continue&nbsp;reading&nbsp;<span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
-			<?php wp_link_pages('before=<div class="page-link">' . __( 'Pages:', 'twentyten' ) . '&after=</div>'); ?>
-		</div><!-- .entry-content -->
-<?php endif; ?>
-
-		<div class="entry-utility">
-			<span class="cat-links"><span class="entry-utility-prep entry-utility-prep-cat-links"><?php _e( 'Posted in ', 'twentyten' ); ?></span><?php echo get_the_category_list( ', ' ); ?></span>
-			<span class="meta-sep"><?php __( ' | ', 'twentyten' ); ?></span>
-			<?php the_tags( '<span class="tag-links"><span class="entry-utility-prep entry-utility-prep-tag-links">' . __('Tagged ', 'twentyten' ) . '</span>', ", ", "</span>\n\t\t\t\t\t\t<span class=\"meta-sep\">|</span>\n" ); ?>
-			<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>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t\n" ); ?>
-		</div><!-- #entry-utility -->
-	</div><!-- #post-<?php the_ID(); ?> -->
-
-	<?php comments_template( '', true ); ?>
-
-<?php } ?>
-<?php endwhile; ?>
-
-<?php if (  $wp_query->max_num_pages > 1 ) { ?>
-				<div id="nav-below" class="navigation">
-					<div class="nav-previous"><?php next_posts_link(__( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' )); ?></div>
-					<div class="nav-next"><?php previous_posts_link(__( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyten' )); ?></div>
-				</div><!-- #nav-below -->
-<?php } ?>
\ No newline at end of file
+<?php twentyten_page_links(); ?>
+
+<?php while ( have_posts() ) : the_post(); ?>
+<?php if ( in_category( 'Gallery' ) ) { ?>
+	<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+		<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
+
+		<div class="entry-meta">
+			<span class="meta-prep meta-prep-author"><?php _e( 'Posted on ', 'twentyten' ); ?></span>
+			<a href="<?php the_permalink(); ?>" title="<?php the_time(); ?>" rel="bookmark"><span class="entry-date"><?php echo get_the_date(); ?></span></a>
+			<span class="meta-sep"> <?php _e( 'by ', 'twentyten' ); ?> </span>
+			<span class="author vcard"><a class="url fn n" href="<?php echo get_author_posts_url( $authordata->ID ); ?>" title="<?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ); ?>"><?php the_author(); ?></a></span>
+		</div><!-- .entry-meta -->
+
+		<div class="entry-content">
+			<div class="gallery-thumb">
+				<a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php
+				$images =& get_children( array('post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999) );
+				$total_images = count($images);
+				$image = array_shift($images);
+				echo wp_get_attachment_image( $image->ID, 'thumbnail' );
+				?></a>
+			</div>
+			<p><em><?php printf( __('This gallery contains <a %1$s>%2$s photos</a>.', 'twentyten'), 'href="' . get_permalink() . '" title="' . sprintf( esc_attr__('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ) . '" rel="bookmark"', $total_images ); ?></em></p>
+
+			<?php the_excerpt( '' ); ?>
+		</div><!-- .entry-content -->
+
+		<div class="entry-utility">
+			<?php
+				$category_id = get_cat_ID( 'Gallery' );
+				$category_link = get_category_link( $category_id );
+			?>
+			<a href="<?php echo $category_link; ?>" title="<?php esc_attr_e('View posts in the Gallery category', 'twentyten'); ?>"><?php _e('More Galleries', 'twentyten'); ?></a>
+			<span class="meta-sep"><?php __( ' | ', 'twentyten' ); ?></span>
+			<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>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t\n" ); ?>
+		</div><!-- #entry-utility -->
+	</div>
+
+
+<?php } elseif ( in_category( 'asides' ) ) { ?>
+	<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+		<div class="entry-content">
+			<?php the_content( __( 'Continue&nbsp;reading&nbsp;<span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
+		</div><!-- .entry-content -->
+
+		<div class="entry-utility">
+			<span class="meta-prep meta-prep-author"><?php _e( 'Posted on ', 'twentyten' ); ?></span>
+			<a href="<?php the_permalink(); ?>" title="<?php the_time(); ?>" rel="bookmark"><span class="entry-date"><?php echo get_the_date(); ?></span></a>
+			<span class="meta-sep"> <?php _e( ' by ', 'twentyten' ); ?> </span>
+			<span class="author vcard"><a class="url fn n" href="<?php echo get_author_posts_url( $authordata->ID ); ?>" title="<?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ); ?>"><?php the_author(); ?></a></span>
+			<span class="meta-sep"><?php __( ' | ', 'twentyten' ); ?></span>
+			<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>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t\n" ); ?>
+		</div><!-- #entry-utility -->
+	</div><!-- #post-<?php the_ID(); ?> -->
+
+
+<?php } else { ?>
+	<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+		<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__('Permalink to %s', 'twentyten'), the_title_attribute('echo=0') ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
+
+		<div class="entry-meta">
+			<span class="meta-prep meta-prep-author"><?php _e('Posted on ', 'twentyten'); ?></span>
+			<a href="<?php
+the_permalink(); ?>" title="<?php the_time(); ?>" rel="bookmark"><span class="entry-date"><?php echo get_the_date(); ?></span></a>
+			<span class="meta-sep"><?php _e( ' by ', 'twentyten' ); ?></span>
+			<span class="author vcard"><a class="url fn n" href="<?php echo get_author_posts_url( $authordata->ID ); ?>" title="<?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ); ?>"><?php the_author(); ?></a></span>
+		</div><!-- .entry-meta -->
+
+<?php if ( is_archive() || is_search() ) : //Only display Excerpts for archives & search ?>
+		<div class="entry-summary">
+			<?php the_excerpt( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
+		</div><!-- .entry-summary -->
+<?php else : ?>
+		<div class="entry-content">
+			<?php the_content( __( 'Continue&nbsp;reading&nbsp;<span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
+			<?php wp_link_pages('before=<div class="page-link">' . __( 'Pages:', 'twentyten' ) . '&after=</div>'); ?>
+		</div><!-- .entry-content -->
+<?php endif; ?>
+
+		<div class="entry-utility">
+			<span class="cat-links"><span class="entry-utility-prep entry-utility-prep-cat-links"><?php _e( 'Posted in ', 'twentyten' ); ?></span><?php echo get_the_category_list( ', ' ); ?></span>
+			<span class="meta-sep"><?php __( ' | ', 'twentyten' ); ?></span>
+			<?php the_tags( '<span class="tag-links"><span class="entry-utility-prep entry-utility-prep-tag-links">' . __('Tagged ', 'twentyten' ) . '</span>', ", ", "</span>\n\t\t\t\t\t\t<span class=\"meta-sep\">|</span>\n" ); ?>
+			<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>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t\n" ); ?>
+		</div><!-- #entry-utility -->
+	</div><!-- #post-<?php the_ID(); ?> -->
+
+	<?php comments_template( '', true ); ?>
+
+<?php } ?>
+<?php endwhile; ?>
+
+<?php twentyten_page_links(); ?>
\ No newline at end of file
Index: wp-content/themes/twentyten/tag.php
===================================================================
--- wp-content/themes/twentyten/tag.php	(revision 13142)
+++ wp-content/themes/twentyten/tag.php	(working copy)
@@ -5,7 +5,7 @@
 
 <?php the_post(); ?>
 
-				<h1 class="page-title"><?php _e( 'Tag Archives: ', 'twentyten' ); ?><span><?php single_tag_title(); ?></span></h1>
+<?php twentyten_page_title(); ?>
 
 <?php rewind_posts(); ?>
 
Index: wp-content/themes/twentyten/category.php
===================================================================
--- wp-content/themes/twentyten/category.php	(revision 13142)
+++ wp-content/themes/twentyten/category.php	(working copy)
@@ -5,8 +5,7 @@
 
 <?php the_post(); ?>
 
-				<h1 class="page-title"><?php _e( 'Category Archives:', 'twentyten' ); ?> <span><?php single_cat_title(); ?></span></span></h1>
-				<?php $categorydesc = category_description(); if ( !empty($categorydesc) ) echo apply_filters( 'archive_meta', '<div class="archive-meta">' . $categorydesc . '</div>' ); ?>
+<?php twentyten_page_title(); ?>
 
 <?php rewind_posts(); ?>
 
Index: wp-content/themes/twentyten/archive.php
===================================================================
--- wp-content/themes/twentyten/archive.php	(revision 13142)
+++ wp-content/themes/twentyten/archive.php	(working copy)
@@ -5,15 +5,7 @@
 
 <?php the_post(); ?>
 
-<?php if ( is_day() ) : ?>
-				<h1 class="page-title"><?php printf( __( 'Daily Archives: <span>%s</span>', 'twentyten' ), get_the_date() ); ?></h1>
-<?php elseif ( is_month() ) : ?>
-				<h1 class="page-title"><?php printf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_date('F Y') ); ?></h1>
-<?php elseif ( is_year() ) : ?>
-				<h1 class="page-title"><?php printf( __( 'Yearly Archives: <span>%s</span>', 'twentyten' ), get_the_date('Y') ); ?></h1>
-<?php else : ?>
-				<h1 class="page-title"><?php _e( 'Blog Archives', 'twentyten' ); ?></h1>
-<?php endif; ?>
+<?php twentyten_page_title(); ?>
 
 <?php rewind_posts(); ?>
 
