Changeset 4951
- Timestamp:
- 08/09/2011 05:04:35 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity/bp-activity-functions.php
r4937 r4951 601 601 } 602 602 603 /** 604 * Fetch specific activity items 605 * 606 * @package BuddyPress 607 * 608 * @param array $args See docs for $defaults for details 609 * @return array The array returned by BP_Activity_Activity::get() 610 */ 603 611 function bp_activity_get_specific( $args = '' ) { 604 612 $defaults = array( … … 609 617 'sort' => 'DESC', // sort ASC or DESC 610 618 'display_comments' => false, // true or false to display threaded comments for these specific activity items 611 'show_hidden' => false619 'show_hidden' => true // When fetching specific items, show all 612 620 ); 613 621 $r = wp_parse_args( $args, $defaults );
Note: See TracChangeset
for help on using the changeset viewer.