WC_Admin_List_Table_Products::render_sku_column()protectedWC 1.0

Render column: sku.

Method of the class: WC_Admin_List_Table_Products{}

No Hooks.

Return

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->render_sku_column();

WC_Admin_List_Table_Products::render_sku_column() code WC 8.7.0

protected function render_sku_column() {
	echo $this->object->get_sku() ? esc_html( $this->object->get_sku() ) : '<span class="na">&ndash;</span>';
}