Group
Core class for the learndash settings
Description
Source
File: bp-integrations/learndash/learndash/Group.php
class Group { /** * Get groups that's not associated to bp * * @since BuddyBoss 1.0.0 */ public function getUnassociatedGroups($include = null) { $meta_query = [ 'relation' => 'OR', [ 'key' => '_sync_group_id', 'value' => [0, ''], ], [ 'key' => '_sync_group_id', 'compare' => 'NOT EXISTS', ], ]; if ($include) { $meta_query[] = [ 'key' => '_sync_group_id', 'value' => is_array($include) ? $include : [$include] ]; } return (new WP_Query([ 'post_type' => 'groups', 'posts_per_page' => -1, 'orderby' => 'name', 'order' => 'asc', 'meta_query' => [$meta_query], ]))->posts; } }
Changelog
Version | Description |
---|---|
BuddyBoss 1.0.0 | Introduced. |
Methods
- getUnassociatedGroups — Get groups that's not associated to bp
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.