mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00:00
Add missing the_title filter. Props jhodgdon. fixes #4019
git-svn-id: https://develop.svn.wordpress.org/trunk@5094 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -64,7 +64,7 @@ if ( is_month() ) {
|
||||
printf(__('Search for “%s”'), wp_specialchars($_GET['s']) );
|
||||
} else {
|
||||
if ( is_single() )
|
||||
printf(__('Comments on %s'), $post->post_title);
|
||||
printf(__('Comments on %s'), apply_filters( "the_title", $post->post_title));
|
||||
elseif ( ! is_paged() || get_query_var('paged') == 1 )
|
||||
_e('Last 15 Posts');
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user