From 1df1e7f1b55d76db97a08e97e97ea8a92b2854c5 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Wed, 8 Jun 2011 16:07:38 +0000 Subject: [PATCH] Don't 404 for empty post type archives. props markmcwilliams, jfarthing84, fixes #17316. git-svn-id: https://develop.svn.wordpress.org/trunk@18192 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/class-wp.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/class-wp.php b/wp-includes/class-wp.php index b048c83c59..cf671bd79d 100644 --- a/wp-includes/class-wp.php +++ b/wp-includes/class-wp.php @@ -470,7 +470,7 @@ class WP { if ( !is_admin() && ( 0 == count( $wp_query->posts ) ) && !is_404() && !is_robots() && !is_search() && !is_home() ) { // Don't 404 for these queries if they matched an object. - if ( ( is_tag() || is_category() || is_tax() || is_author() ) && $wp_query->get_queried_object() && !is_paged() ) { + if ( ( is_tag() || is_category() || is_tax() || is_author() || is_post_type_archive() ) && $wp_query->get_queried_object() && !is_paged() ) { if ( !is_404() ) status_header( 200 ); return;