_woocommerce_term_recount()WC 1.0

Deprecated from version 3.0. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.

Internal function — this function is designed to be used by the kernel itself. It is not recommended to use this function in your code.

No Hooks.

Return

null. Nothing (null).

Usage

_woocommerce_term_recount( $terms, $taxonomy, $callback, $terms_are_term_taxonomy_ids );
$terms (required)
-
$taxonomy (required)
-
$callback (required)
-
$terms_are_term_taxonomy_ids (required)
-

Changelog

Deprecated since 3.0

_woocommerce_term_recount() code WC 8.7.0

function _woocommerce_term_recount( $terms, $taxonomy, $callback, $terms_are_term_taxonomy_ids ) {
	wc_deprecated_function( __FUNCTION__, '3.0', '_wc_term_recount' );
	return _wc_term_recount( $terms, $taxonomy, $callback, $terms_are_term_taxonomy_ids );
}