I would like to now if I can access the TAGS of the question directly from a widget / layer.
What is the code for getting the tags in an array?
Can I get them without an extra database query?
--
Edit: I found function post_tag_list in qa-theme-base.php. There tags get output like that:
foreach ($post['q_tags'] as $tag)
$this->post_tag_item($tag, $class);
Can I access $post['q_tags'] without any "preparation" from the widget?
--
2nd part of the question: How to access Tags from Advanced Theme?