WC_Widget_Product_Tag_Cloud::_topic_count_text()publicWC 2.6.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.

Returns topic count text.

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->_topic_count_text( $count );
$count(int) (required)
Count text.

Changelog

Since 2.6.0 Introduced.
Deprecated since 3.4.0

WC_Widget_Product_Tag_Cloud::_topic_count_text() code WC 8.6.1

public function _topic_count_text( $count ) {
	wc_deprecated_function( '_topic_count_text', '3.4.0', 'WC_Widget_Product_Tag_Cloud->topic_count_text' );
	return $this->topic_count_text( $count );
}