'cd-fb-activity-widget', 'description' => __('Displays a Facebook Activity Feed', 'cd-fbspw' ) ); $this->WP_Widget( 'CD_FBSP_Activity_Widget', __( 'Facebook Activity Feed', 'cd-fbspw' ), $widget_ops ); } function form( $instance ) { $defaults = array( 'title' => 'Activity', 'url' => get_bloginfo('url'), 'width' => 300, 'height' => 300, 'border_color' => '', 'color_scheme' => 'light', 'show_header' => 'off', 'show_recommendations' => 'on', 'font' => '', ); $instance = wp_parse_args( (array) $instance, $defaults ); extract( $instance ); ?>
/>
/>
'; echo $after_widget; } } // end class /** * Register the widget here to make sure we get the right class... */ add_action( 'widgets_init', 'cd_fbsp_activity_register' ); function cd_fbsp_activity_register() { register_widget( 'CD_FBSP_Activity_Widget' ); } } // end class_exists