bb_admin-footer.php
The BuddyPress bb admin footer php hook.
Description
do_action( 'bb_admin-footer.php' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bb_admin-footer.php' );
- The following example is for adding a hook callback.
- // define the bb_admin-footer.php callback
- function action_bb_admin_footer_php( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bb_admin-footer.php', 'action_bb_admin_footer_php', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bb_admin-footer.php', 'action_bb_admin_footer_php', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php
- do_action( 'bb_admin-footer.php' );