I used my widgetifyr.com tool to turn your widget into a more full featured widget. You still need to edit the stackoverflow user id, but you can change the title. I eliminated the iframe as well so it should fit more easily into peoples theme. It actually works as is for me even though I don't have the star images.
<?php
/*
Plugin Name: favorite stackoverflow questions
Plugin URI: http://www.widgetifyr.com
Description: Displays favorite stackoverflow questions
Author: Glenn Bennett
Version: 1.0
Author URI: http://www.widgetifyr.com
*/
// We're putting the plugin's functions inside the init function to ensure the
// required Sidebar Widget functions are available.
function widget_favstack_init()
{
/* Your custom code starts here */
/* ---------------------------- */
/* Your Function */
function favstack()
{
/* Your Code ----------------- */
$content = file_get_contents('http://www.codegeeks.net/SOF/SOFF.php?userid=25202');
if ($content !== false) {
// do something with the content
echo $content;
} else {
// an error happened
echo "Unable to read favorites";
}
/* End of Your Code ---------- */
}
/* -------------------------- */
/* Your custom code ends here */
function widget_favstack($args)
{
// Collect our widget's options, or define their defaults.
$options = get_option('widget_favstack');
$title = empty($options['title']) ? __('FavStack') : $options['title'];
extract($args);
echo $before_widget;
echo $before_title;
echo $title;
echo $after_title;
favstack();
echo $after_widget;
}
// This is the function that outputs the form to let users edit
// the widget's title. It's an optional feature, but were're doing
// it all for you so why not!
function widget_favstack_control()
{
// Collect our widget options.
$options = $newoptions = get_option('widget_favstack');
// This is for handing the control form submission.
if ( $_POST['widget_favstack-submit'] )
{
// Clean up control form submission options
$newoptions['title'] = strip_tags(stripslashes($_POST['widget_favstack-title']));
}
// If original widget options do not match control form
// submission options, update them.
if ( $options != $newoptions )
{
$options = $newoptions;
update_option('widget_favstack', $options);
}
$title = attribute_escape($options['title']);
echo '<p><label for="favstack-title">';
echo 'Title: <input style="width: 250px;" id="widget_favstack-title" name="widget_favstack-title" type="text" value="';
echo $title;
echo '" />';
echo '</label></p>';
echo '<input type="hidden" id="widget_favstack-submit" name="widget_favstack-submit" value="1" />';
}
// This registers the widget.
register_sidebar_widget('favorite stackoverflow questions', 'widget_favstack');
// This registers the (optional!) widget control form.
register_widget_control('favorite stackoverflow questions', 'widget_favstack_control');
}
add_action('plugins_loaded', 'widget_favstack_init');
?>
Would it be possible for you to just return a list. That usually seems to work best for widgets. Also a limited number of favorites would be good.