Use correct variable. props picklewagon. fixes #22394.
git-svn-id: https://develop.svn.wordpress.org/trunk@22476 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
08a5af03ed
commit
fb1ce7ae11
@ -3161,7 +3161,7 @@ function is_object_in_term( $object_id, $taxonomy, $terms = null ) {
|
||||
return new WP_Error( 'invalid_object', __( 'Invalid object ID' ) );
|
||||
|
||||
$object_terms = get_object_term_cache( $object_id, $taxonomy );
|
||||
if ( false === $terms )
|
||||
if ( false === $object_terms )
|
||||
$object_terms = wp_get_object_terms( $object_id, $taxonomy );
|
||||
|
||||
if ( is_wp_error( $object_terms ) )
|
||||
|
Loading…
Reference in New Issue
Block a user