Changeset 4918 for trunk/includes/core/actions.php
- Timestamp:
- 05/19/2013 05:01:10 AM (13 years ago)
- File:
-
- 1 edited
-
trunk/includes/core/actions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/core/actions.php
r4826 r4918 75 75 * Attach various initialization actions to the init action. 76 76 * The load order helps to execute code at the correct time. 77 * v---Load order 78 */ 79 add_action( 'bbp_init', 'bbp_load_textdomain', 0 ); 80 add_action( 'bbp_init', 'bbp_register', 0 ); 81 add_action( 'bbp_init', 'bbp_add_rewrite_tags', 20 ); 82 add_action( 'bbp_init', 'bbp_ready', 999 ); 77 * v---Load order 78 */ 79 add_action( 'bbp_init', 'bbp_load_textdomain', 0 ); 80 add_action( 'bbp_init', 'bbp_register', 0 ); 81 add_action( 'bbp_init', 'bbp_add_rewrite_tags', 20 ); 82 add_action( 'bbp_init', 'bbp_add_rewrite_rules', 30 ); 83 add_action( 'bbp_init', 'bbp_add_permastructs', 40 ); 84 add_action( 'bbp_init', 'bbp_ready', 999 ); 83 85 84 86 /**
Note: See TracChangeset
for help on using the changeset viewer.