80 <div id="post-body" class="metabox-holder columns-<?php echo 1 == get_current_screen()->get_columns() ? '1' : '2'; ?>"> |
80 <div id="post-body" class="metabox-holder columns-<?php echo 1 == get_current_screen()->get_columns() ? '1' : '2'; ?>"> |
81 <div id="post-body-content"> |
81 <div id="post-body-content"> |
82 <div id="namediv" class="stuffbox"> |
82 <div id="namediv" class="stuffbox"> |
83 <h3><label for="link_name"><?php _ex('Name', 'link name') ?></label></h3> |
83 <h3><label for="link_name"><?php _ex('Name', 'link name') ?></label></h3> |
84 <div class="inside"> |
84 <div class="inside"> |
85 <input type="text" name="link_name" size="30" tabindex="1" value="<?php echo esc_attr($link->link_name); ?>" id="link_name" /> |
85 <input type="text" name="link_name" size="30" value="<?php echo esc_attr($link->link_name); ?>" id="link_name" /> |
86 <p><?php _e('Example: Nifty blogging software'); ?></p> |
86 <p><?php _e('Example: Nifty blogging software'); ?></p> |
87 </div> |
87 </div> |
88 </div> |
88 </div> |
89 |
89 |
90 <div id="addressdiv" class="stuffbox"> |
90 <div id="addressdiv" class="stuffbox"> |
91 <h3><label for="link_url"><?php _e('Web Address') ?></label></h3> |
91 <h3><label for="link_url"><?php _e('Web Address') ?></label></h3> |
92 <div class="inside"> |
92 <div class="inside"> |
93 <input type="text" name="link_url" size="30" class="code" tabindex="1" value="<?php echo esc_attr($link->link_url); ?>" id="link_url" /> |
93 <input type="text" name="link_url" size="30" class="code" value="<?php echo esc_attr($link->link_url); ?>" id="link_url" /> |
94 <p><?php _e('Example: <code>http://wordpress.org/</code> — don’t forget the <code>http://</code>'); ?></p> |
94 <p><?php _e('Example: <code>http://wordpress.org/</code> — don’t forget the <code>http://</code>'); ?></p> |
95 </div> |
95 </div> |
96 </div> |
96 </div> |
97 |
97 |
98 <div id="descriptiondiv" class="stuffbox"> |
98 <div id="descriptiondiv" class="stuffbox"> |
99 <h3><label for="link_description"><?php _e('Description') ?></label></h3> |
99 <h3><label for="link_description"><?php _e('Description') ?></label></h3> |
100 <div class="inside"> |
100 <div class="inside"> |
101 <input type="text" name="link_description" size="30" tabindex="1" value="<?php echo isset($link->link_description) ? esc_attr($link->link_description) : ''; ?>" id="link_description" /> |
101 <input type="text" name="link_description" size="30" value="<?php echo isset($link->link_description) ? esc_attr($link->link_description) : ''; ?>" id="link_description" /> |
102 <p><?php _e('This will be shown when someone hovers over the link in the blogroll, or optionally below the link.'); ?></p> |
102 <p><?php _e('This will be shown when someone hovers over the link in the blogroll, or optionally below the link.'); ?></p> |
103 </div> |
103 </div> |
104 </div> |
104 </div> |
105 </div><!-- /post-body-content --> |
105 </div><!-- /post-body-content --> |
106 |
106 |