Changeset 13184 for trunk/src/bp-groups/bp-groups-functions.php
- Timestamp:
- 12/12/2021 02:09:02 PM (4 years ago)
- File:
-
- 1 edited
-
trunk/src/bp-groups/bp-groups-functions.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-groups/bp-groups-functions.php
r13108 r13184 914 914 * @since 2.6.0 Added `$group_type`, `$group_type__in`, and `$group_type__not_in` parameters. 915 915 * @since 2.7.0 Added `$update_admin_cache` and `$parent_id` parameters. 916 * @since 10.0.0 Added `$date_query` parameter. 916 917 * 917 918 * @param array|string $args { … … 943 944 'group_type__not_in' => '', // Array or comma-separated list of group types that will be excluded from results. 944 945 'meta_query' => false, // Filter by groupmeta. See WP_Meta_Query for syntax. 946 'date_query' => false, // Filter by group last activity date. See WP_Date_Query for syntax. 945 947 'show_hidden' => false, // Show hidden groups to non-admins. 946 948 'status' => array(), // Array or comma-separated list of group statuses to limit results to. … … 967 969 'group_type__not_in' => $r['group_type__not_in'], 968 970 'meta_query' => $r['meta_query'], 971 'date_query' => $r['date_query'], 969 972 'show_hidden' => $r['show_hidden'], 970 973 'status' => $r['status'],
Note: See TracChangeset
for help on using the changeset viewer.