woocommerce_integration_title
Return the title for admin screens.
Usage
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
- -
Where the hook is called
woocommerce_integration_title
woocommerce/includes/abstracts/abstract-wc-integration.php 56
return apply_filters( 'woocommerce_integration_title', $this->method_title, $this );