woocommerce_after_single_product
The Genesis Connect for WooCommerce woocommerce after single product hook.
Description
do_action( 'woocommerce_after_single_product' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'woocommerce_after_single_product' );
- The following example is for adding a hook callback.
- // define the woocommerce_after_single_product callback
- function action_woocommerce_after_single_product( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'woocommerce_after_single_product', 'action_woocommerce_after_single_product', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'woocommerce_after_single_product', 'action_woocommerce_after_single_product', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /templates/single-product.php
- <?php do_action( 'woocommerce_after_single_product' );