Well, I am using widgets, so edits in sidebar.php don't seem to be taking as they normally would - I am not sure how it all fits together though. I have done some edits to wp-includes/widgets.php.
Relevant code in sidebar.php is:
<h4>Links</h4>
<ul>
<?php wp_list_bookmarks('title_li=0&categorize=0'); ?>
</ul>
In widgets.php, I have:
* Display links widget.
*
* @since 2.2.0
*
* @param array $args Widget arguments.
*/
function wp_widget_links($args) {
extract($args, EXTR_SKIP);
$before_widget = preg_replace('/id="[^"]*"/','id="%id"', $before_widget);
wp_list_bookmarks(apply_filters('widget_links_args', array(
'title_before' => $before_title, 'title_after' => $after_title,
'category_before' => $before_widget, 'category_after' => $after_widget,
'show_images' => true, 'class' => 'linkcat widget'
)));
}
I appreciate your help...