'cd-fb-likebtn-widget', 'description' => __( 'Facebook Likebtn Box', 'cd-fbspw' ) ); $this->WP_Widget( 'CD_FBSP_Likebtn_Widget', __( 'Facebook Likebtn', 'cd-fbspw' ), $widget_ops ); } function form( $instance ) { $defaults = array( 'title' => 'Top Like button', 'url' => get_bloginfo('url'), 'width' => 80, 'no_of_post' => '351451578209661', 'border_color' => '', 'color_scheme' => 'light', 'show_header' => 'off', 'font' => '', ); $instance = wp_parse_args( (array) $instance, $defaults ); extract( $instance ); ?>

'; echo ''; echo $after_widget; } } // end class /** * Register the widget here to make sure we get the right class... */ add_action( 'widgets_init', 'cd_fbsp_Likebtn_register' ); function cd_fbsp_Likebtn_register() { register_widget( 'CD_FBSP_Likebtn_Widget' ); } } // end class_exists