创建元框

时间:2014-04-18 11:55:52

标签: php wordpress custom-fields

找到一个功能,可以在我的管理面板中添加一个元框。它看起来不错,但还不够。 我需要至少十个自定义字段。如何创建它们? questoins看起来很愚蠢,因为我对php的了解很少,所以不要严格判断;)。我将非常感谢解决这个问题或解释它应该如何运作。

function myplugin_add_meta_box() {
 $screens = array( 'post', 'page' );
  foreach ( $screens as $screen ) {
   add_meta_box(
   'myplugin_sectionid',
   __( 'My Post Section Title', 'myplugin_textdomain' ),
   'myplugin_meta_box_callback',
   $screen
  );
 }
}
add_action( 'add_meta_boxes', 'myplugin_add_meta_box' );
/**
* Prints the box content.
* 
* @param WP_Post $post The object for the current post/page.
*/
function myplugin_meta_box_callback( $post ) {

wp_nonce_field( 'myplugin_meta_box', 'myplugin_meta_box_nonce' );
$value = get_post_meta( $post->ID, '_my_meta_value_key', true );

echo '<label for="myplugin_new_field">';
_e( 'Description for this field', 'myplugin_textdomain' );
echo '</label> ';
echo '<input type="text" id="myplugin_new_field" name="myplugin_new_field" value="' .    esc_attr( $value ) . '" size="25" />';
}
/**
* When the post is saved, saves our custom data.
*
* @param int $post_id The ID of the post being saved.
*/
function myplugin_save_meta_box_data( $post_id ) {
if ( ! isset( $_POST['myplugin_meta_box_nonce'] ) ) {
return;
}
if ( ! wp_verify_nonce( $_POST['myplugin_meta_box_nonce'], 'myplugin_meta_box' ) ) {
return;
}
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
return;
}
if ( isset( $_POST['post_type'] ) && 'page' == $_POST['post_type'] ) {

if ( ! current_user_can( 'edit_page', $post_id ) ) {
  return;
}
} else {
if ( ! current_user_can( 'edit_post', $post_id ) ) {
  return;
}
}
if ( ! isset( $_POST['myplugin_new_field'] ) ) {
return;
}
$my_data = sanitize_text_field( $_POST['myplugin_new_field'] );
update_post_meta( $post_id, '_my_meta_value_key', $my_data );
}
add_action( 'save_post', 'myplugin_save_meta_box_data' );

1 个答案:

答案 0 :(得分:1)

如果您对PHP的了解很少,那么有一些很棒的插件可以让您轻松完成。

如果您要添加很多字段,我通常会发现使用以下插件更容易,因为排序字段并将其拉出主题比手动操作容易得多。

http://wordpress.org/plugins/advanced-custom-fields/