Re: Show post Author next to Last poster?
you have to open two files from your BBpress template:
front-page.php
forums.php
look for the lines:
<th><?php _e(‘Topic’); ?> — <?php bb_new_topic_link(); ?></th>
<th><?php _e(‘Posts’); ?></th>
<th> is the titles so you will most likely put “<th><?php _e(‘Author’); ?></th>” showing Author as the title. Just remember what order you put it on if you put it third then you need to put it third on teh enxt step.
Look for:
<td class=”num”><?php topic_posts(); ?></td>
The class might be different but <?php topic_posts(); ?> is the same
so you put third:
<td class=”num”><?php topic_author(); ?></td>