Is there a way to show the total number of articles in the database on the home page?
We use the kb as Q&A for visitors to our support group. Showing the total number of articles, in all categories, would help promote the value of the kb.
![]() |
|
Is there a way to show the total number of articles in the database on the home page?
We use the kb as Q&A for visitors to our support group. Showing the total number of articles, in all categories, would help promote the value of the kb.
SQL: SELECT COUNT(*) FROM kbp_kb_entry.
To add this on the page see index.php there is some examples how to assign variables to template.
// example of adding global variable to template
// in template you should have a template tag - {global_test}
//$page->assign('global_test', '<b>test global variable</b>');
You must log in to post.