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:
parent
de3198277a
commit
786786b1a1
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user