Wordpress - 将特色图片添加到自定义帖子类型
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/12543563/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Wordpress - adding Featured image to custom Post Type
提问by snakespan
I'm trying to add a Featured Image to my theme but not for Posts or Pages - I've created a custom type called Properties (its for an estate agent), so how do I enable Featured Image, as it doesn't appear in the sceen options?
我正在尝试将特色图片添加到我的主题中,但不适用于帖子或页面 - 我创建了一个名为“属性”的自定义类型(用于房地产经纪人),那么如何启用特色图片,因为它没有出现在屏幕选项中?
Hope someone can help,
希望有人能帮忙
$property = new Cuztom_Post_Type( 'Property', array(
'supports' => array('title', 'editor')
));
回答by snakespan
$property = new Cuztom_Post_Type( 'Property', array(
'supports' => array('title', 'editor', 'thumbnail')
));
I appear to have solved my own question - see above
我似乎已经解决了我自己的问题 - 见上文
回答by Muhammad Sadiq
This might help someone,
这可能会帮助某人,
add_theme_support('post-thumbnails');
add_post_type_support( 'my_product', 'thumbnail' );
function create_post_type() {
register_post_type( 'my_product',
array(
'labels' => array(
'name' => __( 'Products' ),
'singular_name' => __( 'Product' )
),
'public' => true,
'has_archive' => true
)
);
}
add_action( 'init', 'create_post_type' );
回答by mehul
100% working this code
100% 使用此代码
add_theme_support('post-thumbnails');
add_post_type_support( 'news', 'thumbnail' );
function create_posttype() {
register_post_type( 'news',
array(
'labels' => array(
'name' => __( 'News' ),
'singular_name' => __( 'news' )
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'news'),
'menu_icon' => 'dashicons-format-aside',
)
);
}
add_action( 'init', 'create_posttype' );
回答by Kamlesh Kumar
add_theme_support('post-thumbnails');
add_post_type_support( 'testimonial', 'thumbnail' );
function create_posttype() {
register_post_type( 'testimonial',
array(
'labels' => array(
'name' => __( 'Testimonial' ),
'singular_name' => __( 'testimonial' )
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'testimonial'),
// add category in custom post type
'taxonomies' => array( 'category'),
)
);
}
add_action( 'init', 'create_posttype' );
回答by S.Sid
Probably this would help
可能这会有所帮助
function create_post_type() {
register_post_type( 'sadaf_films',
array(
'labels' => array(
'name' => __( 'Films' ),
'singular_name' => __( 'Film' )
),
'public' => true,
'has_archive' => true,
'supports' => array( 'title', 'editor', 'custom-fields','thumbnail' ),
)
);
}
add_action( 'init', 'create_post_type' );