bp_register_importers
Fires inside the bp_register_importers function.
Description
do_action( 'bp_register_importers' );
Used to register a BuddyPress
importer.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bp_register_importers' );
- The following example is for adding a hook callback.
- // define the bp_register_importers callback
- function action_bp_register_importers( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bp_register_importers', 'action_bp_register_importers', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bp_register_importers', 'action_bp_register_importers', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /bp-core/admin/bp-core-admin-actions.php
- do_action( 'bp_register_importers' );