woocommerce_product_meta_end action-hookWC 1.0

Usage

add_action( 'woocommerce_product_meta_end', 'wp_kama_woocommerce_product_meta_end_action' );

/**
 * Function for `woocommerce_product_meta_end` action-hook.
 * 
 * @return void
 */
function wp_kama_woocommerce_product_meta_end_action(){

	// action...
}

Where the hook is called

In file: /templates/single-product/meta.php
woocommerce_product_meta_end
woocommerce/templates/single-product/meta.php 38
<?php do_action( 'woocommerce_product_meta_end' ); ?>

Where the hook is used in WooCommerce

Usage not found.