ReportsGenerator::remove_post_ids_param( array $query_args )
Remove post ids param from sql query
Description
Parameters
- $query_args
-
(Required)
Return
(array) $query_args
Source
File: bp-integrations/learndash/library/ReportsGenerator.php
public function remove_post_ids_param( $query_args ) {
if ( isset( $query_args['post_ids'] ) ) {
unset( $query_args['post_ids'] );
}
return $query_args;
}
Changelog
| Version | Description |
|---|---|
| BuddyBoss 1.0.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.