Open links as _blank by default
-
as i haven’t found no clear solution here in the forum, digged a little and found that modifying wp-includes/bookmark-template.php we can achieve that
locate:
if ( '' != $target ) $target = ' target="' . $target . '"';
and add just afterwards:
else $target = ' target="_blank"';
if you want some link to open in the same window, mark its target as “_top”
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Open links as _blank by default’ is closed to new replies.