WC_Product_External::set_button_text()publicWC 3.0.0

Set button text.

Метод класса: WC_Product_External{}

Хуков нет.

Возвращает

null. Ничего (null).

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

$WC_Product_External = new WC_Product_External();
$WC_Product_External->set_button_text( $button_text );
$button_text(строка) (обязательный)
Button text.

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

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

Код WC_Product_External::set_button_text() WC 8.7.0

public function set_button_text( $button_text ) {
	$this->set_prop( 'button_text', $button_text );
}