From e7721041df331cfa6c3a508a7ead259c92f09d4e Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Sun, 28 Feb 2010 09:19:34 +0000 Subject: [PATCH] When using Page on front, Do not jump back to Blog listing when per-page query vars are set. Fixes #12047 git-svn-id: https://develop.svn.wordpress.org/trunk@13493 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/query.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/wp-includes/query.php b/wp-includes/query.php index 650a1a90e2..52165f4ee9 100644 --- a/wp-includes/query.php +++ b/wp-includes/query.php @@ -1474,7 +1474,14 @@ class WP_Query { $this->is_home = true; // Correct is_* for page_on_front and page_for_posts - if ( $this->is_home && ( empty($this->query) || $qv['preview'] == 'true' ) && 'page' == get_option('show_on_front') && get_option('page_on_front') ) { + if ( $this->is_home && + 'page' == get_option('show_on_front') && + get_option('page_on_front') && + ( + empty($this->query) || + !empty($qv['preview']) || + !empty($qv['cpage']) + ) ) { $this->is_page = true; $this->is_home = false; $qv['page_id'] = get_option('page_on_front');