Notifications
Clear all

[Closed] Get forum subscribers

2 Posts
2 Users
0 Reactions
473 Views
Posts: 4
Topic starter
(@prokops_dk)
Active Member
Joined: 1 year 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: 10587
Admin
(@robert)
Support Team
Joined: 9 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.