Forums
-
- Forum
- Posts
-
- Installation
- 28,405
- Troubleshooting
- 62,339
- Themes
- 10,400
- Plugins
- 15,321
- Requests & Feedback
- 14,951
- Showcase
- 3,254
-
I also added a snippet of code to append a link to the last post.
Find the end of the function page_links_add_links
and replace this
return $title;
}
with this
$felgtlpl = get_topic_last_post_link($topic->topic_id);
$title = $title . ' <a href="' . $felgtlpl . '"> » </a>';
return $title;
}