单个元框中包含多个元字段?

时间:2011-12-05 作者:Brigante

我正在关注贾斯汀·塔洛克关于创建元框的教程。http://wp.smashingmagazine.com/2011/10/04/create-custom-post-meta-boxes-wordpress/

我可以让一个只有一个字段的元框正常工作,但我想创建一个包含多个字段的元框。

例如,一个名为“Staff Details”的元框包含两个名为“Title”和“Experience”的字段。

有人知道我怎么做吗?

谢谢

1 个回复
最合适的回答,由SO网友:Joshua Abenazer 整理而成

这就是你要找的。

/* Define the custom box */

// WP 3.0+
add_action( \'add_meta_boxes\', \'staff_details_metabox\' );

// backwards compatible
add_action( \'admin_init\', \'staff_details_metabox\', 1 );

/* Do something with the data entered */
add_action( \'save_post\', \'save_staff_details\' );

/**
 *  Adds a box to the main column on the Post edit screen
 * 
 */
function staff_details_metabox() {
    add_meta_box( \'staff_details\', __( \'Staff Details\' ), \'staff_details_options\', \'post\', \'side\', \'high\' );
}

/**
 *  Prints the box content
 */
function staff_details_options( $post ) { 
  wp_nonce_field( plugin_basename( __FILE__ ), $post->post_type . \'_noncename\' ); ?>
  <label for="_staff_title" class="selectit"><?php _e( \'Title\' ); ?>:</label> <input type="text" id="_staff_title" name="_staff_title" value="<?php echo get_post_meta( $post->ID, \'_staff_title\', true ); ?>" size="25" />
  <label for="_staff_experience" class="selectit"><?php _e( \'Experience\' ); ?>:</label> <input type="text" id="_staff_experience" name="_staff_experience" value="<?php echo get_post_meta( $post->ID, \'_staff_experience\', true ); ?>" size="25" /><?php
}

/** 
 * When the post is saved, saves our custom data 
 */
function save_staff_details( $post_id ) {
  // verify if this is an auto save routine. 
  // If it is our form has not been submitted, so we dont want to do anything
  if ( defined( \'DOING_AUTOSAVE\' ) && DOING_AUTOSAVE ) 
      return;

  // verify this came from the our screen and with proper authorization,
  // because save_post can be triggered at other times
  if ( !wp_verify_nonce( @$_POST[$_POST[\'post_type\'] . \'_noncename\'], plugin_basename( __FILE__ ) ) )
      return;

  // Check permissions
  if ( !current_user_can( \'edit_post\', $post_id ) )
     return;

  // OK, we\'re authenticated: we need to find and save the data
  if( \'post\' == $_POST[\'post_type\'] ) {
      if ( !current_user_can( \'edit_post\', $post_id ) ) {
          return;
      } else {
          update_post_meta( $post_id, \'_staff_title\', $_POST[\'_staff_title\'] );
          update_post_meta( $post_id, \'_staff_experience\', $_POST[\'_staff_experience\'] );
      }
  } 

}
如果您想在循环中使用自定义元,可以这样做。

if ( get_post_meta( get_the_ID(), \'_staff_title\', true ) ) {
    printf( __( \'Staff Title: %s\' ), get_post_meta( $post->ID, \'_staff_title\', true ) );
}
if ( get_post_meta( get_the_ID(), \'_staff_experience\', true ) ) {
    printf( __( \'Staff Experience: %s\' ), get_post_meta( $post->ID, \'_staff_experience\', true ) );
}

结束

相关推荐

在POST_CATEGORIES_METABOX中实施类别层次结构的更好方法?

目的是确保在编辑帖子时,列出层次分类法的元盒不会在更新时重新排序,以将选中的项放在顶部。马上edit-form-advanced.php 呼叫add_meta_box(), 传递的回调post_categories_meta_box, 定义于meta-boxes.php.post_categories_meta_box() 调用wp_terms_checklist(), 离开checked_ontop 参数未定义。wp_terms_checklist() 该参数默认为true, 这是所有这些胡闹的根本原因