Changeset 2788 for branches/plugin/bbp-includes/bbp-hooks.php
- Timestamp:
- 01/09/2011 09:19:26 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-includes/bbp-hooks.php
r2786 r2788 73 73 74 74 // Template - Head, foot, errors and notices 75 add_action( 'wp_head', 'bbp_head' ); 76 add_action( 'wp_footer', 'bbp_footer' ); 77 add_action( 'bbp_template_notices', 'bbp_error_messages' ); 78 add_action( 'bbp_template_notices', 'bbp_topic_notices' ); 75 add_action( 'wp_head', 'bbp_head' ); 76 add_filter( 'wp_title', 'bbp_title', 10, 3 ); 77 add_action( 'wp_footer', 'bbp_footer' ); 78 add_action( 'bbp_template_notices', 'bbp_error_messages' ); 79 add_action( 'bbp_template_notices', 'bbp_topic_notices' ); 79 80 80 81 // Caps & Roles … … 92 93 93 94 // Profile Page 94 add_filter( 'wp_title', 'bbp_profile_page_title', 10, 3 ); 95 add_action( 'pre_get_posts', 'bbp_pre_get_posts', 1 ); 96 add_action( 'template_redirect', 'bbp_edit_user_handler', 1 ); 95 add_action( 'pre_get_posts', 'bbp_pre_get_posts', 1 ); 96 add_action( 'template_redirect', 'bbp_edit_user_handler', 1 ); 97 97 98 98 // Profile Page Messages
Note: See TracChangeset
for help on using the changeset viewer.