WC_Gateway_BACS::thankyou_page()publicWC 1.0

Output for the order received page.

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

Хуков нет.

Возвращает

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

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

$WC_Gateway_BACS = new WC_Gateway_BACS();
$WC_Gateway_BACS->thankyou_page( $order_id );
$order_id(int) (обязательный)
Order ID.

Код WC_Gateway_BACS::thankyou_page() WC 8.7.0

public function thankyou_page( $order_id ) {

	if ( $this->instructions ) {
		echo wp_kses_post( wpautop( wptexturize( wp_kses_post( $this->instructions ) ) ) );
	}
	$this->bank_details( $order_id );

}