Enable menu_order for product tags

// Enable menu_order for product tags function enable_menu_order_for_product_tags() { register_taxonomy( ‘product_tag’, ‘product’, array( ‘hierarchical’ => false, ‘label’ => __( ‘Product tags’, ‘woocommerce’ ), ‘show_ui’ => true, ‘query_var’ => true, ‘rewrite’ => array( ‘slug’ => ‘product-tag’ ), ‘sort’ => true, ‘args’…Continue reading