web-dev-qa-db-ja.com

プラグインを使用せずにカスタムフィールドを実装する方法

メンバーディレクトリを作成し、カスタム投稿タイプのメンバーを使用しようとしています。 ACFプラグインの使い方はよく知っていますが、特定のカスタム投稿タイプのカスタムフィールドを電話番号や住所のような単純な入力ボックスに関連付ける方法はありますか。

3
Mac organo

プラグインを使用したくない場合は、そのカスタム投稿タイプに関連付けるメタボックスを実装してみることができます。これは、特定の投稿タイプの単純な入力フィールドを追加する場合に使用するコードです。以下の例では、 member_post_type があなたの宣言された投稿タイプであると仮定します。

function member_add_meta_box() {
//this will add the metabox for the member post type
$screens = array( 'member_post_type' );

foreach ( $screens as $screen ) {

    add_meta_box(
        'member_sectionid',
        __( 'Member Details', 'member_textdomain' ),
        'member_meta_box_callback',
        $screen
    );
 }
}
add_action( 'add_meta_boxes', 'member_add_meta_box' );

/**
 * Prints the box content.
 *
 * @param WP_Post $post The object for the current post/page.
 */
function member_meta_box_callback( $post ) {

// Add a nonce field so we can check for it later.
wp_nonce_field( 'member_save_meta_box_data', 'member_meta_box_nonce' );

/*
 * Use get_post_meta() to retrieve an existing value
 * from the database and use the value for the form.
 */
$value = get_post_meta( $post->ID, '_my_meta_value_key', true );

echo '<label for="member_new_field">';
_e( 'Phone Number', 'member_textdomain' );
echo '</label> ';
echo '<input type="text" id="member_new_field" name="member_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 member_save_meta_box_data( $post_id ) {

 if ( ! isset( $_POST['member_meta_box_nonce'] ) ) {
    return;
 }

 if ( ! wp_verify_nonce( $_POST['member_meta_box_nonce'], 'member_save_meta_box_data' ) ) {
    return;
 }

 if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
    return;
 }

 // Check the user's permissions.
 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['member_new_field'] ) ) {
    return;
 }

 $my_data = sanitize_text_field( $_POST['member_new_field'] );

 update_post_meta( $post_id, '_my_meta_value_key', $my_data );
}
add_action( 'save_post', 'member_save_meta_box_data' );

WordPressメタボックス用の追加リソース:

ドキュメントを参照してください ここ

4
Carl Alberto

私がすでにコメントで述べたように、

カスタムフィールド はすでにビルドイン機能です。あなたのカスタム投稿タイプを登録するとき、あなたはそれに対するサポートを追加する必要があります;-)

ここには2つの選択肢があります。

  • あなたのカスタム投稿タイプを登録するとき 、単にsupportsパラメータにcustom-fieldsを追加する

    例:

    add_action( 'init', 'codex_custom_init' );
    function codex_custom_init() {
        $args = [
          'public' => true,
          'label'  => 'Books',
          'supports' => ['title', 'editor', 'author', 'thumbnail', 'excerpt', 'custom-fields']
        ];
        register_post_type( 'book', $args );
    }
    
  • あなたはあなたのカスタム投稿タイプにカスタムフィールドを追加するために単に add_post_type_support() を使うことができます

    例:

    add_action( 'init', 'wpcodex_add_custom_fileds_support_for_cpt', 11 );
    function wpcodex_add_custom_fileds_support_for_cpt() {
        add_post_type_support( 'cpt', 'custom-fields' ); // Change cpt to your post type
    }
    
2
Pieter Goosen