Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How to add reply Number in topic.php


r-a-y
Keymaster

@r-a-y

Try:

`function my_not_first_post() {
global $topic_template;

$current_page = $topic_template->pag_page – 1;
$post_position = $current_page * $topic_template->pag_num + $topic_template->current_post;
if ( 0 != $post_position ) {
// do your business here… eg.
echo ‘Re: ‘;
echo $post_position;
}

}`

Skip to toolbar