Typo fix
git-svn-id: https://develop.svn.wordpress.org/trunk@8890 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
1933cadce7
commit
1f77dacb90
|
@ -599,7 +599,7 @@ function get_adjacent_post($in_same_cat = false, $excluded_categories = '', $pre
|
|||
|
||||
if ( $in_same_cat ) {
|
||||
$cat_array = wp_get_object_terms($post->ID, 'category', 'fields=ids');
|
||||
$join .= " AND tt.taxonomy = 'category' AND tt.term_id IN (" . implode($cat_array, ',') . ')';
|
||||
$join .= " AND tt.taxonomy = 'category' AND tt.term_id IN (" . implode(',', $cat_array) . ")";
|
||||
}
|
||||
|
||||
$posts_in_ex_cats_sql = "AND tt.taxonomy = 'category'";
|
||||
|
|
Loading…
Reference in New Issue