get_adjacent_post()でのexcluded_categoriesのSQLへの展開ミス
-
wp-includes/link-template.php 949行目
$posts_in_ex_cats_sql = " AND tt.taxonomy = 'category' AND tt.term_id NOT IN (" . implode($excluded_categories, ',') . ')';
は
$posts_in_ex_cats_sql = " AND tt.taxonomy = 'category' AND tt.term_id NOT IN (" . implode(',', $excluded_categories) . ')';
なのではないかしら。
2件の返信を表示中 - 1 - 2件目 (全2件中)
2件の返信を表示中 - 1 - 2件目 (全2件中)
- トピック「get_adjacent_post()でのexcluded_categoriesのSQLへの展開ミス」には新たに返信することはできません。