PageRenderTime 81ms CodeModel.GetById 31ms RepoModel.GetById 0ms app.codeStats 0ms

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

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