WordPress 评论查询:分页显示每页 10 条评论
$args = array( 'post_type' => 'qqproduct', 'post_id' => $pid, 'status' => 'approve', 'number' => 10, 'offset' => $offset * 10, ); } else { $args = array( 'post_type' => 'qqproduct', 'status' => array('approve', 'hold'), 'number' => 10, 'offset' => $offset * 10, ); }
$comments_query = new WP_Comment_Query; $comments = $comments_query->query( $args );
原文地址: https://www.cveoy.top/t/topic/owks 著作权归作者所有。请勿转载和采集!