Thanks for taking the time to reply again pizdin_dim.
I tried it once more and again it’s just re-shuffled the options around but “none” is still being selected as the deault.
My code now looks like this:
<label>
<input type=”radio” name=”link_target” value=”” <?php echo(($link->link_target == ”) ? ‘checked=”checked”‘ : ”); ?> /><?php _e(‘none’) ?></label>
<label>
<input type=”radio” name=”link_target” value=”_top” <?php echo(($link->link_target == ‘_top’) ? ‘checked=”checked”‘ : ”); ?> />_top
</label>
<label>
<input type=”radio” name=”link_target” value=”_blank” <?php echo(($link->link_target == ‘_blank’) ? ‘checked=”checked”‘ : ”); ?> />_blank
</label>
I can see the shuffle of order in my admin page when I’m on the ad link page. So I know that the change of order is working. Just can’t figure out exactly what is setting “none” to be selected as the default!