Forums
-
- Forum
- Posts
-
- Installation
- 28,502
- Troubleshooting
- 62,683
- Themes
- 10,431
- Plugins
- 15,360
- Requests & Feedback
- 14,972
- Showcase
- 3,256
-
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;
}