Cast term_id to int for queried_object_id. props wojtek.szkutnik, fixes #14590.
git-svn-id: http://svn.automattic.com/wordpress/trunk@16542 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5618d1a644
commit
53a2e0667e
|
@ -2673,7 +2673,7 @@ class WP_Query {
|
|||
|
||||
if ( $term && ! is_wp_error($term) ) {
|
||||
$this->queried_object = $term;
|
||||
$this->queried_object_id = $term->term_id;
|
||||
$this->queried_object_id = (int) $term->term_id;
|
||||
}
|
||||
} elseif ( $this->is_posts_page ) {
|
||||
$page_for_posts = get_option('page_for_posts');
|
||||
|
|
Loading…
Reference in New Issue