bp_invites_screen_send_invite()
Handle the loading of the Invites > Sent Invites page.
Description
Source
File: bp-invites/screens/send-invites.php
function bp_invites_screen_send_invite() {
if ( bp_action_variables() ) {
bp_do_404();
return;
}
add_action( 'bp_template_content', 'bp_invites_send_invite_screen' );
/**
* Filters the template to load for the Invites > Sent Invites page.
*
* @since BuddyBoss 1.0.0
*
* @param string $value Path to the Invites > Sent Invites page template to load.
*/
bp_core_load_template( apply_filters( 'bp_invites_screen_send_invite', 'members/single/plugins' ) );
}
Changelog
| Version | Description |
|---|---|
| BuddyBoss 1.0.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.