once BF_PATH . 'widget/widgets/class-bf-' . $id . '-widget.php'; register_widget( $class ); } } } } /** * Determine current showing sidebar is a top bar sidebar! */ public static function is_top_bar_sidebar() { return in_array( self::$current_sidebar, self::$top_bar_sidebars ); } /** * Determine current showing sidebar is a footer sidebar! */ public static function is_footer_sidebar() { return in_array( self::$current_sidebar, self::$footer_sidebars ); } /** * Determine current showing sidebar is a special sidebar! */ public static function is_special_sidebar() { if ( self::is_top_bar_sidebar() || self::is_footer_sidebar() ) { return true; } return false; } }