(shortcode)_shortcode_tag filter-hookWC 1.0

Usage

add_filter( '(shortcode)_shortcode_tag', 'wp_kama_shortcode_tag_filter' );

/**
 * Function for `(shortcode)_shortcode_tag` filter-hook.
 * 
 * @param  $shortcode 
 *
 * @return 
 */
function wp_kama_shortcode_tag_filter( $shortcode ){

	// filter...
	return $shortcode;
}
$shortcode
-

Where the hook is called

WC_Shortcodes::init()
(shortcode)_shortcode_tag
woocommerce/includes/class-wc-shortcodes.php 43
add_shortcode( apply_filters( "{$shortcode}_shortcode_tag", $shortcode ), $function );

Where the hook is used in WooCommerce

Usage not found.