Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
  • Register
Welcome to the Q&A for Question2Answer.

If you have questions about the platform, click here to ask and please use English.

If you just want to try Q2A, please use the demo, which also grants admin access.

Apr 29: Q2A 1.5.2

Is there a way to output the total number of questions in wordpress theme

0 votes
Is there a way to output the total number of questions and answers in my wordpress theme.

I would like to have on the sidebar of my (Blog) a widget like "activity-count-widget". Is it possible?

Thanks in advanced
asked Sep 7, 2011 in Q2A Core by anonymous

1 Answer

0 votes

Probably the easiest way is to simply run a SQL query like this, using the native MySQL functions.

SELECT COUNT(*) FROM qa_posts WHERE type='Q'

Alternatively, you can access Q2A outside of Q2A using the code here. You should be able to run a query using the function qa_db_query_raw.

answered Sep 8, 2011 by DisgruntledGoat