Re: Numbered Posts
The post_position
in the bb_post
table has the correct number for each post. I don’t know much about php, but I made a little plugin for my forum, which seems to work.
function get_post_num() {
global $bb_post;
return$bb_post->post_position;
function post_num() {
global $bb_post;
echo $bb_post->post_position;
}?>
I just place post_num()
where I wanted it to show. Hope this helps?