Hi,
Using your plugin in a theme where we have meta boxes for categories and tags, but wondered if you have any tips/ideas how to make it work with custom taxonomies?
For example
$meta_boxes[] = array(
'taxonomies' => array( 'category', 'post_tag', 'product_cat', 'product_tag' ),
but on the users end they could have WooCommerce attribute terms such as Color which gives a taxonomy of 'pa_color' so this would work:
$meta_boxes[] = array(
'taxonomies' => array( 'category', 'post_tag', 'product_cat', 'product_tag', 'pa_color' ),
but we don't know what the terms will be, so wondering is there a way to make it work for all or any taxonomy, or even if the taxonomy begins with 'pa_'?