bp_settings_screen_notification()
Show the notifications settings template.
Source Source
File: bp-settings/screens/notifications.php
function bp_settings_screen_notification() { if ( bp_action_variables() ) { bp_do_404(); return; } /** * Filters the template file path to use for the notification settings screen. * * @since 1.6.0 * * @param string $value Directory path to look in for the template file. */ bp_core_load_template( apply_filters( 'bp_settings_screen_notification_settings', 'members/single/settings/notifications' ) ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
1.5.0 | Introduced. |