Notifications
Clear all

[Closed] Get forum subscribers

2 Posts
2 Users
0 Reactions
307 Views
Posts: 4
Topic starter
(@prokops_dk)
Active Member
Joined: 8 months ago

Hi there!

How do I get a list of members subscribed to current forum, to use on my template override? Sort of like "php wpforo_viewing( $forum )" but for subscribers.

Is there an easy way?

1 Reply
Robert
Posts: 10518
Admin
(@robert)
Support Team
Joined: 8 years ago

Hi @prokops_dk,

You can use this function to get subscriber ids of current forum:

WPF()->sbscrb->get_subscribes( [ 'itemid' => 111, 'type' => [ 'forum' , 'forum-topic'   ] ] );

 

Where the 111 is your sub-forum id.

In the database, all subscriptions are stored in wp_wpforo_subscribes table.