WC_Email::get_bcc_field()protectedWC 1.0

Get the bcc field definition.

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

Хуков нет.

Возвращает

Массив.

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->get_bcc_field();

Код WC_Email::get_bcc_field() WC 9.8.1

protected function get_bcc_field() {
	return array(
		'title'       => __( 'Bcc(s)', 'woocommerce' ),
		'type'        => 'text',
		/* translators: %s: admin email */
		'description' => __( 'Enter Bcc recipients (comma-separated) for this email.', 'woocommerce' ),
		'placeholder' => '',
		'default'     => '',
		'desc_tip'    => true,
	);
}