Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
658 views
in Q2A Core by

How can I get a qa-q-list with questions which have new comments?

Does someone the code for that?

I have adjusted my website so unfortunately I don't have a recent activity page anymore, but still I would like to have the last 5 questions which are commented on the frontpage.

Any help is appreciated!

1 Answer

0 votes
by

you can simply call something like
http://www.question2answer.org/qa/comments
to get just recent comments.

if you want to limit the amount of questions displayed at one page you can modify qa-page-question.php :
search for $qa_content= and replace qa_opt('page_size_qs'), by a number (e.g. 5).

by
I dont want the comments page. I have a custom frontpage where I would like to have a list of recent commented questions on the bottom of the frontpage, so I need the php code which can give me that list so I can implement it into qa-theme.php
...