Re: current bbpress support forum template – time for update?
Ooh. Probably. Nice idea.
<?php
/*
Plugin Name: Freshlink
Description: Turns freshness into a link to the latest post
Author: tisme, fel64
*/
function freshness_latestlink( $fresh ) {
global $topic;
$felgtlpl = get_topic_last_post_link($topic->topic_id);
return "<a href='$felgtlpl'>$fresh</a>";
}
//add_filter('', 'freshness_latestlink', 101);
?>
Unfortunately there doesn’t seem to be a filter for it – only for modifying the actual time, not the text output. Since topic_time() also directly writes to the HTML, you can’t modify it first. You have to change the template, from
<?php topic_time(); ?>
to
<?php echo freshness_latestlink( get_topic_time() ); ?>