I am having a hard time finding out how to replace the widget titles of the "Links" widget. The widget is set to display the links category name as a title in the sidebar. I think this is the code I'm looking for (found in the default-widgets.php file):
// Display All Links widget as such in the widgets screen
echo $before_widget . $before_title. __('All Links') . $after_title . $after_widget;
return;
}
$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' => $show_images, 'show_description' => $show_description,
'show_name' => $show_name, 'show_rating' => $show_rating,
'category' => $category, 'class' => 'linkcat widget'
)));
}
But I don't see where I can change the title to display the ttftitles instead.
The website is http://www.honeysucklelife.com.
Any help would be much appreciated!
- frank