我使用了一个自定义字段并添加了上面的数据,这些数据工作得很好,但不便于用户使用。
使用Custom Post Types 和add Meta Boxes 使其用户友好。
下面是添加自定义帖子类型的基本示例:
function create_post_type() {
register_post_type( \'car\',
array(
\'labels\' => array(
\'name\' => __( \'Cars\' ),
\'singular_name\' => __( \'Car\' )
),
\'public\' => true,
\'has_archive\' => true,
)
);
}
add_action( \'init\', \'create_post_type\' );
Suggestion您还可以包括
Custom Taxonomies 对于以下字段
category
,
price_type
,
make
,
model
,
advert_type
, 等