From 9490d5bef2ff6abe5d851e34ad3de51bee4a6c22 Mon Sep 17 00:00:00 2001 From: rboren Date: Sun, 3 Oct 2004 17:07:53 +0000 Subject: [PATCH] Fix wp_title() for pages. git-svn-id: http://svn.automattic.com/wordpress/trunk@1729 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/template-functions-general.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/template-functions-general.php b/wp-includes/template-functions-general.php index 41151551e..2410aa874 100644 --- a/wp-includes/template-functions-general.php +++ b/wp-includes/template-functions-general.php @@ -166,7 +166,7 @@ function wp_title($sep = '»', $display = true) { } // If there's a post - if (is_single()) { + if (is_single() || is_page()) { $title = strip_tags($posts[0]->post_title); $title = apply_filters('single_post_title', $title); }