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