WC_Admin_List_Table_Coupons::render_description_column()
Render column: description.
{} It's a method of the class: WC_Admin_List_Table_Coupons{}
No Hooks.
Return
null
. Nothing.
Usage
// protected - for code of main (parent) or child class $result = $this->render_description_column();
Code of WC_Admin_List_Table_Coupons::render_description_column() WC Admin List Table Coupons::render description column WC 6.7.0
protected function render_description_column() { echo wp_kses_post( $this->object->get_description() ? $this->object->get_description() : '–' ); }