Function to echo (or display?) wordpress tags in the head section
wp_get_post_tags() returns an array. You cannot echo an array or all you get is “Array”. If this is the ados_setKeywords you mean, then you need to feed it a comma delimited string, not an array. ados_setKeywords(implode(‘, ‘,wp_get_post_tags()));