PATH:
home
/
letacommog
/
entrepro
/
wp-content
/
plugins
/
buddypress
/
bp-blogs
<?php /** * BuddyPress Blogs Widgets. * * @package BuddyPress * @subpackage BlogsWidgets * @since 1.0.0 */ // Exit if accessed directly. defined( 'ABSPATH' ) || exit; /** * Register the widgets for the Blogs component. */ function bp_blogs_register_widgets() { global $wpdb; if ( bp_is_active( 'activity' ) && bp_is_root_blog( $wpdb->blogid ) ) { add_action( 'widgets_init', function() { register_widget( 'BP_Blogs_Recent_Posts_Widget' ); } ); } } add_action( 'bp_register_widgets', 'bp_blogs_register_widgets' );
[+]
..
[+]
classes
[+]
actions
[+]
screens
[-] bp-blogs-template.php
[edit]
[-] bp-blogs-cache.php
[edit]
[-] bp-blogs-activity.php
[edit]
[-] bp-blogs-functions.php
[edit]
[-] bp-blogs-loader.php
[edit]
[-] bp-blogs-widgets.php
[edit]
[-] bp-blogs-filters.php
[edit]