$before_title, 'title_after' => $after_title, 'category_before' => $before_widget, 'category_after' => $after_widget, 'show_images' => true, 'class' => 'linkcat widget' )); } } } endif; function widget_MyLinksWidget_init() { // Check for the required API functions if ( !function_exists('register_sidebar_widget') || !function_exists('register_widget_control') ) return; // main widget function function widget_MyLinksWidget($args) { $pw = new WP_MyLinksWidget(); $pw->widget_my_links($args); } if (function_exists('wp_register_sidebar_widget')) { wp_register_sidebar_widget('MyLinksWidget1', 'My Links Widget', 'widget_MyLinksWidget'); } else { register_sidebar_widget('My Links Widget', 'widget_MyLinksWidget'); } } // Tell Dynamic Sidebar about our new widget and its control add_action('plugins_loaded', 'widget_MyLinksWidget_init'); ?>