Notifications
Clear all

wpForo 1.x.x [Solved] How to get the topic URL by topicid?

2 Posts
1 Users
1 Reactions
952 Views
Posts: 35
Topic starter
(@tahtu)
Member
Joined: 5 years ago

I would like to link from a post to a forum topic of a new added topic with:

<?php
$topicid = WPF()->topic->add( [ ...] );
$url = WPF()-> ...
 
How can I complete the last line of this code?
1 Reply
Posts: 35
Topic starter
(@tahtu)
Member
Joined: 5 years ago

The answer is:

$url = WPF()->topic->get_topic_url($topicid);