作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
早上好。
我创建了一个名为“产品”的自定义帖子类型。我想创建一个自定义字段(是元框
正确的术语?)我的客户可以在其中勾选一个框来确定此范围内的给定帖子是否
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' );
最佳答案
正如 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 ); ?>
关于wordpress - 如何将自定义字段添加到自定义帖子类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11740907/
我是一名优秀的程序员,十分优秀!