Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
423 views
in Q2A Core by

Is there a id for each answer ? and  is it  in the functions defined ,which one ?thx

Q2A version: 1.54

2 Answers

+2 votes
by
selected by
 
Best answer
Besides jatin.soni answer, and more specifically, each post has an id, answers amongts posts being labelled with an 'A' type. Also you have a bunch of functions to handle these. Have a look there, mainly in the "Post management" section for what you want: http://www.question2answer.org/functions.php
+3 votes
by

Of course each answer has unique ID and you can find in a_list_item($a_item) where $a_item holds post id so you can use in that function something like below

$a_item['raw']['postid'];

...