_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.
This is an internal function for using it by WP core itself. It's not recommended to use this function in your code.
No Hooks.
Return
null
. Nothing.
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 7.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 ); }