PageRenderTime 66ms CodeModel.GetById 29ms RepoModel.GetById 0ms app.codeStats 1ms

/APP/wp-admin/includes/meta-boxes.php

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