i figured out, through trial and error, how to get the “link description” to fall beneath the “link image/link name” in WP1.5 beta. I don’t know how it will work in WP1.2 but it’s worth a shot.
I had to edit the “links.php” page in the wp-includes folder. Here is the block of code where i made the edit, (lines 211 – 219):
if (($row->link_image != null) && $show_images) {
if (strstr($row->link_image, ‘http’))
echo “<img src=’$row->link_image’ $alt $title />”;
else // If it’s a relative path
echo “<img src='” . get_settings(‘siteurl’) . “$row->link_image’ $alt $title />”;
} else {
echo($name);
}
echo(‘‘);
i added a
tag to the last line (219) so it looked like this:
echo(‘
‘);
You can take a look at how it looks here: https://www.thisbluehippo.com/index.php?page_id=4
**Note: this edit will add the line break on both your links page and in your sidebar. There may be other areas that it effects as well which i have yet to fine out.