woocommerce_after_main_content
The evolve woocommerce after main content hook.
Description
remove_action( 'woocommerce_after_main_content', (string) $woocommerce_output_content_wrapper_end, (int) $int );
Parameters (2)
- 0. $woocommerce_output_content_wrapper_end (string) =>
'woocommerce_output_content_wrapper_end'
- The woocommerce output content wrapper end.
- 1. $int (int) =>
10
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'woocommerce_after_main_content', $woocommerce_output_content_wrapper_end, $int );
- The following example is for adding a hook callback.
- // define the woocommerce_after_main_content callback
- function action_woocommerce_after_main_content( $woocommerce_output_content_wrapper_end, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'woocommerce_after_main_content', 'action_woocommerce_after_main_content', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'woocommerce_after_main_content', 'action_woocommerce_after_main_content', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /library/woo-config.php
- remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);