Changeset 7181 for trunk/wp-admin/edit-link-form.php
- Timestamp:
- 03/07/2008 10:05:54 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/edit-link-form.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-link-form.php
r7104 r7181 72 72 <h3><?php _e('Name') ?></h3> 73 73 <div class="inside"> 74 <input type="text" name="link_name" size="30" tabindex="1" value="<?php echo $link->link_name; ?>" id="link_name" /> 74 <input type="text" name="link_name" size="30" tabindex="1" value="<?php echo $link->link_name; ?>" id="link_name" /><br /> 75 <?php _e('Example: Nifty blogging software'); ?> 75 76 </div> 76 77 </div> 77 78 78 79 <div id="addressdiv" class="stuffbox"> 79 <h3><?php _e('Address') ?></h3> 80 <div class="inside"> 81 <input type="text" name="link_url" size="30" tabindex="1" value="<?php echo $link->link_url; ?>" id="link_url" /> 80 <h3><?php _e('Web Address') ?></h3> 81 <div class="inside"> 82 <input type="text" name="link_url" size="30" tabindex="1" value="<?php echo $link->link_url; ?>" id="link_url" /><br /> 83 <?php _e('Example: <code>http://wordpress.org/</code> — don’t forget the <code>http://</code>'); ?> 82 84 </div> 83 85 </div> … … 86 88 <h3><?php _e('Description') ?></h3> 87 89 <div class="inside"> 88 <input type="text" name="link_description" size="30" tabindex="1" value="<?php echo $link->link_description; ?>" id="link_description" /> 90 <input type="text" name="link_description" size="30" tabindex="1" value="<?php echo $link->link_description; ?>" id="link_description" /><br /> 91 <?php _e('This will be shown when someone hovers over the link in the blogroll, or optionally below the link.'); ?> 89 92 </div> 90 93 </div> … … 133 136 <label for="link_target_blank" class="selectit"> 134 137 <input id="link_target_blank" type="radio" name="link_target" value="_blank" <?php echo(($link->link_target == '_blank') ? 'checked="checked"' : ''); ?> /> 135 <code>_blank</code></label> 138 <code>_blank</code></label><br /> 136 139 <label for="link_target_top" class="selectit"> 137 140 <input id="link_target_top" type="radio" name="link_target" value="_top" <?php echo(($link->link_target == '_top') ? 'checked="checked"' : ''); ?> /> 138 <code>_top</code></label> 141 <code>_top</code></label><br /> 139 142 <label for="link_target_none" class="selectit"> 140 143 <input id="link_target_none" type="radio" name="link_target" value="" <?php echo(($link->link_target == '') ? 'checked="checked"' : ''); ?> /> … … 259 262 <h3><?php _e('Advanced') ?></h3> 260 263 <div class="inside"> 261 <table class=" editform" style="width: 100%;" cellspacing="2" cellpadding="5">262 <tr >263 <th style="width: 20%;" scope="row"><?php _e('Image Address:') ?></th>264 <td style="width: 80%;"><input type="text" name="link_image" size="50" value="<?php echo $link->link_image; ?>" style="width: 95%" /></td>265 </tr> 266 <tr >267 <th scope="row"><?php _e('RSS Address:') ?></th>264 <table class="form-table" style="width: 100%;" cellspacing="2" cellpadding="5"> 265 <tr class="form-field"> 266 <th valign="top" scope="row"><label for="link_image"><?php _e('Image Address') ?></label></th> 267 <td><input type="text" name="link_image" id="link_image" size="50" value="<?php echo $link->link_image; ?>" style="width: 95%" /></td> 268 </tr> 269 <tr class="form-field"> 270 <th valign="top" scope="row"><label for="rss_uri"><?php _e('RSS Address') ?></label></th> 268 271 <td><input name="link_rss" type="text" id="rss_uri" value="<?php echo $link->link_rss; ?>" size="50" style="width: 95%" /></td> 269 272 </tr> 270 <tr >271 <th scope="row"><?php _e('Notes:') ?></th>272 <td><textarea name="link_notes" cols="50" rows="10" style="width: 95%"><?php echo $link->link_notes; ?></textarea></td>273 </tr> 274 <tr >275 <th scope="row"><?php _e('Rating:') ?></th>276 <td><select name="link_rating" size="1">273 <tr class="form-field"> 274 <th valign="top" scope="row"><label for="link_notes"><?php _e('Notes') ?></label></th> 275 <td><textarea name="link_notes" id="link_notes" cols="50" rows="10" style="width: 95%"><?php echo $link->link_notes; ?></textarea></td> 276 </tr> 277 <tr class="form-field"> 278 <th valign="top" scope="row"><label for="link_rating"><?php _e('Rating') ?></label></th> 279 <td><select name="link_rating" id="link_rating" size="1"> 277 280 <?php 278 281 for ($r = 0; $r < 10; $r++) {
Note: See TracChangeset
for help on using the changeset viewer.