Ensure we have a valid post type object when checking for has_archive. props filosofo, fixes #15364.
git-svn-id: https://develop.svn.wordpress.org/trunk@16276 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
af72ac38ff
commit
d50013b957
@ -1350,7 +1350,7 @@ class WP_Query extends WP_Object_Query {
|
||||
|
||||
if ( !empty( $qv['post_type'] ) && ! is_array( $qv['post_type'] ) ) {
|
||||
$post_type_obj = get_post_type_object( $qv['post_type'] );
|
||||
if ( $post_type_obj->has_archive )
|
||||
if ( ! empty( $post_type_obj->has_archive ) )
|
||||
$this->is_post_type_archive = true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user