Help with tags and Wordpress please :)

I am using Airtable and Make to automate my blog article creation and upload into Wordpress.

Airtable holds all my information, with 5-6 tags (separated by a comma) being held in 1 cell for each article.

How do I get these tags into Wordpress when I upload my article?

Is there a field to add tags when using the wordpress module? If not you will have to use the HTTP module to make an api call.

If a field is availble use the split() function with the separator being a comma. Then use the join() function to format it in the correct way so it can be mapped into the tag field.

Hope this helps!