before_signup_form
Fires before the site sign-up form.
Description
do_action( 'before_signup_form' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'before_signup_form' );
- The following example is for adding a hook callback.
- // define the before_signup_form callback
- function action_before_signup_form( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'before_signup_form', 'action_before_signup_form', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'before_signup_form', 'action_before_signup_form', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /app/view/shortcode/class-ms-view-shortcode-registeruser.php
- do_action( 'before_signup_form' );