WC_Admin_List_Table_Products::render_cogs_value_column()protectedWC 1.0

Render column: cost.

Method of the class: WC_Admin_List_Table_Products{}

No Hooks.

Returns

null. Nothing (null).

Usage

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

WC_Admin_List_Table_Products::render_cogs_value_column() code WC 9.8.5

protected function render_cogs_value_column() {
	$html = $this->object->get_cogs_value_html();
	echo $html ? wp_kses_post( $html ) : '<span class="na">&ndash;</span>';
}