Re: Plugin: Page links for bbPress
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;
}