bp_friends_register_widgets()
Register the friends widget.
Description
Source
File: bp-friends/bp-friends-widgets.php
function bp_friends_register_widgets() { if ( ! bp_is_active( 'friends' ) ) { return; } // The Connections widget works only when looking at a displayed user, // and the concept of "displayed user" doesn't exist on non-root blogs, // so we don't register the widget there. if ( ! bp_is_root_blog() ) { return; } add_action( 'widgets_init', function() { register_widget( 'BP_Core_Friends_Widget' ); } ); }
Changelog
Version | Description |
---|---|
BuddyPress 1.9.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.