Index: wp-includes/general-template.php
===================================================================
--- wp-includes/general-template.php	(revision 22002)
+++ wp-includes/general-template.php	(working copy)
@@ -790,6 +790,63 @@
 }
 
 /**
+ * Retrieve or display the archive title based on the queried object
+ *
+ * @since 3.5.0
+ *
+ * @return string Text archive title
+ */
+function the_archive_title( $prefix = '', $display = true ) {
+	if ( is_day() ) {
+		$title = printf( __( 'Daily Archives: %s' ), '<span>' . get_the_date() . '</span>' );
+	} elseif ( is_month() ) {
+		$title = printf( __( 'Monthly Archives: %s' ), '<span>' . get_the_date( _x( 'F Y', 'monthly archives date format' ) ) . '</span>' );
+	} elseif ( is_year() ) {
+		$title = printf( __( 'Yearly Archives: %s' ), '<span>' . get_the_date( _x( 'Y', 'yearly archives date format' ) ) . '</span>' );
+	} elseif ( is_tag() ) {
+		$title = printf( __( 'Tag Archives: %s' ), '<span>' . single_tag_title( '', false ) . '</span>' );
+	} elseif ( is_category() ) {
+		$title = printf( __( 'Category Archives: %s' ), '<span>' . single_cat_title( '', false ) . '</span>' );
+	} elseif ( is_tax() ) {
+		$title = printf( __( 'Taxonomy Archives: %s' ), '<span>' . single_term_title( '', false ) . '</span>' );
+	} elseif ( is_author() ) {
+		$title = printf( __( 'Author Archives: %s' ), '<span>' . get_the_author() . '</span>' );
+	} elseif ( is_post_type_archive() ) {
+		$title = printf( __( 'Archives: %s' ), '<span>' . post_type_archive_title( '', false ) . '</span>' ) ;
+	} else {
+		$title = _e( 'Archives' );
+	}
+	
+	$title = $prefix . $title;
+
+	if ( $display )
+		echo apply_filters( 'the_archive_title', $title );
+	else
+		return apply_filters( 'the_archive_title', $title );
+}
+
+/**
+ * Retrieve or display tag, category or term description
+ *
+ * @since 3.5.0
+ *
+ * @uses term_description()
+ * @return string Category, tag or term description
+ */
+function the_archive_description( $display = true ) {
+	if ( is_tag() || is_category() || is_tax() ) {
+		$term = get_queried_object();
+		$taxonomy = $term->taxonomy;		
+		$description = term_description( '', $taxonomy );
+	}
+
+	if ( $display )
+		echo apply_filters( 'the_archive_description', $description );
+	else
+		return apply_filters( 'the_archive_description', $description );
+}
+
+/**
  * Retrieve archive link content based on predefined or custom code.
  *
  * The format can be one of four styles. The 'link' for head element, 'option'
