Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
thepassage.overlookedtracks.com
/
wp-content9
/
plugins
/
buddypress
/
bp-notifications
/
Editing: bp-notifications-loader.php
<?php /** * BuddyPress Member Notifications Loader. * * Initializes the Notifications component. * * @package BuddyPress * @subpackage NotificationsLoader * @since 1.9.0 */ // Exit if accessed directly. defined( 'ABSPATH' ) || exit; /** * Set up the bp-notifications component. * * @since 1.9.0 */ function bp_setup_notifications() { buddypress()->notifications = new BP_Notifications_Component(); } add_action( 'bp_setup_components', 'bp_setup_notifications', 6 );
Save
Cancel