WC_Admin_List_Table_Coupons::render_description_column()protectedWC 1.0

Render column: description.

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

Хуков нет.

Возвращает

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

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

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

Код WC_Admin_List_Table_Coupons::render_description_column() WC 8.7.0

protected function render_description_column() {
	echo wp_kses_post( $this->object->get_description() ? $this->object->get_description() : '–' );
}