'cd-fb-like-widget', 'description' => __('Displays a Facebook Like Box', 'cd-fbspw' ), ); $this->WP_Widget( 'CD_FBSP_Like_Widget', __('Facebook Like Box', 'cd-fbspw' ), $widget_ops ); } function form( $instance ) { $defaults = array( 'title' => 'Find Us on Facebook', 'url' => 'http://www.facebook.com/WordPress', 'width' => 300, 'color_scheme' => 'light', 'show_faces' => 'on', 'border_color' => '', 'show_stream' => 'on', 'show_header' => 'off', 'height' => 400 ); $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_like_register' ); function cd_fbsp_like_register() { register_widget( 'CD_FBSP_Like_Widget' ); } } // end class_exists