7

おはようございます。

「商品」というカスタム投稿タイプを作成しました。クライアントがボックスにチェックを入れて、この CPT 内の特定の投稿が注目の投稿であるかどうかを判断できるカスタム フィールド (メタボックスは正しい用語ですか?) を作成したいと考えています。

「Products」CPTを作成するためのfunctions.phpのコードは次のとおりです。

function products_custom_init() {

    $labels = array(
        'name' => _x('Products', 'post type general name'),
        'singular_name' => _x('Product', 'post type singular name'),
        'add_new' => _x('Add New', 'products'),
        'add_new_item' => __('Add New Product'),
        'edit_item' => __('Edit Product'),
        'new_item' => __('New Product'),
        'view_item' => __('View Product'),
        'search_items' => __('Search Products'),
        'not_found' =>  __('Nothing found'),
        'not_found_in_trash' => __('Nothing found in Trash'),
        'parent_item_colon' => ''
    );

    $args = array(
        'labels' => $labels,
        'public' => true,
        'publicly_queryable' => true,
        'show_ui' => true,
        'show_in_menu' => true,
        'show_in_nav_menus' => false,
        'query_var' => true,
        'rewrite' => array('slug','pages'),
        'capability_type' => 'post',
        'hierarchical' => true,
        'menu_position' => 5,
        'supports' => array('title','editor','thumbnail','excerpt',)
      );

    register_post_type( 'products' , $args );
}
add_action( 'init', 'products_custom_init' );

では、「特集」メタボックス/カスタム フィールドを製品の投稿のみに追加するにはどうすればよいですか?

どうもありがとう、

シンシア

4

3 に答える 3

6

Muhammad Yasinが言ったように、私がお勧めするプラグインがあります:
http ://wordpress.org/extend/plugins/more-fields/

コードで自分でやりたい場合は、以下を見てください。add_meta_box

<?php add_meta_box( $id, $title, $callback, $post_type, $context, $priority, $callback_args ); ?>

投稿タイプごとにボックスを登録できます。

于 2012-07-31T15:36:37.020 に答える
0

このプラグインを使用できます

http://wordpress.org/extend/plugins/types/

または、このチュートリアルが役立つ場合があります。

http://wptheming.com/2010/08/custom-metabox-for-post-type/

于 2012-07-31T14:04:31.020 に答える