Changeset 9453
- Timestamp:
- 02/08/2015 11:16:53 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-groups/bp-groups-widgets.php
r9351 r9453 43 43 44 44 function widget( $args, $instance ) { 45 46 /** 47 * Filters the user ID to use with the widget instance. 48 * 49 * @since BuddyPress (1.5.0) 50 * 51 * @param string $value Empty user ID. 52 */ 45 53 $user_id = apply_filters( 'bp_group_widget_user_id', '0' ); 46 54 … … 53 61 $instance['title'] = __( 'Groups', 'buddypress' ); 54 62 63 /** 64 * Filters the title of the Groups widget. 65 * 66 * @since BuddyPress (1.8.0) 67 * 68 * @param string $value The widget title. 69 */ 55 70 $title = apply_filters( 'widget_title', $instance['title'] ); 56 71
Note: See TracChangeset
for help on using the changeset viewer.