woocommerce_integration_title хук-фильтрWC 1.0

Return the title for admin screens.

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

add_filter( 'woocommerce_integration_title', 'wp_kama_woocommerce_integration_title_filter', 10, 2 );

/**
 * Function for `woocommerce_integration_title` filter-hook.
 * 
 * @param  $method_title 
 * @param  $that         
 *
 * @return 
 */
function wp_kama_woocommerce_integration_title_filter( $method_title, $that ){

	// filter...
	return $method_title;
}
$method_title
-
$that
-

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

WC_Integration::get_method_title()
woocommerce_integration_title
woocommerce/includes/abstracts/abstract-wc-integration.php 56
return apply_filters( 'woocommerce_integration_title', $this->method_title, $this );

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

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