woocommerce_myparcel_after_settings_page
The WooCommerce MyParcel woocommerce myparcel after settings page hook.
Description
Parameters (1)
- 0. $active_tab (unknown)
- The active tab.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'woocommerce_myparcel_after_settings_page', $active_tab );
- The following example is for adding a hook callback.
- // define the woocommerce_myparcel_after_settings_page callback
- function action_woocommerce_myparcel_after_settings_page( $active_tab ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'woocommerce_myparcel_after_settings_page', 'action_woocommerce_myparcel_after_settings_page', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'woocommerce_myparcel_after_settings_page', 'action_woocommerce_myparcel_after_settings_page', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /includes/class-wcmp-settings.php
- <?php do_action( 'woocommerce_myparcel_after_settings_page', $active_tab ); ?>