Changeset 8539
- Timestamp:
- 06/19/2014 01:08:40 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-buddybar.php
r7756 r8539 260 260 global $bp; 261 261 262 $ defaults =array(262 $r = wp_parse_args( $args, array( 263 263 'name' => false, // Display name for the nav item 264 264 'slug' => false, // URL slug for the nav item … … 271 271 'screen_function' => false, // The name of the function to run when clicked 272 272 'link' => '' // The link for the subnav item; optional, not usually required. 273 ); 274 275 $r = wp_parse_args( $args, $defaults ); 273 ) ); 274 276 275 extract( $r, EXTR_SKIP ); 277 276
Note: See TracChangeset
for help on using the changeset viewer.