19 lines
517 B
PHP
19 lines
517 B
PHP
|
|
<?php get_header( 'buddypress' ) ?>
|
||
|
|
|
||
|
|
<?php do_action( 'template_notices' ); ?>
|
||
|
|
|
||
|
|
<div class="activity no-ajax" role="main">
|
||
|
|
<?php if ( bp_has_activities( 'display_comments=threaded&show_hidden=true&include=' . bp_current_action() ) ) : ?>
|
||
|
|
|
||
|
|
<ul id="activity-stream" class="activity-list item-list">
|
||
|
|
<?php while ( bp_activities() ) : bp_the_activity(); ?>
|
||
|
|
|
||
|
|
<?php locate_template( array( 'activity/entry.php' ), true ) ?>
|
||
|
|
|
||
|
|
<?php endwhile; ?>
|
||
|
|
</ul>
|
||
|
|
|
||
|
|
<?php endif; ?>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<?php get_footer( 'buddypress' ) ?>
|