woocommerce_register_form_end
The WooCommerce Simple Registration woocommerce register form end hook.
Description
do_action( 'woocommerce_register_form_end' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'woocommerce_register_form_end' );
- The following example is for adding a hook callback.
- // define the woocommerce_register_form_end callback
- function action_woocommerce_register_form_end( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'woocommerce_register_form_end', 'action_woocommerce_register_form_end', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'woocommerce_register_form_end', 'action_woocommerce_register_form_end', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /templates/registration-form.php
- <?php do_action( 'woocommerce_register_form_end' ); ?>