$previous = $wpdb->get_row("SELECT MONTH(post_date) AS month, YEAR(post_date) AS year
FROM $wpdb->posts
WHERE post_date < '$thisyear-$thismonth-01'
AND post_type = 'post' AND post_status = 'publish'
ORDER BY post_date DESC
LIMIT 1");
$next = $wpdb->get_row("SELECT MONTH(post_date) AS month, YEAR(post_date) AS year
FROM $wpdb->posts
WHERE post_date > '$thisyear-$thismonth-{$last_day} 23:59:59'
AND post_type = 'post' AND post_status = 'publish' AND post_author = '2'
ORDER BY post_date ASC
LIMIT 1");
Есть вот такой вот запрос, мне нужно добавить выборку, что бы было еще и это
$wpdb->term_taxonomy WHERE term_id = '16'
Вот пока не знаю, как правильно добавить это в запрос...