【发布时间】:2015-04-10 18:03:02
【问题描述】:
我认为这很简单,但我没有找到任何关于它的内容。我想为我的三种帖子类型提供缩略图,请大家帮助我。
add_theme_support( 'post-thumbnails', array( 'crew', 'staff' , 'guest') );
add_action( 'init', 'create_post_type' );
function create_post_type() {
register_post_type( 'crew',
array(
'labels' => array(
'name' => __( 'Crew' ),
'singular_name' => __( 'Crew' )),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'crew')
)
);
register_post_type( 'staff',
array(
'labels' => array(
'name' => __( 'Staff' ),
'singular_name' => __( 'Staff' )),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'staff')
)
);
register_post_type( 'guest',
array(
'labels' => array(
'name' => __( 'Gast' ),
'singular_name' => __( 'Gast' )),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'guest')
)
);
}
我觉得没什么好说的了,对你们来说可能非常非常简单......
【问题讨论】:
标签: wordpress thumbnails custom-post-type