global $wpdb, $post; // Uses current POST here
$IDs = $wpdb->get_col("SELECT `ID` FROM {$wpdb->posts}
WHERE `post_type`=\'{$post->post_type}\' AND `post_status`=\'publish\' AND `ID`<{$post->ID}
ORDER BY `ID` DESC LIMIT 5;");
此函数列出ID低于的5个帖子
ID 176
属于
post_type=\'post\'
和
post_status=\'publish\'
. 如果您使用自定义的post类型,请更改post\\U类型,以满足您的需要。您也可以通过以下方式订购
post_date_gmt
如果你愿意的话。
当做