Actually - is there any way to display who has written the post on VB? Like at the top of every article in WP it lists who writes it, using this code:
Code:
<i>Written <?php the_time('F jS, Y') ?> <?php _e('by'); ?>
<?php
if ($vbridge[id] > 0) {
?>
<a href=<?php echo get_option('vbb_VBURL') ?>/member.php?u=<?php echo $vbridge[thread_starter] ?>><?php the_author() ?></a></i>
<?php
}
else {
the_author();
}
?>
Any way for that to display on the actual article that gets posted to the forums?