Notifications
Clear all

wpForo 1.x.x [Closed] How to get first postid from topicid in php code

3 Posts
2 Users
0 Reactions
1,196 Views
Posts: 51
Topic starter
(@basatexcellent)
Trusted Member
Joined: 7 years ago

Anyone know how to get the first_postid in php code when the topicid is known?

In SQL something like:

SELECT first_postid FROM wp_wpforo_topics WHERE topicid = 92;

2 Replies
Sofy
Posts: 4900
 Sofy
Admin
(@sofy)
Support Team
Joined: 7 years ago

Hi @basatexcellent,

I'll ask developers and let you know asap. 

Sofy
Posts: 4900
 Sofy
Admin
(@sofy)
Support Team
Joined: 7 years ago

@basatexcellent,

Here it is:

<?php $first_postid = wpforo_topic( $topicid, 'first_postid' ); ?>