I am making a new WordPress template and I want to just get, in text format, the list of tags associated with a post. I am using
get_the_tag_list($id)
But the problem is that it returns the URL as well as the text. Is there any way to just get the "text" of tags attached to a post seperated by a comma ?
i.e. tag1, tag2, tag3, tag4 etc without the URL and just as text?
Thanks