Changeset 11114
- Timestamp:
- 04/28/2009 07:45:57 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-link-form.php
r11109 r11114 161 161 <label for="link_target_blank" class="selectit"> 162 162 <input id="link_target_blank" type="radio" name="link_target" value="_blank" <?php echo ( isset( $link->link_target ) && ($link->link_target == '_blank') ? 'checked="checked"' : ''); ?> /> 163 < code>_blank</code></label><br />163 <?php _e('<code>_blank</code> - new window or tab.'); ?></label><br /> 164 164 <label for="link_target_top" class="selectit"> 165 165 <input id="link_target_top" type="radio" name="link_target" value="_top" <?php echo ( isset( $link->link_target ) && ($link->link_target == '_top') ? 'checked="checked"' : ''); ?> /> 166 < code>_top</code></label><br />166 <?php _e('<code>_top</code> - current window or tab, with no frames.'); ?></label><br /> 167 167 <label for="link_target_none" class="selectit"> 168 168 <input id="link_target_none" type="radio" name="link_target" value="" <?php echo ( isset( $link->link_target ) && ($link->link_target == '') ? 'checked="checked"' : ''); ?> /> 169 <?php _e(' none')?></label>169 <?php _e('<code>_none</code> - same window or tab.'); ?></label> 170 170 </fieldset> 171 <p><?php _e('Choose the frame your link targets. Essentially this means if you choose <code>_blank</code> your link will open in a new window.'); ?></p>171 <p><?php _e('Choose the frame your link targets.'); ?></p> 172 172 <?php 173 173 }
Note: See TracChangeset
for help on using the changeset viewer.