this post which the plugin author implemented for Wordpress. Author: Brandon Lyon Version: 1 Author URI: http://design.bybrandon.net/ */ function arrjs() { echo'

'; } function widget_arrjs($args) { extract($args); $options = get_option("widget_arrjs"); if (!is_array( $options )) { $options = array( 'title' => 'My Widget Title' ); } echo $before_widget; echo $before_title; echo $options['title']; echo $after_title; //Our Widget Content arrjs(); echo $after_widget; } function widgetarrjs_control() { $options = get_option("widget_arrjs"); if (!is_array( $options )) { $options = array( 'title' => 'My Widget Title' ); } if ($_POST['arrjs-Submit']) { $options['title'] = htmlspecialchars($_POST['arrjs-WidgetTitle']); update_option("widget_arrjs", $options); } ?>