我正在尝试为我的主题添加精选图片,但不是为帖子或页面添加 - 我创建了一个名为Properties的自定义类型(适用于地产代理),因此我如何启用精选图片,因为它没有不会出现在sceen选项中?
希望有人能提供帮助,
$property = new Cuztom_Post_Type( 'Property', array(
'supports' => array('title', 'editor')
));
答案 0 :(得分:13)
$property = new Cuztom_Post_Type( 'Property', array(
'supports' => array('title', 'editor', 'thumbnail')
));
我似乎已经解决了我自己的问题 - 见上文
答案 1 :(得分:6)
这可能对某人有帮助,
ECONNREFUSED
答案 2 :(得分:0)
可能会有所帮助
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' );
答案 3 :(得分:0)
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' );
答案 4 :(得分:0)
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' );
答案 5 :(得分:0)
您只需在主题的function.php文件中使用以下代码行,即可为任何自定义帖子类型启用支持帖子缩略图。
add_post_type_support( 'forum', 'thumbnail' );
注意:这里的forum
是帖子类型名称。
您可以将此代码保留在after_setup_theme
钩中。