I'm stumped -- I'd like to change the title of the default 'Links' widget so that it displays the word 'Links' instead of 'Blogroll' in the sidebar.
I'm looking through widgets.php, and it looks like most of the others have a place for a title, but not the 'links' widget:
function widget_links($args) {
global $wp_db_version;
extract($args);
if ( $wp_db_version < 3582 ) {
// This ONLY works with li/h2 sidebars.
get_links_list();
} else {
wp_list_bookmarks(array('title_before'=>$before_title, 'title_after'=>$after_title));
}
}
Anyone have an idea about how I'd change this?