WC_Widget_Product_Tag_Cloud::_get_current_taxonomy()publicWC 1.0

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

Return the taxonomy being displayed.

Method of the class: WC_Widget_Product_Tag_Cloud{}

No Hooks.

Return

String.

Usage

$WC_Widget_Product_Tag_Cloud = new WC_Widget_Product_Tag_Cloud();
$WC_Widget_Product_Tag_Cloud->_get_current_taxonomy( $instance );
$instance(object) (required)
Widget instance.

Changelog

Deprecated since 3.4.0

WC_Widget_Product_Tag_Cloud::_get_current_taxonomy() code WC 8.7.0

public function _get_current_taxonomy( $instance ) {
	wc_deprecated_function( '_get_current_taxonomy', '3.4.0', 'WC_Widget_Product_Tag_Cloud->get_current_taxonomy' );
	return $this->get_current_taxonomy( $instance );
}