Fix default orderby for tt_id query. see #9937
git-svn-id: https://develop.svn.wordpress.org/trunk@11468 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
2abee7d3b6
commit
e38c2c7c07
@ -1250,7 +1250,10 @@ function wp_get_object_terms($object_ids, $taxonomies, $args = array()) {
|
||||
$orderby = '';
|
||||
$order = '';
|
||||
} else {
|
||||
$orderby = 't.term_id';
|
||||
if ( 'tt_ids' == $fields )
|
||||
$orderby = 'tr.term_taxonomy_id';
|
||||
else
|
||||
$orderby = 't.term_id';
|
||||
}
|
||||
|
||||
if ( !empty($orderby) )
|
||||
@ -1277,8 +1280,6 @@ function wp_get_object_terms($object_ids, $taxonomies, $args = array()) {
|
||||
} else if ( 'ids' == $fields || 'names' == $fields ) {
|
||||
$terms = array_merge($terms, $wpdb->get_col($query));
|
||||
} else if ( 'tt_ids' == $fields ) {
|
||||
if ( !empty($order_by) )
|
||||
$orderby = "ORDER BY tr.term_taxonomy_id";
|
||||
$terms = $wpdb->get_col("SELECT tr.term_taxonomy_id FROM $wpdb->term_relationships AS tr INNER JOIN $wpdb->term_taxonomy AS tt ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tr.object_id IN ($object_ids) AND tt.taxonomy IN ($taxonomies) $orderby $order");
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user