Cannot update taxonomy custom field via REST API (Wpapi) – WordPress
I've created a custom taxonomy "vendors" in the following way: // Register Custom Taxonomy add_action( 'init', 'vendor_taxonomy', 0 ); function vendor_taxonomy() { $labels = array( 'name' => 'Vendors', 'singular_name' => 'Vendor', 'menu_name' => 'Vendors', 'all_items' => 'All Vendors', 'parent_item' =>…