bp_notifications_screen_read()
Catch and route the ‘read’ notifications screen.
Description Description
Source Source
File: bp-notifications/screens/read.php
function bp_notifications_screen_read() {
/**
* Fires right before the loading of the notifications read screen template file.
*
* @since 1.9.0
*/
do_action( 'bp_notifications_screen_read' );
/**
* Filters the template to load for the notifications read screen.
*
* @since 1.9.0
*
* @param string $template Path to the notifications read template to load.
*/
bp_core_load_template( apply_filters( 'bp_notifications_template_read', 'members/single/home' ) );
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.9.0 | Introduced. |