Feb 26, 2021 12:33 pm
Hello,
In the blog activity data, is it possible to also count the number of Custom Post type that the user has created?
Thank you
1 Reply
Feb 26, 2021 1:31 pm
Hi @jarruego,
Please follow the steps below:
1. Customize the wp-content/plugins/wpforo/wpf-themes/classic/profile-home.php file as described in this doc: https://wpforo.com/docs/root/forum-themes/theme-customization/
2. Find this code:
WPF()->member->blog_posts(WPF()->current_object['userid'])
3. Replace with the following one:
count_user_posts( WPF()->current_object['userid'] , array('post', 'page', 'custom_post_type'), true )