【问题标题】:How to add custom field to custom post type?如何将自定义字段添加到自定义帖子类型?
【发布时间】:2012-07-29 06:23:54
【问题描述】:

早上好。

我创建了一个名为“产品”的自定义帖子类型。我想创建一个自定义字段(是 metabox 正确的术语?)我的客户可以在其中勾选一个框以确定给定的帖子是否在此 CPT 是一个精选帖子。

这是我的functions.php中创建“产品”CPT的代码:

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' );

那么如何将“特色”元框/自定义字段添加到产品帖子?

非常感谢,

辛西娅

【问题讨论】:

    标签: wordpress custom-fields custom-post-type featured


    【解决方案1】:

    如果您想在自定义帖子类型中创建自定义元框,您将需要使用 3 个函数。

    1. 在帖子编辑屏幕上创建自定义“元框”块/屏幕的功能:add_meta_boxes_{$post_type}

    2. 添加输入字段以更改/显示自定义元数据的功能

    3. 当您在帖子编辑屏幕上单击“保存”时,最后还有一个功能可以将您的元数据与帖子的其余部分一起保存:save_post_{$post->post_type}

    在您的情况下,自定义复选框如下所示:

    add_action( 'add_meta_boxes_products', 'meta_box_for_products' );
    function meta_box_for_products( $post ){
        add_meta_box( 'my_meta_box_custom_id', __( 'Additional info', 'textdomain' ), 'my_custom_meta_box_html_output', 'products', 'normal', 'low' );
    }
    
    function my_custom_meta_box_html_output( $post ) {
        wp_nonce_field( basename( __FILE__ ), 'my_custom_meta_box_nonce' ); //used later for security
        echo '<p><input type="checkbox" name="is_this_featured" value="checked" '.get_post_meta($post->ID, 'team_member_title', true).'/><label for="is_this_featured">'.__('Featured Product?', 'textdomain').'</label></p>';
    }
    
    add_action( 'save_post_team_member', 'team_member_save_meta_boxes_data', 10, 2 );
    function team_member_save_meta_boxes_data( $post_id ){
        // check for nonce to top xss
        if ( !isset( $_POST['my_custom_meta_box_nonce'] ) || !wp_verify_nonce( $_POST['my_custom_meta_box_nonce'], basename( __FILE__ ) ) ){
            return;
        }
    
        // check for correct user capabilities - stop internal xss from customers
        if ( ! current_user_can( 'edit_post', $post_id ) ){
            return;
        }
    
        // update fields
        if ( isset( $_REQUEST['is_this_featured'] ) ) {
            update_post_meta( $post_id, 'is_this_featured', sanitize_text_field( $_POST['is_this_featured'] ) );
        }
    }
    

    【讨论】:

      【解决方案2】:

      正如 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 ); ?>
      

      您可以为每个帖子类型注册邮箱。

      【讨论】:

        【解决方案3】:

        你可以使用这个插件

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

        或者本教程可能对您有所帮助。

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

        【讨论】:

          猜你喜欢
          • 1970-01-01
          • 1970-01-01
          • 1970-01-01
          • 2013-08-04
          • 2011-07-01
          • 1970-01-01
          • 1970-01-01
          • 1970-01-01
          • 1970-01-01
          相关资源
          最近更新 更多