bp_core_register_widgets()
Register bp-core widgets.
Description
Source
File: bp-core/bp-core-widgets.php
function bp_core_register_widgets() { add_action( 'widgets_init', function() { register_widget( 'BP_Core_Login_Widget' ); } ); if(is_multisite()) { add_action( 'widgets_init', function() { register_widget( 'BP_Core_Network_Posts_Widget' ); } ); } if(function_exists("bp_get_following_ids")) { add_action( 'widgets_init', function() { register_widget( 'BP_Core_Follow_Following_Widget' ); } ); } }
Changelog
Version | Description |
---|---|
BuddyPress 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.