fix warning when page on front missing, see #13830

git-svn-id: https://develop.svn.wordpress.org/trunk@15224 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ron Rennick 2010-06-11 16:30:59 +00:00
parent bad0912739
commit f08169848f
1 changed files with 1 additions and 1 deletions

View File

@ -585,7 +585,7 @@ function wp_title($sep = '»', $display = true, $seplocation = '') {
// If there is a post
if ( is_single() || ( is_home() && !is_front_page() ) || ( is_page() && !is_front_page() ) ) {
$post = $wp_query->get_queried_object();
$title = apply_filters( 'single_post_title', $post->post_title );
$title = apply_filters( 'single_post_title', empty( $post->post_title ) ? '' : $post->post_title );
}
// If there's a taxonomy