本文整理汇总了PHP中xprofile_get_random_profile_data函数的典型用法代码示例。如果您正苦于以下问题:PHP xprofile_get_random_profile_data函数的具体用法?PHP xprofile_get_random_profile_data怎么用?PHP xprofile_get_random_profile_data使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了xprofile_get_random_profile_data函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: bp_friends_random_members
function bp_friends_random_members( $total_members = 5 ) {
global $bp;
if ( !$user_ids = wp_cache_get( 'friends_random_users', 'bp' ) ) {
$user_ids = BP_Core_User::get_users( 'random', $total_members );
wp_cache_set( 'friends_random_users', $user_ids, 'bp' );
}
?>
<?php if ( $user_ids['users'] ) { ?>
<ul class="item-list" id="random-members-list">
<?php for ( $i = 0; $i < count( $user_ids['users'] ); $i++ ) { ?>
<li>
<a href="<?php echo bp_core_get_user_domain( $user_ids['users'][$i]->user_id ) ?>"><?php echo bp_core_fetch_avatar( array( 'item_id' => $user_ids['users'][$i]->user_id, 'type' => 'thumb' ) ) ?></a>
<h5><?php echo bp_core_get_userlink( $user_ids['users'][$i]->user_id ) ?></h5>
<?php if ( function_exists( 'xprofile_get_random_profile_data' ) ) { ?>
<?php $random_data = xprofile_get_random_profile_data( $user_ids['users'][$i]->user_id, true ); ?>
<div class="profile-data">
<p class="field-name"><?php echo $random_data[0]->name ?></p>
<?php echo $random_data[0]->value ?>
</div>
<?php } ?>
<div class="action">
<?php if ( function_exists( 'bp_add_friend_button' ) ) { ?>
<?php bp_add_friend_button( $user_ids['users'][$i]->user_id ) ?>
<?php } ?>
</div>
</li>
<?php } ?>
</ul>
<?php } else { ?>
<div id="message" class="info">
<p><?php _e( "There aren't enough site members to show a random sample just yet.", 'buddypress' ) ?></p>
</div>
<?php } ?>
<?php
}
示例2: bp_the_site_member_random_profile_data
function bp_the_site_member_random_profile_data()
{
global $site_members_template;
if (function_exists('xprofile_get_random_profile_data')) {
?>
<?php
$random_data = xprofile_get_random_profile_data($site_members_template->member->id, true);
?>
<strong><?php
echo wp_filter_kses($random_data[0]->name);
?>
</strong>
<?php
echo wp_filter_kses($random_data[0]->value);
?>
<?php
}
}
示例3: bp_member_random_profile_data
/**
* Output a random piece of profile data for the current member in the loop.
*/
function bp_member_random_profile_data()
{
global $members_template;
if (bp_is_active('xprofile')) {
?>
<?php
$random_data = xprofile_get_random_profile_data($members_template->member->id, true);
?>
<strong><?php
echo wp_filter_kses($random_data[0]->name);
?>
</strong>
<?php
echo wp_filter_kses($random_data[0]->value);
?>
<?php
}
}