Typo fix
git-svn-id: http://svn.automattic.com/wordpress/trunk@8890 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
203530fe88
commit
fcaf29bc65
|
@ -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