bp_signup_blog_privacy_errors
Fires and displays any member registration blog privacy errors.
Description
do_action( 'bp_signup_blog_privacy_errors' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bp_signup_blog_privacy_errors' );
- The following example is for adding a hook callback.
- // define the bp_signup_blog_privacy_errors callback
- function action_bp_signup_blog_privacy_errors( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bp_signup_blog_privacy_errors', 'action_bp_signup_blog_privacy_errors', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bp_signup_blog_privacy_errors', 'action_bp_signup_blog_privacy_errors', 10, 0 );
Defined (2)
The action is defined in the following location(s).
- /bp-themes/bp-default/registration/register.php
- <?php do_action( 'bp_signup_blog_privacy_errors' ); ?>
- /bp-templates/bp-legacy/buddypress/members/register.php
- do_action( 'bp_signup_blog_privacy_errors' ); ?>