diff --git a/wp-includes/link-template.php b/wp-includes/link-template.php index 8d6830ca5f..c603eddbd5 100644 --- a/wp-includes/link-template.php +++ b/wp-includes/link-template.php @@ -1513,7 +1513,7 @@ function get_adjacent_post( $in_same_term = false, $excluded_terms = '', $previo } if ( ! empty( $excluded_terms ) ) { - $where .= " AND p.ID NOT IN ( SELECT object_id FROM $wpdb->term_relationships WHERE term_taxonomy_id IN (" . implode( $excluded_terms, ',' ) . ') )'; + $where .= " AND p.ID NOT IN ( SELECT tr.object_id FROM $wpdb->term_relationships tr LEFT JOIN $wpdb->term_taxonomy tt ON (tr.term_taxonomy_id = tt.term_taxonomy_id) WHERE tt.term_id IN (" . implode( $excluded_terms, ',' ) . ') )'; } } diff --git a/wp-includes/version.php b/wp-includes/version.php index 7728257c0f..d548e5ccc7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-alpha-30247'; +$wp_version = '4.1-alpha-30263'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.