我想要查询指定的所有内容,但是出现的结果缺少了一些,查询官方文档后解决
原因
wordpress自定义查询默认分页的,即nopaging默认值是false,因此查询出来是不全的。
$args = array( 'post_status'=>'publish', 'post_type'=> array('diy', 'travel','code','cook','post'), 'orderby'=>'date', 'order'=>'DESC', 'nopaging'=>true );