PATH:
home
/
letacommog
/
entrepro
/
wp-content
/
plugins
/
buddypress
/
bp-messages
/
screens
<?php /** * Messages: User's "Messages" screen handler * * @package BuddyPress * @subpackage MessageScreens * @since 3.0.0 */ /** * Load the Messages > Inbox screen. * * @since 1.0.0 */ function messages_screen_inbox() { if ( bp_action_variables() ) { bp_do_404(); return; } /** * Fires right before the loading of the Messages inbox screen template file. * * @since 1.0.0 */ do_action( 'messages_screen_inbox' ); /** * Filters the template to load for the Messages inbox screen. * * @since 1.0.0 * * @param string $template Path to the messages template to load. */ bp_core_load_template( apply_filters( 'messages_template_inbox', 'members/single/home' ) ); }
[+]
..
[-] sentbox.php
[edit]
[-] notices.php
[edit]
[-] inbox.php
[edit]
[-] starred.php
[edit]
[-] view.php
[edit]
[-] compose.php
[edit]