WC_Report_Out_Of_Stock::no_items()publicWC 1.0

No items found text.

Method of the class: WC_Report_Out_Of_Stock{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Report_Out_Of_Stock = new WC_Report_Out_Of_Stock();
$WC_Report_Out_Of_Stock->no_items();

WC_Report_Out_Of_Stock::no_items() code WC 8.6.1

public function no_items() {
	esc_html_e( 'No out of stock products found.', 'woocommerce' );
}