bp_nouveau_member_template_part()
加载单个成员页面的适当内容
描述
来源
文件:bp-templates / bp-nouveau /包括/成员/ template-tags.php
函数bp_nouveau_member_template_part(){/ ** *在显示成员身体内容的显示前触发。* * @since buddypress 1.2.0 * / do_action('bp_before_member_body');if(bp_is_user_front()){bp_displayed_user_front_template_part();} else {$ template ='plugins';if(bp_is_user_actity()){$ template ='活动';} elseff(bp_is_user_blogs()){$ template ='博客';} elseff(bp_is_user_friends()){$ template ='friends';} elsef(bp_is_user_groups()){$ template ='groups';} elsef(bp_is_user_messages()){$ template ='messages';} elsef(bp_is_user_profile()){$ template ='profile'; } elseif ( bp_is_user_notifications() ) { $template = 'notifications'; } elseif ( bp_is_user_settings() ) { $template = 'settings'; } elseif ( bp_is_user_invites() ) { $template = 'invites'; } elseif ( bp_is_user_media() ) { $template = 'media'; } bp_nouveau_member_get_template_part( $template ); } /** * Fires after the display of member body content. * * @since BuddyPress 1.2.0 */ do_action( 'bp_after_member_body' ); }
变更乐
版本 | 描述 |
---|---|
Buddypress 3.0.0. | 介绍。 |