[ XREF Home ] [ Index ]

PHP Cross Reference of WordPress Trunk

Provided by Yoast

title

Body

[close]

/wp-admin/includes/ -> meta-boxes.php (source)

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


Generated: Wed Jun 1 08:30:02 2011 Cross-referenced by PHPXref 0.7
Provided by Yoast and awesome WordPress Hosting