AI Search
Classic Search
Notifications
Clear all
How-to and Troubleshooting - wpForo 2.0
3
Posts
2
Users
1
Reactions
2,976
Views
Aug 17, 2018 3:00 pm
Is there any code snippet i can use to get users post count?
I want to offer a discount in my webshop for forum users that has more than ie. 10 posts/topics. Thats why i need to get the count / activity of the user in my php code.
Thanks
Rune
2 Replies
Aug 17, 2018 9:40 pm
Try this code, the $userid should be defined by you:
<?php $user_posts = wpforo_member( $userid, 'posts' ); ?>