Info
- 3 posts
- 2 voices
- Started 3 years ago by adeboy
- Latest reply from adeboy
- This topic is resolved
Forum name withing
-
- Posted 3 years ago #
I can't seem to find a function that returns the name and link to the parent forum of a topic in this loop on the front page
foreach ( $topics as $topic ) :
Does anyone know what the function is?
-
- Posted 3 years ago #
You would use either
forum_link($topic->forum_id); // self echosor
$link=forum_get_link($topic->forum_id); // returns a stringwhat you probably want is:
<a href="<?php forum_link(); ?>"><?php forum_name(); ?></a> -
- Posted 3 years ago #
Thanks for that
-
You must log in to post.