woocommerce_gateway_method_title хук-фильтрWC 2.6.0

Filter the method title.

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

add_filter( 'woocommerce_gateway_method_title', 'wp_kama_woocommerce_gateway_method_title_filter', 10, 2 );

/**
 * Function for `woocommerce_gateway_method_title` filter-hook.
 * 
 * @param string             $title Method title.
 * @param WC_Payment_Gateway $that  Payment gateway instance.
 *
 * @return string
 */
function wp_kama_woocommerce_gateway_method_title_filter( $title, $that ){

	// filter...
	return $title;
}
$title(строка)
Method title.
$that(WC_Payment_Gateway)
Payment gateway instance.

Список изменений

С версии 2.6.0 Введена.

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

WC_Payment_Gateway::get_method_title()
woocommerce_gateway_method_title
woocommerce/includes/abstracts/abstract-wc-payment-gateway.php 183
return apply_filters( 'woocommerce_gateway_method_title', $this->method_title, $this );

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

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