wc_no_products_found()
Handles the loop when no products were found/no product exist.
Хуков нет.
Возвращает
null. Ничего (null).
Использование
wc_no_products_found();
Код wc_no_products_found() wc no products found WC 10.3.4
function wc_no_products_found() {
if ( ! function_exists( 'wc_print_notice' ) ) {
// wc_print_notice() is used in our default template, so this likely means this function was called out of
// context. We include the notice functions here to avoid a fatal error.
wc_doing_it_wrong(
__FUNCTION__,
'Function should only be used during frontend requests.',
'9.8.0'
);
return;
}
wc_get_template( 'loop/no-products-found.php' );
}