ok, misread you wanted to keep trackback link
this is the code for your functions.php
function childtheme_override_postfooter() {
global $id, $post;
if ($post->post_type == 'page' && current_user_can('edit_posts')) { /* For logged-in "page" search results */
$postfooter = '<div class="entry-utility">' . thematic_postfooter_posteditlink();
$postfooter .= "</div><!-- .entry-utility -->\n";
} elseif ($post->post_type == 'page') { /* For logged-out "page" search results */
$postfooter = '';
} else {
if (is_single()) {
$postfooter = '<div class="entry-utility">' . thematic_postfooter_postcategory() . thematic_postfooter_postconnect();
} else {
$postfooter = '<div class="entry-utility">' . thematic_postfooter_postcategory();
}
$postfooter .= "</div><!-- .entry-utility -->\n";
}
// Put it on the screen
echo apply_filters( 'thematic_postfooter', $postfooter ); // Filter to override default post footer
} // end postfooter
function childtheme_override_postfooter_postconnect() {
$postconnect = __('Bookmark the ', 'thematic') . '<a href="' . apply_filters('the_permalink', get_permalink()) . '" title="' . __('Permalink to ', 'thematic') . the_title_attribute('echo=0') . '">';
$postconnect .= __('permalink', 'thematic') . '</a><span class="meta-sep meta-sep-tag-links"> | </span>';
if ((comments_open()) && (pings_open())) { /* Comments are open */
$postconnect .= __('Leave a trackback: ', 'thematic');
$postconnect .= '<a class="trackback-link" href="' . get_trackback_url() . '" title ="' . __('Trackback URL for your post', 'thematic') . '" rel="trackback">' . __('Trackback URL', 'thematic') . '</a>';
} elseif (!(comments_open()) && (pings_open())) { /* Only trackbacks are open */
$postconnect .= __('Leave a trackback: ', 'thematic');
$postconnect .= '<a class="trackback-link" href="' . get_trackback_url() . '" title ="' . __('Trackback URL for your post', 'thematic') . '" rel="trackback">' . __('Trackback URL', 'thematic') . '</a>';
}
// Display edit link on single posts
if (current_user_can('edit_posts')) {
$postconnect .= ' ' . thematic_postfooter_posteditlink();
}
return apply_filters('thematic_postfooter_postconnect',$postconnect);
} // end postfooter_postconnect
function childtheme_override_postfooter_postcategory() {
$postcategory = '<span class="cat-links">';
if (is_single()) {
$postcategory .= __('Posted in ', 'thematic') . get_the_category_list(', ');
$postcategory .= '</span>';
} elseif ( is_category() && $cats_meow = thematic_cats_meow(', ') ) { /* Returns categories other than the one queried */
$postcategory .= __('Also posted in ', 'thematic') . $cats_meow;
$postcategory .= '</span>';
} else {
$postcategory .= __('Posted in ', 'thematic') . get_the_category_list(', ');
$postcategory .= '</span>';
}
return apply_filters('thematic_postfooter_postcategory',$postcategory);
} // end postfooter_postcategory
also, in your css file you need to add
.cat-links {
display:block;
}
this will seperate category links and bookmark to seperate lines
tested here
http://www.dev.virtualpudding.com/
for future ref... check out
http://thematic.googlecode.com/svn/trunk/library/extensions/content-extensions.php
it includes the functions that thematic uses to display content
by using childtheme_override's you can manipulate this to how you want it to look.
it can take some time to get your head around but when it clicks, you'll be moulding your themes quicker than ever
hope this works for you