You'll have to set up a new custom field for each post i.e. 'shortTitle' and populate with your new short link text, then add some code to your sidebar.php
<ul>
<?php
query_posts('showposts=30');
while (have_posts()) : the_post();
echo "<li><a href=".get_permalink($post->ID).">".get_post_meta($post->ID, 'shortTitle', true)."</a></li>" ;
endwhile;
?>
</ul>
If you want it to look the same output from the widget, take a look at the source code that it chucks out and work the css into the code above.
LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks