WC_Admin_Taxonomies::product_cat_description()publicWC 1.0

Description for product_cat page to aid users.

Method of the class: WC_Admin_Taxonomies{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Admin_Taxonomies = new WC_Admin_Taxonomies();
$WC_Admin_Taxonomies->product_cat_description();

WC_Admin_Taxonomies::product_cat_description() code WC 8.7.0

public function product_cat_description() {
	echo wp_kses(
		wpautop( __( 'Product categories for your store can be managed here. To change the order of categories on the front-end you can drag and drop to sort them. To see more categories listed click the "screen options" link at the top-right of this page.', 'woocommerce' ) ),
		array( 'p' => array() )
	);
}