woocommerce_product_meta_end
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 40
<?php do_action( 'woocommerce_product_meta_end' ); ?>
Where the hook is used in WooCommerce
woocommerce/includes/class-wc-brands.php 1142
remove_action( 'woocommerce_product_meta_end', array( $this, 'show_brand' ) );
woocommerce/includes/class-wc-brands.php 48
add_action( 'woocommerce_product_meta_end', array( $this, 'show_brand' ) );