WP_Query by MAX post_id? 时间:2019-11-26 作者:stefanosn 我正在尝试使用wp\\U查询类获取作者插入的最新post\\U id。我必须在我使用的查询的参数中使用MAX(wp\\u posts.ID)。这是使用wp\\u查询类实现的还是必须使用wpdb::get\\u results()实现的?感谢您的帮助。 1 个回复 SO网友:Manan try this<?php $new=new WP_Query(array(\'posts_per_page\'=> 1,\'order_by\'=>\'DESC\')); $max_id; if($new->have_posts()){ while($new->have_posts()) { $new->the_post(); $max_id=the_id(); } } echo $max_id; 文章导航