Revert part of r13486, is_tax() is false for tags||categories. See #11904
git-svn-id: https://develop.svn.wordpress.org/trunk@13495 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
bfe10ba981
commit
0f8493b92b
|
@ -244,7 +244,7 @@ function is_tax( $taxonomy = '', $term = '' ) {
|
||||||
$tax_array = array_intersect(array_keys($wp_taxonomies), (array) $taxonomy);
|
$tax_array = array_intersect(array_keys($wp_taxonomies), (array) $taxonomy);
|
||||||
$term_array = (array) $term;
|
$term_array = (array) $term;
|
||||||
|
|
||||||
if ( ! ( $wp_query->is_tax || $wp_query->is_category || $wp_query->is_tag ) )
|
if ( !$wp_query->is_tax )
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if ( empty( $taxonomy ) )
|
if ( empty( $taxonomy ) )
|
||||||
|
|
Loading…
Reference in New Issue