woocommerce_integration_title хук-фильтр . WC 1.0
Return the title for admin screens.
Использование
add_filter( 'woocommerce_integration_title', 'filter_function_name_4733', 10, 2 ); function filter_function_name_4733( $method_title, $that ){ // filter... return $method_title; }
- $method_title
- -
- $that
- -
Где вызывается хук
woocommerce_integration_title
woocommerce/includes/abstracts/abstract-wc-integration.php 56
return apply_filters( 'woocommerce_integration_title', $this->method_title, $this );