Changeset 5868 for trunk/bp-core/bp-core-functions.php
- Timestamp:
- 02/28/2012 10:05:51 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/bp-core-functions.php
r5827 r5868 931 931 932 932 /** 933 * Should we use the WP adminbar?934 * 935 * The WP Admin Bar, introduced in WP 3.1, is fully supported in BuddyPress as of BP 1.5.936 * For BP 1.6, the WP Admin Bar is the default.937 * 938 * @return bool False when WP Admin Bar support is disabled; true when enabled (default)933 * Should we use the WP Toolbar? 934 * 935 * The WP Toolbar, introduced in WP 3.1, is fully supported in BuddyPress as of BP 1.5. 936 * For BP 1.6, the WP Toolbar is the default. 937 * 938 * @return bool False when WP Toolbar support is disabled; true when enabled (default) 939 939 * @since 1.5 940 940 * @uses apply_filters() Filter 'bp_use_wp_admin_bar' to alter … … 943 943 $use_admin_bar = true; 944 944 945 // Has the WP Admin Bar constant been explicity set?945 // Has the WP Toolbar constant been explicity set? 946 946 if ( defined( 'BP_USE_WP_ADMIN_BAR' ) && ! BP_USE_WP_ADMIN_BAR ) 947 947 $use_admin_bar = false;
Note: See TracChangeset
for help on using the changeset viewer.