引用:
その他の問題(テンプレートタグとか)もこれに起因してるのでしょうか・・・
posts_nav_link()についても、同様の修正でうまくいくかもしれません。
wp-includes/template-functions-post.phpの372行目と、419行目に
$postObjects =& $postHandler->getObjects($GLOBALS['current_posts_criteria'], false, '', $GLOBALS['current_posts_distinct'], $GLOBALS['current_posts_join']);
を
$postObjects =& $postHandler->getObjects($GLOBALS['current_posts_criteria'], false, 'ID', $GLOBALS['current_posts_distinct'], $GLOBALS['current_posts_join']);
に変えて頂ければとりあえずうまくいくと思います。
本来はもっと効率良い方法がありそうですが、これはもう少し待って下さい。