That did the trick – thank you!
OK – it appears my hack above no longer works in 2.3. I’ve been beating on this for a while, and it is driving me crazy. Did _walk_bookmarks change or get deprecated or something?
Anyone have any suggestions?
Thanks in advance!
I’m using the WP-Andreas01 theme, and another unclean hack to fix this without changing anything else is to edit wp-includes/bookmark-template.php at line 125 (for WordPress 2.2).
Change
$output .= "<img src=\"$row->link_image\" $alt $title />";
to
$output .= "<img src=\"$row->link_image\" $alt $title /> $name";
to put the name just after picture.
Alternatively, change it to
$output .= "$name <img src=\"$row->link_image\" $alt $title />";
to put the name before the picture.
This fix assumes you are using full http paths to the images. If you are using relative paths to the images, change line 127 similarly.
Here’s hoping to a permanent WordPress fix or a plugin.
– Matt