[ Index ] |
PHP Cross Reference of BuddyPress |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Members: Profile screen handler 4 * 5 * @package BuddyPress 6 * @subpackage MembersScreens 7 * @since 3.0.0 8 */ 9 10 /** 11 * Handle the display of the profile page by loading the correct template file. 12 * 13 * @since 1.5.0 14 */ 15 function bp_members_screen_display_profile() { 16 17 /** 18 * Fires right before the loading of the Member profile screen template file. 19 * 20 * @since 1.5.0 21 */ 22 do_action( 'bp_members_screen_display_profile' ); 23 24 /** 25 * Filters the template to load for the Member profile page screen. 26 * 27 * @since 1.5.0 28 * 29 * @param string $template Path to the Member template to load. 30 */ 31 bp_core_load_template( apply_filters( 'bp_members_screen_display_profile', 'members/single/home' ) ); 32 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 22 01:00:56 2024 | Cross-referenced by PHPXref 0.7.1 |