Changeset 5836
- Timestamp:
- 02/24/2012 09:34:47 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/bp-core-hooks.php
r5816 r5836 42 42 add_action( 'admin_bar_menu', 'bp_setup_admin_bar', 20 ); // After WP core 43 43 add_action( 'template_redirect', 'bp_template_redirect', 10 ); 44 add_action( 'widgets_init', 'bp_widgets_init', 10 ); 44 45 add_filter( 'template_include', 'bp_template_include', 10 ); 45 46 add_filter( 'map_meta_cap', 'bp_map_meta_caps', 10, 4 ); … … 191 192 } 192 193 194 /** 195 * Initialize widgets 196 */ 197 function bp_widgets_init() { 198 do_action ( 'bp_widgets_init' ); 199 } 200 201 193 202 /** Admin *********************************************************************/ 194 203
Note: See TracChangeset
for help on using the changeset viewer.