_woocommerce_term_recount()WC 1.0

Deprecated since 3.0. It is no longer supported and may 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.

Returns

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 10.6.2

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