(shortcode)_shortcode_tag хук-фильтрWC 1.0

Использование

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
-

Где вызывается хук

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

Где используется хук в WooCommerce

Использование не найдено.