bp_before_member_header_meta
Fires before the display of the member's header meta.
Description
do_action( 'bp_before_member_header_meta' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bp_before_member_header_meta' );
- The following example is for adding a hook callback.
- // define the bp_before_member_header_meta callback
- function action_bp_before_member_header_meta( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bp_before_member_header_meta', 'action_bp_before_member_header_meta', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bp_before_member_header_meta', 'action_bp_before_member_header_meta', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /members/single/member-header.php
- <?php do_action( 'bp_before_member_header_meta' ); ?>