I'm trying to run some PHP code once in a loop in bbpress (wordpress forums)
The code I'm trying to run is a sidebar:
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(5) ) : else : ?>
<p class="empty-content-area">
<span>Oops! No sweet stuff in here</span><br />
<a href="wp-admin/widgets.php">Add a widget</a>
</p>
<?php endif; ?>
I would like this to display only once below the first reply and nothing else after the 2nd, 3rd reply etc.
How can I do this?