This is an old version of this answer!
Return to the current answerOpen wp-admin/includes/bookmark-template.php
Find
Replace with
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.
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




