'cd-fb-comments-widget', 'description' => __( 'Facebook Comments Box', 'cd-fbspw' ) ); $this->WP_Widget( 'CD_FBSP_Comments_Widget', __( 'Facebook Comments', 'cd-fbspw' ), $widget_ops ); } function form( $instance ) { $defaults = array( 'title' => 'Top Articles', 'url' => get_bloginfo('url'), 'width' => 300, 'no_of_post' => 2, 'border_color' => '', 'color_scheme' => 'light', 'show_header' => 'off', '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_comments_register' ); function cd_fbsp_comments_register() { register_widget( 'CD_FBSP_Comments_Widget' ); } } // end class_exists