_woocommerce_term_recount()
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() woocommerce term recount code WC 9.6.1
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 ); }