WordPress: Paginating Comments with Offset for QQProduct Posts
$args = array( 'post_type' => 'qqproduct', 'post_id' => $pid, 'status' => 'approve', 'number' => 10, // number of comments to display per page 'offset' => $offset, // number of comments to offset on each page ); } else { $args = array( 'post_type' => 'qqproduct', 'status' => array('approve', 'hold'), 'number' => 10, // number of comments to display per page 'offset' => $offset, // number of comments to offset on each page ); }
$comments_query = new WP_Comment_Query; $comments = $comments_query->query( $args );
原文地址: https://www.cveoy.top/t/topic/owkt 著作权归作者所有。请勿转载和采集!