~canonical-sysadmins/wordpress/3.9.x

« back to all changes in this revision

Viewing changes to wp-admin/edit-link-form.php

  • Committer: Paul Collins
  • Date: 2011-07-13 02:31:10 UTC
  • Revision ID: paul.collins@canonical.com-20110713023110-rvp7cjj31rsaomkr
import Wordpress 3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
        '<p>' . __( 'The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you don&#8217;t use in the Screen Options tab, or minimize boxes by clicking on the title bar of the box.' ) . '</p>' .
45
45
        '<p>' . __( 'XFN stands for <a href="http://gmpg.org/xfn/" target="_blank">XHTML Friends Network</a>, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking.' ) . '</p>' .
46
46
        '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
47
 
        '<p>' . __( '<a href="http://codex.wordpress.org/Links_Add_New_SubPanel" target="_blank">Documentation on Creating Links</a>' ) . '</p>' .
 
47
        '<p>' . __( '<a href="http://codex.wordpress.org/Links_Add_New_Screen" target="_blank">Documentation on Creating Links</a>' ) . '</p>' .
48
48
        '<p>' . __( '<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
49
49
);
50
50
 
53
53
?>
54
54
<div class="wrap">
55
55
<?php screen_icon(); ?>
56
 
<h2><?php echo esc_html( $title ); ?></h2>
 
56
<h2><?php echo esc_html( $title ); ?>  <a href="link-add.php" class="add-new-h2"><?php echo esc_html_x('Add New', 'link'); ?></a></h2>
57
57
 
58
58
<?php if ( isset( $_GET['added'] ) ) : ?>
59
59
<div id="message" class="updated"><p><?php _e('Link added.'); ?></p></div>
83
83
<div id="post-body">
84
84
<div id="post-body-content">
85
85
<div id="namediv" class="stuffbox">
86
 
<h3><label for="link_name"><?php _e('Name') ?></label></h3>
 
86
<h3><label for="link_name"><?php _ex('Name', 'link name') ?></label></h3>
87
87
<div class="inside">
88
88
        <input type="text" name="link_name" size="30" tabindex="1" value="<?php echo esc_attr($link->link_name); ?>" id="link_name" />
89
89
    <p><?php _e('Example: Nifty blogging software'); ?></p>