mirror of
https://gh.wpcy.net/https://github.com/buddypress/buddypress.git
synced 2026-05-31 05:04:29 +08:00
git-svn-id: https://buddypress.svn.wordpress.org/trunk@1379 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
49 lines
1.5 KiB
PHP
49 lines
1.5 KiB
PHP
<?php
|
|
|
|
function bp_wire_ajax_get_wire_posts() {
|
|
global $bp;
|
|
|
|
// TODO: Move this to a template file so it can be modified.
|
|
?>
|
|
|
|
<?php if ( bp_has_wire_posts( 'item_id=' . $_POST['bp_wire_item_id'] . '&can_post=1' ) ) : ?>
|
|
<div id="wire-count" class="pag-count">
|
|
<?php bp_wire_pagination_count() ?>
|
|
<img id="ajax-loader" src="<?php bp_wire_ajax_loader_src() ?>" height="7" alt="<?php _e( 'Loading', 'buddypress' ) ?>" style="display: none;" />
|
|
</div>
|
|
|
|
<div id="wire-pagination" class="pagination-links">
|
|
<?php bp_wire_pagination() ?>
|
|
</div>
|
|
|
|
<ul id="wire-post-list">
|
|
<?php $counter = 0; ?>
|
|
<?php while ( bp_wire_posts() ) : bp_the_wire_post(); ?>
|
|
<li<?php if ( $counter % 2 != 1 ) : ?> class="alt"<?php endif; ?>>
|
|
<div class="wire-post-metadata">
|
|
<?php bp_wire_post_author_avatar() ?>
|
|
<?php _e( 'On', 'buddypress' ) ?> <?php bp_wire_post_date() ?>
|
|
<?php bp_wire_post_author_name() ?> <?php _e( 'said:', 'buddypress' ) ?>
|
|
<?php bp_wire_delete_link() ?>
|
|
</div>
|
|
|
|
<div class="wire-post-content">
|
|
<?php bp_wire_post_content() ?>
|
|
</div>
|
|
</li>
|
|
<?php $counter++ ?>
|
|
<?php endwhile; ?>
|
|
</ul>
|
|
|
|
<?php else: ?>
|
|
|
|
<div id="message" class="info">
|
|
<p><?php bp_wire_no_posts_message() ?></p>
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
<input type="hidden" name="bp_wire_item_id" id="bp_wire_item_id" value="<?php echo attribute_escape( $_POST['bp_wire_item_id'] ) ?>" />
|
|
<?php
|
|
}
|
|
add_action( 'wp_ajax_get_wire_posts', 'bp_wire_ajax_get_wire_posts' );
|