web-dev-qa-db-ja.com

カスタム投稿タイプに特別なメタボックスを追加する

私は自分のカスタム投稿タイプにメタボックスを追加することに成功しました(下記のコードを参照)今度は別のメタボックスを追加する必要があります。このボックスで、私はwp_project_bids_mitgliedと呼ばれる別のテーブルから値を表示/編集したいです。このテーブルはpost idを持つ行と私がバックエンドで編集/表示したい値(0,1,2)を持つ行を含みます。この目的を達成するためにコードをどのように変更しなければなりませんか?ありがとうございます。

function add_custom_meta_box() {
add_meta_box(
    'custom_meta_box', // $id
    'Dauer', // $title
    'show_custom_meta_box', // $callback
    'project', // $page
    'normal', // $context
    'high'); // $priority
}
add_action('add_meta_boxes', 'add_custom_meta_box');

// Field Array
$prefix = 'custom_';
$custom_meta_fields = array(


array(
    'label'=> 'Select Box',
    'desc'  => 'Fotoauftrag Dauer angeben',
    'id'    => $prefix.'dauer',
    'type'  => 'select',
    'options' => array (
        'one' => array (
            'label' => '1-3',
            'value' => 'a'
        ),
        'two' => array (
            'label' => '3-6',
            'value' => 'b'
        ),
        'three' => array (
            'label' => '6-9',
            'value' => 'c'
        ),
        'four' => array (
            'label' => '>9',
            'value' => 'd'
                  )
    )
)
);

// The Callback
function show_custom_meta_box() {
global $custom_meta_fields, $post;
// Use nonce for verification
echo '<input type="hidden" name="custom_meta_box_nonce" value="'.wp_create_nonce(basename(__FILE__)).'" />';

// Begin the field table and loop
echo '<table class="form-table">';
foreach ($custom_meta_fields as $field) {
    // get value of this field if it exists for this post
    $meta = get_post_meta($post->ID, $field['id'], true);
    // begin a table row with
    echo '<tr>
            <th><label for="'.$field['id'].'">'.$field['label'].'</label></th>
            <td>';
            switch($field['type']) {
                // case items will go here
                // text



case 'select':
echo '<select name="'.$field['id'].'" id="'.$field['id'].'">';
foreach ($field['options'] as $option) {
    echo '<option', $meta == $option['value'] ? ' selected="selected"' : '', ' value="'.$option['value'].'">'.$option['label'].'</option>';
}
echo '</select><br /><span class="description">'.$field['desc'].'</span>';
break;
            } //end switch
    echo '</td></tr>';
} // end foreach
echo '</table>'; // end table
}

// Save the Data
function save_custom_meta($post_id) {
global $custom_meta_fields;

// verify nonce
if (!wp_verify_nonce($_POST['custom_meta_box_nonce'], basename(__FILE__)))
    return $post_id;
// check autosave
if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)
    return $post_id;
// check permissions
if ('page' == $_POST['post_type']) {
    if (!current_user_can('edit_page', $post_id))
        return $post_id;
    } elseif (!current_user_can('edit_post', $post_id)) {
        return $post_id;
}

// loop through fields and save the data
foreach ($custom_meta_fields as $field) {
    $old = get_post_meta($post_id, $field['id'], true);
    $new = $_POST[$field['id']];
    if ($new && $new != $old) {
        update_post_meta($post_id, $field['id'], $new);
    } elseif ('' == $new && $old) {
        delete_post_meta($post_id, $field['id'], $old);
    }
} // end foreach
}
1
cgscolonia

コード全体は、実際のコードを提供するのではなく、プロセスを複製することです。あなたはあなたのプロセスがこのシナリオをどのように満たすことができるかを理解しなければなりません。私はあらゆる可能な行についてコメントしました。適切な理解を得るためにインラインのコメントを見てください。

ステップ1

まず最初に、コードの最初の部分でカスタムメタボックスが作成されるので、その部分を使用してメタボックスを最初に作成します。

<?php
//making the meta box (Note: meta box != custom meta field)
function wpse_add_custom_meta_box_2() {
   add_meta_box(
       'custom_meta_box-2',       // $id
       'Dauer2',                  // $title
       'show_custom_meta_box_2',  // $callback
       'project',                 // $page
       'normal',                  // $context
       'high'                     // $priority
   );
}
add_action('add_meta_boxes', 'wpse_add_custom_meta_box_2');
?>

ステップ2

だからあなたのメタボックスは今準備ができています。ユーザーデータを取得するには、いくつかのFormフィールドを作成する必要があります。そのために、今宣言した$callback関数を使用しています。

<?php
//showing custom form fields
function show_custom_meta_box_2() {
    global $post;

    // Use nonce for verification to secure data sending
    wp_nonce_field( basename( __FILE__ ), 'wpse_our_nonce' );

    ?>

    <!-- my custom value input -->
    <input type="number" name="wpse_value" value="">

    <?php
}
?>

ステップ3

投稿の保存時に2つのフィールドがpost値になりますので、保存したい場所に保存する必要があります。

<?php
//now we are saving the data
function wpse_save_meta_fields( $post_id ) {

  // verify nonce
  if (!isset($_POST['wpse_our_nonce']) || !wp_verify_nonce($_POST['wpse_our_nonce'], basename(__FILE__)))
      return 'nonce not verified';

  // check autosave
  if ( wp_is_post_autosave( $post_id ) )
      return 'autosave';

  //check post revision
  if ( wp_is_post_revision( $post_id ) )
      return 'revision';

  // check permissions
  if ( 'project' == $_POST['post_type'] ) {
      if ( ! current_user_can( 'edit_page', $post_id ) )
          return 'cannot edit page';
      } elseif ( ! current_user_can( 'edit_post', $post_id ) ) {
          return 'cannot edit post';
  }

  //so our basic checking is done, now we can grab what we've passed from our newly created form
  $wpse_value = $_POST['wpse_value'];

  //simply we have to save the data now
  global $wpdb;

  $table = $wpdb->base_prefix . 'project_bids_mitglied';

  $wpdb->insert(
            $table,
            array(
                'col_post_id' => $post_id, //as we are having it by default with this function
                'col_value'   => intval( $wpse_value ) //assuming we are passing numerical value
              ),
            array(
                '%d', //%s - string, %d - integer, %f - float
                '%d', //%s - string, %d - integer, %f - float
              )
          );

}
add_action( 'save_post', 'wpse_save_meta_fields' );
add_action( 'new_to_publish', 'wpse_save_meta_fields' );
?>

カスタムテーブルを扱っているので、必要なデータを安全に保存するために $ wpdb クラスを使い続けています。

注意してください、 これはあなたが必要とするものではありません、これはあなたが今あなたの道を形作ることができるという考えとプロセスです。ただ2つ覚えておいてください。

  1. show_custom_meta_box_2()はあなたのHTMLフォームがある領域です、この部分を単純なHTMLフォームのように扱い、そして
  2. wpse_save_meta_fields()は必要なアクションにフックされ、投稿が公開/保存/更新されたときにフォームのデータを保存します。ここで適切な消毒と検証をしてください。

それが役に立てば幸い。 最近のチャット の@toschoに感謝します。 <3

8
Mayeenul Islam