MyBB Community Forums

Full Version: Get A Forum's Stats from Forum ID
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can I fetch a forum's or multiple forum's stats such as posts and threads on forumdisplay.php and showthread.php using the forum ID?
Anyone pls
I believe you can do this by reading the forums cache
$f_cache = $cache->read('forums');
$id = 5; // whats the forum id?
$posts = $f_cache[$id]['whatever'];

I haven't tested it yet.