mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-02 05:31:25 +01:00
Add missing the_title filter. Props jhodgdon. fixes #4019
git-svn-id: http://svn.automattic.com/wordpress/trunk@5094 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
eed1eedc5f
commit
81bf28dd0c
@ -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