Illegal Locks Ratings
// WP_Comment_Query arguments $args = array( 'status' => 'approve', 'post_status' => 'publish', 'post_type' => 'property', ); // The Comment Query $comment_query = new WP_Comment_Query( $args ); // The Comment Loop if ( $comment_query ) { foreach ( $comment_query as $comment ) { // do something } } else { // no comments found }