Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Plugin: Page links for bbPress

@fel64

Member

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 . '">&nbsp;&raquo;&nbsp;</a>';

return $title;
}

Skip to toolbar