Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
426 views
in Q2A Core by
I tried: $q_item['raw']['userid'] but this seems to be empty?

I am dealing with function q_item_title($q_item) from qa-theme-base.php, where we can call $q_item['raw']['closedbyid'] for example.

And in general: Is there any way to check what associative field $q_item['raw'][ ??? ] is providing?

Thx, Kai

1 Answer

+2 votes
by

use print_r($q_item) to get all associative fields.

...