12

我正在尝试将特色图片添加到我的主题中,但不适用于帖子或页面 - 我创建了一个名为 Properties 的自定义类型(它用于房地产经纪人),那么如何启用特色图片,因为它没有出现在场景选项中?

希望有人能帮忙,

$property  = new Cuztom_Post_Type( 'Property', array(
    'supports' => array('title', 'editor')
));
4

6 回答 6

22
$property  = new Cuztom_Post_Type( 'Property', array(
    'supports' => array('title', 'editor', 'thumbnail')
));

我似乎已经解决了我自己的问题 - 见上文

于 2012-09-22T15:36:37.383 回答
7

这可能会帮助某人,

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' );
于 2015-12-08T09:57:05.103 回答
3

您可以使用主题的 function.php 文件中的以下代码行简单地为任何自定义帖子类型启用支持帖子缩略图。

add_post_type_support( 'forum', 'thumbnail' );

注意:这里,forum是帖子类型名称。

您可以将此代码保留在after_setup_theme挂钩中。

于 2020-06-25T20:32:54.100 回答
2

可能这会有所帮助

    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' );
于 2018-07-15T11:01:52.700 回答
2

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' );
于 2019-03-28T11:55:12.193 回答
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' );
于 2019-04-25T12:07:27.583 回答