Changeset 9703 for trunk/wp-admin/edit-link-form.php
- Timestamp:
- 11/14/2008 11:58:17 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-link-form.php
r9699 r9703 374 374 <h3><label for="link_name"><?php _e('Name') ?></label></h3> 375 375 <div class="inside"> 376 <input type="text" name="link_name" size="30" tabindex="1" value="<?php echo $link->link_name; ?>" id="link_name" /> <br />377 < ?php _e('Example: Nifty blogging software'); ?>376 <input type="text" name="link_name" size="30" tabindex="1" value="<?php echo $link->link_name; ?>" id="link_name" /> 377 <p><?php _e('Example: Nifty blogging software'); ?></p> 378 378 </div> 379 379 </div> … … 382 382 <h3><label for="link_url"><?php _e('Web Address') ?></label></h3> 383 383 <div class="inside"> 384 <input type="text" name="link_url" size="30" tabindex="1" value="<?php echo $link->link_url; ?>" id="link_url" /> <br />385 < ?php _e('Example: <code>http://wordpress.org/</code> — don’t forget the <code>http://</code>'); ?>384 <input type="text" name="link_url" size="30" tabindex="1" value="<?php echo $link->link_url; ?>" id="link_url" /> 385 <p><?php _e('Example: <code>http://wordpress.org/</code> — don’t forget the <code>http://</code>'); ?></p> 386 386 </div> 387 387 </div> … … 390 390 <h3><label for="link_description"><?php _e('Description') ?></label></h3> 391 391 <div class="inside"> 392 <input type="text" name="link_description" size="30" tabindex="1" value="<?php echo isset($link->link_description) ? $link->link_description : ''; ?>" id="link_description" /> <br />393 < ?php _e('This will be shown when someone hovers over the link in the blogroll, or optionally below the link.'); ?>392 <input type="text" name="link_description" size="30" tabindex="1" value="<?php echo isset($link->link_description) ? $link->link_description : ''; ?>" id="link_description" /> 393 <p><?php _e('This will be shown when someone hovers over the link in the blogroll, or optionally below the link.'); ?></p> 394 394 </div> 395 395 </div>
Note: See TracChangeset
for help on using the changeset viewer.