logo

This is an old version of this answer!

Return to the current answer
Open wp-admin/includes/bookmark-template.php
Find
$output .= 

Replace with
$output .= $the_link == '#' ? $title : ('<a href="' . $the_link . '"' . $rel . $title . $target . '>'); 


Now if you add a link with href = #, it'll be printed as plain text.

I couldn't think of any solution without modifying the core yet. Will try.

Utkarsh Kukreti | 04/23/10 at 3:05pm

This is an old version of this answer!

Return to the current answer