Attachment enhancements from skeltoac. fixes #2074

git-svn-id: http://svn.automattic.com/wordpress/trunk@3303 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan
2005-12-13 19:19:56 +00:00
parent 9a11319958
commit ab9b8f8b6a
14 changed files with 425 additions and 127 deletions

View File

@@ -65,7 +65,9 @@ if ( is_month() ) {
} elseif ( is_search() ) {
printf(__('Search for “%s”'), wp_specialchars($_GET['s']) );
} else {
if ( ! is_paged() || get_query_var('paged') == 1 )
if ( is_single() )
printf(__('Comments on %s'), $post->post_title);
elseif ( ! is_paged() || get_query_var('paged') == 1 )
_e('Last 15 Posts');
else
_e('Previous Posts');