Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: post count – 1

Try this… copy bb-template/front-page.php to my-templates/front-page.php and then in that file find:

<th><?php _e('Posts'); ?></th>

then change ‘Posts’ to ‘Replies’. Now, in your my-plugins folder create a file called decrement-posts.php and put this in it:

<?php

function bb_decrement( $value ) {

return $value-1;

}

add_filter( 'get_topic_posts', 'bb_decrement', 1);

?>

Skip to toolbar