]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/includes/meta-boxes.php
WordPress 3.5.1
[autoinstalls/wordpress.git] / wp-admin / includes / meta-boxes.php
1 <?php
2
3 // -- Post related Meta Boxes
4
5 /**
6  * Display post submit form fields.
7  *
8  * @since 2.7.0
9  *
10  * @param object $post
11  */
12 function post_submit_meta_box($post) {
13         global $action;
14
15         $post_type = $post->post_type;
16         $post_type_object = get_post_type_object($post_type);
17         $can_publish = current_user_can($post_type_object->cap->publish_posts);
18 ?>
19 <div class="submitbox" id="submitpost">
20
21 <div id="minor-publishing">
22
23 <?php // Hidden submit button early on so that the browser chooses the right button when form is submitted with Return key ?>
24 <div style="display:none;">
25 <?php submit_button( __( 'Save' ), 'button', 'save' ); ?>
26 </div>
27
28 <div id="minor-publishing-actions">
29 <div id="save-action">
30 <?php if ( 'publish' != $post->post_status && 'future' != $post->post_status && 'pending' != $post->post_status ) { ?>
31 <input <?php if ( 'private' == $post->post_status ) { ?>style="display:none"<?php } ?> type="submit" name="save" id="save-post" value="<?php esc_attr_e('Save Draft'); ?>" class="button" />
32 <?php } elseif ( 'pending' == $post->post_status && $can_publish ) { ?>
33 <input type="submit" name="save" id="save-post" value="<?php esc_attr_e('Save as Pending'); ?>" class="button" />
34 <?php } ?>
35 <span class="spinner"></span>
36 </div>
37 <?php if ( $post_type_object->public ) : ?>
38 <div id="preview-action">
39 <?php
40 if ( 'publish' == $post->post_status ) {
41         $preview_link = esc_url( get_permalink( $post->ID ) );
42         $preview_button = __( 'Preview Changes' );
43 } else {
44         $preview_link = set_url_scheme( get_permalink( $post->ID ) );
45         $preview_link = esc_url( apply_filters( 'preview_post_link', add_query_arg( 'preview', 'true', $preview_link ) ) );
46         $preview_button = __( 'Preview' );
47 }
48 ?>
49 <a class="preview button" href="<?php echo $preview_link; ?>" target="wp-preview" id="post-preview"><?php echo $preview_button; ?></a>
50 <input type="hidden" name="wp-preview" id="wp-preview" value="" />
51 </div>
52 <?php endif; // public post type ?>
53 <div class="clear"></div>
54 </div><!-- #minor-publishing-actions -->
55
56 <div id="misc-publishing-actions">
57
58 <div class="misc-pub-section"><label for="post_status"><?php _e('Status:') ?></label>
59 <span id="post-status-display">
60 <?php
61 switch ( $post->post_status ) {
62         case 'private':
63                 _e('Privately Published');
64                 break;
65         case 'publish':
66                 _e('Published');
67                 break;
68         case 'future':
69                 _e('Scheduled');
70                 break;
71         case 'pending':
72                 _e('Pending Review');
73                 break;
74         case 'draft':
75         case 'auto-draft':
76                 _e('Draft');
77                 break;
78 }
79 ?>
80 </span>
81 <?php if ( 'publish' == $post->post_status || 'private' == $post->post_status || $can_publish ) { ?>
82 <a href="#post_status" <?php if ( 'private' == $post->post_status ) { ?>style="display:none;" <?php } ?>class="edit-post-status hide-if-no-js"><?php _e('Edit') ?></a>
83
84 <div id="post-status-select" class="hide-if-js">
85 <input type="hidden" name="hidden_post_status" id="hidden_post_status" value="<?php echo esc_attr( ('auto-draft' == $post->post_status ) ? 'draft' : $post->post_status); ?>" />
86 <select name='post_status' id='post_status'>
87 <?php if ( 'publish' == $post->post_status ) : ?>
88 <option<?php selected( $post->post_status, 'publish' ); ?> value='publish'><?php _e('Published') ?></option>
89 <?php elseif ( 'private' == $post->post_status ) : ?>
90 <option<?php selected( $post->post_status, 'private' ); ?> value='publish'><?php _e('Privately Published') ?></option>
91 <?php elseif ( 'future' == $post->post_status ) : ?>
92 <option<?php selected( $post->post_status, 'future' ); ?> value='future'><?php _e('Scheduled') ?></option>
93 <?php endif; ?>
94 <option<?php selected( $post->post_status, 'pending' ); ?> value='pending'><?php _e('Pending Review') ?></option>
95 <?php if ( 'auto-draft' == $post->post_status ) : ?>
96 <option<?php selected( $post->post_status, 'auto-draft' ); ?> value='draft'><?php _e('Draft') ?></option>
97 <?php else : ?>
98 <option<?php selected( $post->post_status, 'draft' ); ?> value='draft'><?php _e('Draft') ?></option>
99 <?php endif; ?>
100 </select>
101  <a href="#post_status" class="save-post-status hide-if-no-js button"><?php _e('OK'); ?></a>
102  <a href="#post_status" class="cancel-post-status hide-if-no-js"><?php _e('Cancel'); ?></a>
103 </div>
104
105 <?php } ?>
106 </div><!-- .misc-pub-section -->
107
108 <div class="misc-pub-section" id="visibility">
109 <?php _e('Visibility:'); ?> <span id="post-visibility-display"><?php
110
111 if ( 'private' == $post->post_status ) {
112         $post->post_password = '';
113         $visibility = 'private';
114         $visibility_trans = __('Private');
115 } elseif ( !empty( $post->post_password ) ) {
116         $visibility = 'password';
117         $visibility_trans = __('Password protected');
118 } elseif ( $post_type == 'post' && is_sticky( $post->ID ) ) {
119         $visibility = 'public';
120         $visibility_trans = __('Public, Sticky');
121 } else {
122         $visibility = 'public';
123         $visibility_trans = __('Public');
124 }
125
126 echo esc_html( $visibility_trans ); ?></span>
127 <?php if ( $can_publish ) { ?>
128 <a href="#visibility" class="edit-visibility hide-if-no-js"><?php _e('Edit'); ?></a>
129
130 <div id="post-visibility-select" class="hide-if-js">
131 <input type="hidden" name="hidden_post_password" id="hidden-post-password" value="<?php echo esc_attr($post->post_password); ?>" />
132 <?php if ($post_type == 'post'): ?>
133 <input type="checkbox" style="display:none" name="hidden_post_sticky" id="hidden-post-sticky" value="sticky" <?php checked(is_sticky($post->ID)); ?> />
134 <?php endif; ?>
135 <input type="hidden" name="hidden_post_visibility" id="hidden-post-visibility" value="<?php echo esc_attr( $visibility ); ?>" />
136 <input type="radio" name="visibility" id="visibility-radio-public" value="public" <?php checked( $visibility, 'public' ); ?> /> <label for="visibility-radio-public" class="selectit"><?php _e('Public'); ?></label><br />
137 <?php if ( $post_type == 'post' && current_user_can( 'edit_others_posts' ) ) : ?>
138 <span id="sticky-span"><input id="sticky" name="sticky" type="checkbox" value="sticky" <?php checked( is_sticky( $post->ID ) ); ?> /> <label for="sticky" class="selectit"><?php _e( 'Stick this post to the front page' ); ?></label><br /></span>
139 <?php endif; ?>
140 <input type="radio" name="visibility" id="visibility-radio-password" value="password" <?php checked( $visibility, 'password' ); ?> /> <label for="visibility-radio-password" class="selectit"><?php _e('Password protected'); ?></label><br />
141 <span id="password-span"><label for="post_password"><?php _e('Password:'); ?></label> <input type="text" name="post_password" id="post_password" value="<?php echo esc_attr($post->post_password); ?>" /><br /></span>
142 <input type="radio" name="visibility" id="visibility-radio-private" value="private" <?php checked( $visibility, 'private' ); ?> /> <label for="visibility-radio-private" class="selectit"><?php _e('Private'); ?></label><br />
143
144 <p>
145  <a href="#visibility" class="save-post-visibility hide-if-no-js button"><?php _e('OK'); ?></a>
146  <a href="#visibility" class="cancel-post-visibility hide-if-no-js"><?php _e('Cancel'); ?></a>
147 </p>
148 </div>
149 <?php } ?>
150
151 </div><!-- .misc-pub-section -->
152
153 <?php
154 // translators: Publish box date format, see http://php.net/date
155 $datef = __( 'M j, Y @ G:i' );
156 if ( 0 != $post->ID ) {
157         if ( 'future' == $post->post_status ) { // scheduled for publishing at a future date
158                 $stamp = __('Scheduled for: <b>%1$s</b>');
159         } else if ( 'publish' == $post->post_status || 'private' == $post->post_status ) { // already published
160                 $stamp = __('Published on: <b>%1$s</b>');
161         } else if ( '0000-00-00 00:00:00' == $post->post_date_gmt ) { // draft, 1 or more saves, no date specified
162                 $stamp = __('Publish <b>immediately</b>');
163         } else if ( time() < strtotime( $post->post_date_gmt . ' +0000' ) ) { // draft, 1 or more saves, future date specified
164                 $stamp = __('Schedule for: <b>%1$s</b>');
165         } else { // draft, 1 or more saves, date specified
166                 $stamp = __('Publish on: <b>%1$s</b>');
167         }
168         $date = date_i18n( $datef, strtotime( $post->post_date ) );
169 } else { // draft (no saves, and thus no date specified)
170         $stamp = __('Publish <b>immediately</b>');
171         $date = date_i18n( $datef, strtotime( current_time('mysql') ) );
172 }
173
174 if ( $can_publish ) : // Contributors don't get to choose the date of publish ?>
175 <div class="misc-pub-section curtime">
176         <span id="timestamp">
177         <?php printf($stamp, $date); ?></span>
178         <a href="#edit_timestamp" class="edit-timestamp hide-if-no-js"><?php _e('Edit') ?></a>
179         <div id="timestampdiv" class="hide-if-js"><?php touch_time(($action == 'edit'), 1); ?></div>
180 </div><?php // /misc-pub-section ?>
181 <?php endif; ?>
182
183 <?php do_action('post_submitbox_misc_actions'); ?>
184 </div>
185 <div class="clear"></div>
186 </div>
187
188 <div id="major-publishing-actions">
189 <?php do_action('post_submitbox_start'); ?>
190 <div id="delete-action">
191 <?php
192 if ( current_user_can( "delete_post", $post->ID ) ) {
193         if ( !EMPTY_TRASH_DAYS )
194                 $delete_text = __('Delete Permanently');
195         else
196                 $delete_text = __('Move to Trash');
197         ?>
198 <a class="submitdelete deletion" href="<?php echo get_delete_post_link($post->ID); ?>"><?php echo $delete_text; ?></a><?php
199 } ?>
200 </div>
201
202 <div id="publishing-action">
203 <span class="spinner"></span>
204 <?php
205 if ( !in_array( $post->post_status, array('publish', 'future', 'private') ) || 0 == $post->ID ) {
206         if ( $can_publish ) :
207                 if ( !empty($post->post_date_gmt) && time() < strtotime( $post->post_date_gmt . ' +0000' ) ) : ?>
208                 <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Schedule') ?>" />
209                 <?php submit_button( __( 'Schedule' ), 'primary button-large', 'publish', false, array( 'accesskey' => 'p' ) ); ?>
210 <?php   else : ?>
211                 <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Publish') ?>" />
212                 <?php submit_button( __( 'Publish' ), 'primary button-large', 'publish', false, array( 'accesskey' => 'p' ) ); ?>
213 <?php   endif;
214         else : ?>
215                 <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Submit for Review') ?>" />
216                 <?php submit_button( __( 'Submit for Review' ), 'primary button-large', 'publish', false, array( 'accesskey' => 'p' ) ); ?>
217 <?php
218         endif;
219 } else { ?>
220                 <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Update') ?>" />
221                 <input name="save" type="submit" class="button button-primary button-large" id="publish" accesskey="p" value="<?php esc_attr_e('Update') ?>" />
222 <?php
223 } ?>
224 </div>
225 <div class="clear"></div>
226 </div>
227 </div>
228
229 <?php
230 }
231
232 /**
233  * Display attachment submit form fields.
234  *
235  * @since 3.5.0
236  *
237  * @param object $post
238  */
239 function attachment_submit_meta_box( $post ) {
240         global $action;
241
242         $post_type = $post->post_type;
243         $post_type_object = get_post_type_object($post_type);
244         $can_publish = current_user_can($post_type_object->cap->publish_posts);
245 ?>
246 <div class="submitbox" id="submitpost">
247
248 <div id="minor-publishing">
249
250 <?php // Hidden submit button early on so that the browser chooses the right button when form is submitted with Return key ?>
251 <div style="display:none;">
252 <?php submit_button( __( 'Save' ), 'button', 'save' ); ?>
253 </div>
254
255
256 <div id="misc-publishing-actions">
257         <?php
258         // translators: Publish box date format, see http://php.net/date
259         $datef = __( 'M j, Y @ G:i' );
260         $stamp = __('Uploaded on: <b>%1$s</b>');
261         $date = date_i18n( $datef, strtotime( $post->post_date ) );
262         ?>
263         <div class="misc-pub-section curtime">
264                 <span id="timestamp"><?php printf($stamp, $date); ?></span>
265         </div><!-- .misc-pub-section -->
266
267         <?php do_action('attachment_submitbox_misc_actions'); ?>
268 </div><!-- #misc-publishing-actions -->
269 <div class="clear"></div>
270 </div><!-- #minor-publishing -->
271
272 <div id="major-publishing-actions">
273         <div id="delete-action">
274         <?php
275         if ( current_user_can( 'delete_post', $post->ID ) )
276                 if ( EMPTY_TRASH_DAYS && MEDIA_TRASH ) {
277                         echo "<a class='submitdelete deletion' href='" . get_delete_post_link( $post->ID ) . "'>" . __( 'Trash' ) . "</a>";
278                 } else {
279                         $delete_ays = ! MEDIA_TRASH ? " onclick='return showNotice.warn();'" : '';
280                         echo  "<a class='submitdelete deletion'$delete_ays href='" . get_delete_post_link( $post->ID, null, true ) . "'>" . __( 'Delete Permanently' ) . "</a>";
281                 }
282         ?>
283         </div>
284
285         <div id="publishing-action">
286                 <span class="spinner"></span>
287                 <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Update') ?>" />
288                 <input name="save" type="submit" class="button-primary button-large" id="publish" accesskey="p" value="<?php esc_attr_e('Update') ?>" />
289         </div>
290         <div class="clear"></div>
291 </div><!-- #major-publishing-actions -->
292
293 </div>
294
295 <?php
296 }
297
298 /**
299  * Display post format form elements.
300  *
301  * @since 3.1.0
302  *
303  * @param object $post
304  */
305 function post_format_meta_box( $post, $box ) {
306         if ( current_theme_supports( 'post-formats' ) && post_type_supports( $post->post_type, 'post-formats' ) ) :
307         $post_formats = get_theme_support( 'post-formats' );
308
309         if ( is_array( $post_formats[0] ) ) :
310                 $post_format = get_post_format( $post->ID );
311                 if ( !$post_format )
312                         $post_format = '0';
313                 // Add in the current one if it isn't there yet, in case the current theme doesn't support it
314                 if ( $post_format && !in_array( $post_format, $post_formats[0] ) )
315                         $post_formats[0][] = $post_format;
316         ?>
317         <div id="post-formats-select">
318                 <input type="radio" name="post_format" class="post-format" id="post-format-0" value="0" <?php checked( $post_format, '0' ); ?> /> <label for="post-format-0"><?php _e('Standard'); ?></label>
319                 <?php foreach ( $post_formats[0] as $format ) : ?>
320                 <br /><input type="radio" name="post_format" class="post-format" id="post-format-<?php echo esc_attr( $format ); ?>" value="<?php echo esc_attr( $format ); ?>" <?php checked( $post_format, $format ); ?> /> <label for="post-format-<?php echo esc_attr( $format ); ?>"><?php echo esc_html( get_post_format_string( $format ) ); ?></label>
321                 <?php endforeach; ?><br />
322         </div>
323         <?php endif; endif;
324 }
325
326 /**
327  * Display post tags form fields.
328  *
329  * @since 2.6.0
330  *
331  * @param object $post
332  */
333 function post_tags_meta_box($post, $box) {
334         $defaults = array('taxonomy' => 'post_tag');
335         if ( !isset($box['args']) || !is_array($box['args']) )
336                 $args = array();
337         else
338                 $args = $box['args'];
339         extract( wp_parse_args($args, $defaults), EXTR_SKIP );
340         $tax_name = esc_attr($taxonomy);
341         $taxonomy = get_taxonomy($taxonomy);
342         $disabled = !current_user_can($taxonomy->cap->assign_terms) ? 'disabled="disabled"' : '';
343         $comma = _x( ',', 'tag delimiter' );
344 ?>
345 <div class="tagsdiv" id="<?php echo $tax_name; ?>">
346         <div class="jaxtag">
347         <div class="nojs-tags hide-if-js">
348         <p><?php echo $taxonomy->labels->add_or_remove_items; ?></p>
349         <textarea name="<?php echo "tax_input[$tax_name]"; ?>" rows="3" cols="20" class="the-tags" id="tax-input-<?php echo $tax_name; ?>" <?php echo $disabled; ?>><?php echo str_replace( ',', $comma . ' ', get_terms_to_edit( $post->ID, $tax_name ) ); // textarea_escaped by esc_attr() ?></textarea></div>
350         <?php if ( current_user_can($taxonomy->cap->assign_terms) ) : ?>
351         <div class="ajaxtag hide-if-no-js">
352                 <label class="screen-reader-text" for="new-tag-<?php echo $tax_name; ?>"><?php echo $box['title']; ?></label>
353                 <div class="taghint"><?php echo $taxonomy->labels->add_new_item; ?></div>
354                 <p><input type="text" id="new-tag-<?php echo $tax_name; ?>" name="newtag[<?php echo $tax_name; ?>]" class="newtag form-input-tip" size="16" autocomplete="off" value="" />
355                 <input type="button" class="button tagadd" value="<?php esc_attr_e('Add'); ?>" /></p>
356         </div>
357         <p class="howto"><?php echo esc_attr( $taxonomy->labels->separate_items_with_commas ); ?></p>
358         <?php endif; ?>
359         </div>
360         <div class="tagchecklist"></div>
361 </div>
362 <?php if ( current_user_can($taxonomy->cap->assign_terms) ) : ?>
363 <p class="hide-if-no-js"><a href="#titlediv" class="tagcloud-link" id="link-<?php echo $tax_name; ?>"><?php echo $taxonomy->labels->choose_from_most_used; ?></a></p>
364 <?php endif; ?>
365 <?php
366 }
367
368 /**
369  * Display post categories form fields.
370  *
371  * @since 2.6.0
372  *
373  * @param object $post
374  */
375 function post_categories_meta_box( $post, $box ) {
376         $defaults = array('taxonomy' => 'category');
377         if ( !isset($box['args']) || !is_array($box['args']) )
378                 $args = array();
379         else
380                 $args = $box['args'];
381         extract( wp_parse_args($args, $defaults), EXTR_SKIP );
382         $tax = get_taxonomy($taxonomy);
383
384         ?>
385         <div id="taxonomy-<?php echo $taxonomy; ?>" class="categorydiv">
386                 <ul id="<?php echo $taxonomy; ?>-tabs" class="category-tabs">
387                         <li class="tabs"><a href="#<?php echo $taxonomy; ?>-all"><?php echo $tax->labels->all_items; ?></a></li>
388                         <li class="hide-if-no-js"><a href="#<?php echo $taxonomy; ?>-pop"><?php _e( 'Most Used' ); ?></a></li>
389                 </ul>
390
391                 <div id="<?php echo $taxonomy; ?>-pop" class="tabs-panel" style="display: none;">
392                         <ul id="<?php echo $taxonomy; ?>checklist-pop" class="categorychecklist form-no-clear" >
393                                 <?php $popular_ids = wp_popular_terms_checklist($taxonomy); ?>
394                         </ul>
395                 </div>
396
397                 <div id="<?php echo $taxonomy; ?>-all" class="tabs-panel">
398                         <?php
399             $name = ( $taxonomy == 'category' ) ? 'post_category' : 'tax_input[' . $taxonomy . ']';
400             echo "<input type='hidden' name='{$name}[]' value='0' />"; // Allows for an empty term set to be sent. 0 is an invalid Term ID and will be ignored by empty() checks.
401             ?>
402                         <ul id="<?php echo $taxonomy; ?>checklist" data-wp-lists="list:<?php echo $taxonomy?>" class="categorychecklist form-no-clear">
403                                 <?php wp_terms_checklist($post->ID, array( 'taxonomy' => $taxonomy, 'popular_cats' => $popular_ids ) ) ?>
404                         </ul>
405                 </div>
406         <?php if ( current_user_can($tax->cap->edit_terms) ) : ?>
407                         <div id="<?php echo $taxonomy; ?>-adder" class="wp-hidden-children">
408                                 <h4>
409                                         <a id="<?php echo $taxonomy; ?>-add-toggle" href="#<?php echo $taxonomy; ?>-add" class="hide-if-no-js">
410                                                 <?php
411                                                         /* translators: %s: add new taxonomy label */
412                                                         printf( __( '+ %s' ), $tax->labels->add_new_item );
413                                                 ?>
414                                         </a>
415                                 </h4>
416                                 <p id="<?php echo $taxonomy; ?>-add" class="category-add wp-hidden-child">
417                                         <label class="screen-reader-text" for="new<?php echo $taxonomy; ?>"><?php echo $tax->labels->add_new_item; ?></label>
418                                         <input type="text" name="new<?php echo $taxonomy; ?>" id="new<?php echo $taxonomy; ?>" class="form-required form-input-tip" value="<?php echo esc_attr( $tax->labels->new_item_name ); ?>" aria-required="true"/>
419                                         <label class="screen-reader-text" for="new<?php echo $taxonomy; ?>_parent">
420                                                 <?php echo $tax->labels->parent_item_colon; ?>
421                                         </label>
422                                         <?php wp_dropdown_categories( array( 'taxonomy' => $taxonomy, 'hide_empty' => 0, 'name' => 'new'.$taxonomy.'_parent', 'orderby' => 'name', 'hierarchical' => 1, 'show_option_none' => '&mdash; ' . $tax->labels->parent_item . ' &mdash;' ) ); ?>
423                                         <input type="button" id="<?php echo $taxonomy; ?>-add-submit" data-wp-lists="add:<?php echo $taxonomy ?>checklist:<?php echo $taxonomy ?>-add" class="button category-add-submit" value="<?php echo esc_attr( $tax->labels->add_new_item ); ?>" />
424                                         <?php wp_nonce_field( 'add-'.$taxonomy, '_ajax_nonce-add-'.$taxonomy, false ); ?>
425                                         <span id="<?php echo $taxonomy; ?>-ajax-response"></span>
426                                 </p>
427                         </div>
428                 <?php endif; ?>
429         </div>
430         <?php
431 }
432
433 /**
434  * Display post excerpt form fields.
435  *
436  * @since 2.6.0
437  *
438  * @param object $post
439  */
440 function post_excerpt_meta_box($post) {
441 ?>
442 <label class="screen-reader-text" for="excerpt"><?php _e('Excerpt') ?></label><textarea rows="1" cols="40" name="excerpt" id="excerpt"><?php echo $post->post_excerpt; // textarea_escaped ?></textarea>
443 <p><?php _e('Excerpts are optional hand-crafted summaries of your content that can be used in your theme. <a href="http://codex.wordpress.org/Excerpt" target="_blank">Learn more about manual excerpts.</a>'); ?></p>
444 <?php
445 }
446
447 /**
448  * Display trackback links form fields.
449  *
450  * @since 2.6.0
451  *
452  * @param object $post
453  */
454 function post_trackback_meta_box($post) {
455         $form_trackback = '<input type="text" name="trackback_url" id="trackback_url" class="code" value="'. esc_attr( str_replace("\n", ' ', $post->to_ping) ) .'" />';
456         if ('' != $post->pinged) {
457                 $pings = '<p>'. __('Already pinged:') . '</p><ul>';
458                 $already_pinged = explode("\n", trim($post->pinged));
459                 foreach ($already_pinged as $pinged_url) {
460                         $pings .= "\n\t<li>" . esc_html($pinged_url) . "</li>";
461                 }
462                 $pings .= '</ul>';
463         }
464
465 ?>
466 <p><label for="trackback_url"><?php _e('Send trackbacks to:'); ?></label> <?php echo $form_trackback; ?><br /> (<?php _e('Separate multiple URLs with spaces'); ?>)</p>
467 <p><?php _e('Trackbacks are a way to notify legacy blog systems that you&#8217;ve linked to them. If you link other WordPress sites they&#8217;ll be notified automatically using <a href="http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" target="_blank">pingbacks</a>, no other action necessary.'); ?></p>
468 <?php
469 if ( ! empty($pings) )
470         echo $pings;
471 }
472
473 /**
474  * Display custom fields form fields.
475  *
476  * @since 2.6.0
477  *
478  * @param object $post
479  */
480 function post_custom_meta_box($post) {
481 ?>
482 <div id="postcustomstuff">
483 <div id="ajax-response"></div>
484 <?php
485 $metadata = has_meta($post->ID);
486 foreach ( $metadata as $key => $value ) {
487         if ( is_protected_meta( $metadata[ $key ][ 'meta_key' ], 'post' ) || ! current_user_can( 'edit_post_meta', $post->ID, $metadata[ $key ][ 'meta_key' ] ) )
488                 unset( $metadata[ $key ] );
489 }
490 list_meta( $metadata );
491 meta_form(); ?>
492 </div>
493 <p><?php _e('Custom fields can be used to add extra metadata to a post that you can <a href="http://codex.wordpress.org/Using_Custom_Fields" target="_blank">use in your theme</a>.'); ?></p>
494 <?php
495 }
496
497 /**
498  * Display comments status form fields.
499  *
500  * @since 2.6.0
501  *
502  * @param object $post
503  */
504 function post_comment_status_meta_box($post) {
505 ?>
506 <input name="advanced_view" type="hidden" value="1" />
507 <p class="meta-options">
508         <label for="comment_status" class="selectit"><input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> /> <?php _e( 'Allow comments.' ) ?></label><br />
509         <label for="ping_status" class="selectit"><input name="ping_status" type="checkbox" id="ping_status" value="open" <?php checked($post->ping_status, 'open'); ?> /> <?php printf( __( 'Allow <a href="%s" target="_blank">trackbacks and pingbacks</a> on this page.' ), __( 'http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments' ) ); ?></label>
510         <?php do_action('post_comment_status_meta_box-options', $post); ?>
511 </p>
512 <?php
513 }
514
515 /**
516  * Display comments for post table header
517  *
518  * @since 3.0.0
519  *
520  * @param array $result table header rows
521  * @return array
522  */
523 function post_comment_meta_box_thead($result) {
524         unset($result['cb'], $result['response']);
525         return $result;
526 }
527
528 /**
529  * Display comments for post.
530  *
531  * @since 2.8.0
532  *
533  * @param object $post
534  */
535 function post_comment_meta_box( $post ) {
536         global $wpdb;
537
538         wp_nonce_field( 'get-comments', 'add_comment_nonce', false );
539         ?>
540         <p class="hide-if-no-js" id="add-new-comment"><a href="#commentstatusdiv" onclick="commentReply.addcomment(<?php echo $post->ID; ?>);return false;"><?php _e('Add comment'); ?></a></p>
541         <?php
542
543         $total = get_comments( array( 'post_id' => $post->ID, 'number' => 1, 'count' => true ) );
544         $wp_list_table = _get_list_table('WP_Post_Comments_List_Table');
545         $wp_list_table->display( true );
546
547         if ( 1 > $total ) {
548                 echo '<p id="no-comments">' . __('No comments yet.') . '</p>';
549         } else {
550                 $hidden = get_hidden_meta_boxes( get_current_screen() );
551                 if ( ! in_array('commentsdiv', $hidden) ) {
552                         ?>
553                         <script type="text/javascript">jQuery(document).ready(function(){commentsBox.get(<?php echo $total; ?>, 10);});</script>
554                         <?php
555                 }
556
557                 ?>
558                 <p class="hide-if-no-js" id="show-comments"><a href="#commentstatusdiv" onclick="commentsBox.get(<?php echo $total; ?>);return false;"><?php _e('Show comments'); ?></a> <span class="spinner"></span></p>
559                 <?php
560         }
561
562         wp_comment_trashnotice();
563 }
564
565 /**
566  * Display slug form fields.
567  *
568  * @since 2.6.0
569  *
570  * @param object $post
571  */
572 function post_slug_meta_box($post) {
573 ?>
574 <label class="screen-reader-text" for="post_name"><?php _e('Slug') ?></label><input name="post_name" type="text" size="13" id="post_name" value="<?php echo esc_attr( apply_filters('editable_slug', $post->post_name) ); ?>" />
575 <?php
576 }
577
578 /**
579  * Display form field with list of authors.
580  *
581  * @since 2.6.0
582  *
583  * @param object $post
584  */
585 function post_author_meta_box($post) {
586         global $user_ID;
587 ?>
588 <label class="screen-reader-text" for="post_author_override"><?php _e('Author'); ?></label>
589 <?php
590         wp_dropdown_users( array(
591                 'who' => 'authors',
592                 'name' => 'post_author_override',
593                 'selected' => empty($post->ID) ? $user_ID : $post->post_author,
594                 'include_selected' => true
595         ) );
596 }
597
598 /**
599  * Display list of revisions.
600  *
601  * @since 2.6.0
602  *
603  * @param object $post
604  */
605 function post_revisions_meta_box($post) {
606         wp_list_post_revisions();
607 }
608
609 // -- Page related Meta Boxes
610
611 /**
612  * Display page attributes form fields.
613  *
614  * @since 2.7.0
615  *
616  * @param object $post
617  */
618 function page_attributes_meta_box($post) {
619         $post_type_object = get_post_type_object($post->post_type);
620         if ( $post_type_object->hierarchical ) {
621                 $dropdown_args = array(
622                         'post_type'        => $post->post_type,
623                         'exclude_tree'     => $post->ID,
624                         'selected'         => $post->post_parent,
625                         'name'             => 'parent_id',
626                         'show_option_none' => __('(no parent)'),
627                         'sort_column'      => 'menu_order, post_title',
628                         'echo'             => 0,
629                 );
630
631                 $dropdown_args = apply_filters( 'page_attributes_dropdown_pages_args', $dropdown_args, $post );
632                 $pages = wp_dropdown_pages( $dropdown_args );
633                 if ( ! empty($pages) ) {
634 ?>
635 <p><strong><?php _e('Parent') ?></strong></p>
636 <label class="screen-reader-text" for="parent_id"><?php _e('Parent') ?></label>
637 <?php echo $pages; ?>
638 <?php
639                 } // end empty pages check
640         } // end hierarchical check.
641         if ( 'page' == $post->post_type && 0 != count( get_page_templates() ) ) {
642                 $template = !empty($post->page_template) ? $post->page_template : false;
643                 ?>
644 <p><strong><?php _e('Template') ?></strong></p>
645 <label class="screen-reader-text" for="page_template"><?php _e('Page Template') ?></label><select name="page_template" id="page_template">
646 <option value='default'><?php _e('Default Template'); ?></option>
647 <?php page_template_dropdown($template); ?>
648 </select>
649 <?php
650         } ?>
651 <p><strong><?php _e('Order') ?></strong></p>
652 <p><label class="screen-reader-text" for="menu_order"><?php _e('Order') ?></label><input name="menu_order" type="text" size="4" id="menu_order" value="<?php echo esc_attr($post->menu_order) ?>" /></p>
653 <p><?php if ( 'page' == $post->post_type ) _e( 'Need help? Use the Help tab in the upper right of your screen.' ); ?></p>
654 <?php
655 }
656
657 // -- Link related Meta Boxes
658
659 /**
660  * Display link create form fields.
661  *
662  * @since 2.7.0
663  *
664  * @param object $link
665  */
666 function link_submit_meta_box($link) {
667 ?>
668 <div class="submitbox" id="submitlink">
669
670 <div id="minor-publishing">
671
672 <?php // Hidden submit button early on so that the browser chooses the right button when form is submitted with Return key ?>
673 <div style="display:none;">
674 <?php submit_button( __( 'Save' ), 'button', 'save', false ); ?>
675 </div>
676
677 <div id="minor-publishing-actions">
678 <div id="preview-action">
679 <?php if ( !empty($link->link_id) ) { ?>
680         <a class="preview button" href="<?php echo $link->link_url; ?>" target="_blank"><?php _e('Visit Link'); ?></a>
681 <?php } ?>
682 </div>
683 <div class="clear"></div>
684 </div>
685
686 <div id="misc-publishing-actions">
687 <div class="misc-pub-section">
688         <label for="link_private" class="selectit"><input id="link_private" name="link_visible" type="checkbox" value="N" <?php checked($link->link_visible, 'N'); ?> /> <?php _e('Keep this link private') ?></label>
689 </div>
690 </div>
691
692 </div>
693
694 <div id="major-publishing-actions">
695 <?php do_action('post_submitbox_start'); ?>
696 <div id="delete-action">
697 <?php
698 if ( !empty($_GET['action']) && 'edit' == $_GET['action'] && current_user_can('manage_links') ) { ?>
699         <a class="submitdelete deletion" href="<?php echo wp_nonce_url("link.php?action=delete&amp;link_id=$link->link_id", 'delete-bookmark_' . $link->link_id); ?>" onclick="if ( confirm('<?php echo esc_js(sprintf(__("You are about to delete this link '%s'\n 'Cancel' to stop, 'OK' to delete."), $link->link_name )); ?>') ) {return true;}return false;"><?php _e('Delete'); ?></a>
700 <?php } ?>
701 </div>
702
703 <div id="publishing-action">
704 <?php if ( !empty($link->link_id) ) { ?>
705         <input name="save" type="submit" class="button-large button-primary" id="publish" accesskey="p" value="<?php esc_attr_e('Update Link') ?>" />
706 <?php } else { ?>
707         <input name="save" type="submit" class="button-large button-primary" id="publish" accesskey="p" value="<?php esc_attr_e('Add Link') ?>" />
708 <?php } ?>
709 </div>
710 <div class="clear"></div>
711 </div>
712 <?php do_action('submitlink_box'); ?>
713 <div class="clear"></div>
714 </div>
715 <?php
716 }
717
718 /**
719  * Display link categories form fields.
720  *
721  * @since 2.6.0
722  *
723  * @param object $link
724  */
725 function link_categories_meta_box($link) {
726 ?>
727 <div id="taxonomy-linkcategory" class="categorydiv">
728         <ul id="category-tabs" class="category-tabs">
729                 <li class="tabs"><a href="#categories-all"><?php _e( 'All Categories' ); ?></a></li>
730                 <li class="hide-if-no-js"><a href="#categories-pop"><?php _e( 'Most Used' ); ?></a></li>
731         </ul>
732
733         <div id="categories-all" class="tabs-panel">
734                 <ul id="categorychecklist" data-wp-lists="list:category" class="categorychecklist form-no-clear">
735                         <?php
736                         if ( isset($link->link_id) )
737                                 wp_link_category_checklist($link->link_id);
738                         else
739                                 wp_link_category_checklist();
740                         ?>
741                 </ul>
742         </div>
743
744         <div id="categories-pop" class="tabs-panel" style="display: none;">
745                 <ul id="categorychecklist-pop" class="categorychecklist form-no-clear">
746                         <?php wp_popular_terms_checklist('link_category'); ?>
747                 </ul>
748         </div>
749
750         <div id="category-adder" class="wp-hidden-children">
751                 <h4><a id="category-add-toggle" href="#category-add"><?php _e( '+ Add New Category' ); ?></a></h4>
752                 <p id="link-category-add" class="wp-hidden-child">
753                         <label class="screen-reader-text" for="newcat"><?php _e( '+ Add New Category' ); ?></label>
754                         <input type="text" name="newcat" id="newcat" class="form-required form-input-tip" value="<?php esc_attr_e( 'New category name' ); ?>" aria-required="true" />
755                         <input type="button" id="link-category-add-submit" data-wp-lists="add:categorychecklist:link-category-add" class="button" value="<?php esc_attr_e( 'Add' ); ?>" />
756                         <?php wp_nonce_field( 'add-link-category', '_ajax_nonce', false ); ?>
757                         <span id="category-ajax-response"></span>
758                 </p>
759         </div>
760 </div>
761 <?php
762 }
763
764 /**
765  * Display form fields for changing link target.
766  *
767  * @since 2.6.0
768  *
769  * @param object $link
770  */
771 function link_target_meta_box($link) { ?>
772 <fieldset><legend class="screen-reader-text"><span><?php _e('Target') ?></span></legend>
773 <p><label for="link_target_blank" class="selectit">
774 <input id="link_target_blank" type="radio" name="link_target" value="_blank" <?php echo ( isset( $link->link_target ) && ($link->link_target == '_blank') ? 'checked="checked"' : ''); ?> />
775 <?php _e('<code>_blank</code> &mdash; new window or tab.'); ?></label></p>
776 <p><label for="link_target_top" class="selectit">
777 <input id="link_target_top" type="radio" name="link_target" value="_top" <?php echo ( isset( $link->link_target ) && ($link->link_target == '_top') ? 'checked="checked"' : ''); ?> />
778 <?php _e('<code>_top</code> &mdash; current window or tab, with no frames.'); ?></label></p>
779 <p><label for="link_target_none" class="selectit">
780 <input id="link_target_none" type="radio" name="link_target" value="" <?php echo ( isset( $link->link_target ) && ($link->link_target == '') ? 'checked="checked"' : ''); ?> />
781 <?php _e('<code>_none</code> &mdash; same window or tab.'); ?></label></p>
782 </fieldset>
783 <p><?php _e('Choose the target frame for your link.'); ?></p>
784 <?php
785 }
786
787 /**
788  * Display checked checkboxes attribute for xfn microformat options.
789  *
790  * @since 1.0.1
791  *
792  * @param string $class
793  * @param string $value
794  * @param mixed $deprecated Never used.
795  */
796 function xfn_check( $class, $value = '', $deprecated = '' ) {
797         global $link;
798
799         if ( !empty( $deprecated ) )
800                 _deprecated_argument( __FUNCTION__, '0.0' ); // Never implemented
801
802         $link_rel = isset( $link->link_rel ) ? $link->link_rel : ''; // In PHP 5.3: $link_rel = $link->link_rel ?: '';
803         $rels = preg_split('/\s+/', $link_rel);
804
805         if ('' != $value && in_array($value, $rels) ) {
806                 echo ' checked="checked"';
807         }
808
809         if ('' == $value) {
810                 if ('family' == $class && strpos($link_rel, 'child') === false && strpos($link_rel, 'parent') === false && strpos($link_rel, 'sibling') === false && strpos($link_rel, 'spouse') === false && strpos($link_rel, 'kin') === false) echo ' checked="checked"';
811                 if ('friendship' == $class && strpos($link_rel, 'friend') === false && strpos($link_rel, 'acquaintance') === false && strpos($link_rel, 'contact') === false) echo ' checked="checked"';
812                 if ('geographical' == $class && strpos($link_rel, 'co-resident') === false && strpos($link_rel, 'neighbor') === false) echo ' checked="checked"';
813                 if ('identity' == $class && in_array('me', $rels) ) echo ' checked="checked"';
814         }
815 }
816
817 /**
818  * Display xfn form fields.
819  *
820  * @since 2.6.0
821  *
822  * @param object $link
823  */
824 function link_xfn_meta_box($link) {
825 ?>
826 <table class="links-table" cellspacing="0">
827         <tr>
828                 <th scope="row"><label for="link_rel"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('rel:') ?></label></th>
829                 <td><input type="text" name="link_rel" id="link_rel" value="<?php echo ( isset( $link->link_rel ) ? esc_attr($link->link_rel) : ''); ?>" /></td>
830         </tr>
831         <tr>
832                 <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('identity') ?></th>
833                 <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('identity') ?></span></legend>
834                         <label for="me">
835                         <input type="checkbox" name="identity" value="me" id="me" <?php xfn_check('identity', 'me'); ?> />
836                         <?php _e('another web address of mine') ?></label>
837                 </fieldset></td>
838         </tr>
839         <tr>
840                 <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('friendship') ?></th>
841                 <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('friendship') ?></span></legend>
842                         <label for="contact">
843                         <input class="valinp" type="radio" name="friendship" value="contact" id="contact" <?php xfn_check('friendship', 'contact'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('contact') ?>
844                         </label>
845                         <label for="acquaintance">
846                         <input class="valinp" type="radio" name="friendship" value="acquaintance" id="acquaintance" <?php xfn_check('friendship', 'acquaintance'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('acquaintance') ?>
847                         </label>
848                         <label for="friend">
849                         <input class="valinp" type="radio" name="friendship" value="friend" id="friend" <?php xfn_check('friendship', 'friend'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('friend') ?>
850                         </label>
851                         <label for="friendship">
852                         <input name="friendship" type="radio" class="valinp" value="" id="friendship" <?php xfn_check('friendship'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('none') ?>
853                         </label>
854                 </fieldset></td>
855         </tr>
856         <tr>
857                 <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('physical') ?> </th>
858                 <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('physical') ?></span></legend>
859                         <label for="met">
860                         <input class="valinp" type="checkbox" name="physical" value="met" id="met" <?php xfn_check('physical', 'met'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('met') ?>
861                         </label>
862                 </fieldset></td>
863         </tr>
864         <tr>
865                 <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('professional') ?> </th>
866                 <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('professional') ?></span></legend>
867                         <label for="co-worker">
868                         <input class="valinp" type="checkbox" name="professional" value="co-worker" id="co-worker" <?php xfn_check('professional', 'co-worker'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('co-worker') ?>
869                         </label>
870                         <label for="colleague">
871                         <input class="valinp" type="checkbox" name="professional" value="colleague" id="colleague" <?php xfn_check('professional', 'colleague'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('colleague') ?>
872                         </label>
873                 </fieldset></td>
874         </tr>
875         <tr>
876                 <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('geographical') ?></th>
877                 <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('geographical') ?> </span></legend>
878                         <label for="co-resident">
879                         <input class="valinp" type="radio" name="geographical" value="co-resident" id="co-resident" <?php xfn_check('geographical', 'co-resident'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('co-resident') ?>
880                         </label>
881                         <label for="neighbor">
882                         <input class="valinp" type="radio" name="geographical" value="neighbor" id="neighbor" <?php xfn_check('geographical', 'neighbor'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('neighbor') ?>
883                         </label>
884                         <label for="geographical">
885                         <input class="valinp" type="radio" name="geographical" value="" id="geographical" <?php xfn_check('geographical'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('none') ?>
886                         </label>
887                 </fieldset></td>
888         </tr>
889         <tr>
890                 <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('family') ?></th>
891                 <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('family') ?> </span></legend>
892                         <label for="child">
893                         <input class="valinp" type="radio" name="family" value="child" id="child" <?php xfn_check('family', 'child'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('child') ?>
894                         </label>
895                         <label for="kin">
896                         <input class="valinp" type="radio" name="family" value="kin" id="kin" <?php xfn_check('family', 'kin'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('kin') ?>
897                         </label>
898                         <label for="parent">
899                         <input class="valinp" type="radio" name="family" value="parent" id="parent" <?php xfn_check('family', 'parent'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('parent') ?>
900                         </label>
901                         <label for="sibling">
902                         <input class="valinp" type="radio" name="family" value="sibling" id="sibling" <?php xfn_check('family', 'sibling'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('sibling') ?>
903                         </label>
904                         <label for="spouse">
905                         <input class="valinp" type="radio" name="family" value="spouse" id="spouse" <?php xfn_check('family', 'spouse'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('spouse') ?>
906                         </label>
907                         <label for="family">
908                         <input class="valinp" type="radio" name="family" value="" id="family" <?php xfn_check('family'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('none') ?>
909                         </label>
910                 </fieldset></td>
911         </tr>
912         <tr>
913                 <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('romantic') ?></th>
914                 <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('romantic') ?> </span></legend>
915                         <label for="muse">
916                         <input class="valinp" type="checkbox" name="romantic" value="muse" id="muse" <?php xfn_check('romantic', 'muse'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('muse') ?>
917                         </label>
918                         <label for="crush">
919                         <input class="valinp" type="checkbox" name="romantic" value="crush" id="crush" <?php xfn_check('romantic', 'crush'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('crush') ?>
920                         </label>
921                         <label for="date">
922                         <input class="valinp" type="checkbox" name="romantic" value="date" id="date" <?php xfn_check('romantic', 'date'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('date') ?>
923                         </label>
924                         <label for="romantic">
925                         <input class="valinp" type="checkbox" name="romantic" value="sweetheart" id="romantic" <?php xfn_check('romantic', 'sweetheart'); ?> />&nbsp;<?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('sweetheart') ?>
926                         </label>
927                 </fieldset></td>
928         </tr>
929
930 </table>
931 <p><?php _e('If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out <a href="http://gmpg.org/xfn/">XFN</a>.'); ?></p>
932 <?php
933 }
934
935 /**
936  * Display advanced link options form fields.
937  *
938  * @since 2.6.0
939  *
940  * @param object $link
941  */
942 function link_advanced_meta_box($link) {
943 ?>
944 <table class="links-table" cellpadding="0">
945         <tr>
946                 <th scope="row"><label for="link_image"><?php _e('Image Address') ?></label></th>
947                 <td><input type="text" name="link_image" class="code" id="link_image" value="<?php echo ( isset( $link->link_image ) ? esc_attr($link->link_image) : ''); ?>" /></td>
948         </tr>
949         <tr>
950                 <th scope="row"><label for="rss_uri"><?php _e('RSS Address') ?></label></th>
951                 <td><input name="link_rss" class="code" type="text" id="rss_uri" value="<?php echo ( isset( $link->link_rss ) ? esc_attr($link->link_rss) : ''); ?>" /></td>
952         </tr>
953         <tr>
954                 <th scope="row"><label for="link_notes"><?php _e('Notes') ?></label></th>
955                 <td><textarea name="link_notes" id="link_notes" rows="10"><?php echo ( isset( $link->link_notes ) ? $link->link_notes : ''); // textarea_escaped ?></textarea></td>
956         </tr>
957         <tr>
958                 <th scope="row"><label for="link_rating"><?php _e('Rating') ?></label></th>
959                 <td><select name="link_rating" id="link_rating" size="1">
960                 <?php
961                         for ( $r = 0; $r <= 10; $r++ ) {
962                                 echo '<option value="' . $r . '"';
963                                 if ( isset($link->link_rating) && $link->link_rating == $r )
964                                         echo ' selected="selected"';
965                                 echo('>' . $r . '</option>');
966                         }
967                 ?></select>&nbsp;<?php _e('(Leave at 0 for no rating.)') ?>
968                 </td>
969         </tr>
970 </table>
971 <?php
972 }
973
974 /**
975  * Display post thumbnail meta box.
976  *
977  * @since 2.9.0
978  */
979 function post_thumbnail_meta_box( $post ) {
980         $thumbnail_id = get_post_meta( $post->ID, '_thumbnail_id', true );
981         echo _wp_post_thumbnail_html( $thumbnail_id, $post->ID );
982 }