示例#1
0
        ?>
"><?php 
        bp_member_name();
        ?>
</a></div>
					<div class="item-meta"><span class="activity"><?php 
        bp_member_last_active();
        ?>
</span></div>
				</div>
				<?php 
        do_action('bp_friend_requests_item');
        ?>
				<div class="action">
					<a class="button accept" href="<?php 
        bp_friend_accept_request_link();
        ?>
"><?php 
        _e('Accept', 'buddypress');
        ?>
</a> &nbsp;
					<a class="button reject" href="<?php 
        bp_friend_reject_request_link();
        ?>
"><?php 
        _e('Reject', 'buddypress');
        ?>
</a>

					<?php 
        do_action('bp_friend_requests_item_action');
示例#2
0
		<?php while ( bp_members() ) : bp_the_member(); ?>

			<li id="friendship-<?php bp_friend_friendship_id() ?>">
				<div class="item-avatar">
					<a href="<?php bp_member_link() ?>"><?php bp_member_avatar() ?></a>
				</div>

				<div class="item">
					<div class="item-title"><a href="<?php bp_member_link() ?>"><?php bp_member_name() ?></a></div>
					<div class="item-meta"><span class="activity"><?php bp_member_last_active() ?></span></div>
				</div>

				<?php do_action( 'bp_friend_requests_item' ) ?>

				<div class="action">
					<a class="button accept" href="<?php bp_friend_accept_request_link() ?>"><?php _e( 'Accept', 'buddypress' ); ?></a> &nbsp;
					<a class="button reject" href="<?php bp_friend_reject_request_link() ?>"><?php _e( 'Reject', 'buddypress' ); ?></a>

					<?php do_action( 'bp_friend_requests_item_action' ) ?>
				</div>
			</li>

		<?php endwhile; ?>
	</ul>

	<?php do_action( 'bp_friend_requests_content' ) ?>

<?php else: ?>

	<div id="message" class="info">
		<p><?php _e( 'You have no pending friendship requests.', 'buddypress' ); ?></p>