Thumbnails Not Generating

时间:2013-03-13 作者:Josh Rodgers

好啊

所以这是一个奇怪的问题。。。WordPress不生成缩略图,我设置了图像大小和所有内容。。。我很确定这与我的自定义帖子类型代码有关(见下文),因为当我删除它时,缩略图会正确生成。

// Tells WP to add a slides and marquee sections
add_action( \'init\', \'create_my_post_types\' );

// WP slides section attributes
function create_my_post_types() {
    // Add Slide Section
    register_post_type( \'slides\',
        array(
            \'exclude_from_search\' => true,
            \'labels\' => array(
                \'name\' => __( \'Slides\' ),
                \'singular_name\' => __( \'Slides\' ),
                \'search_items\' => __(\'Search Slides\'),
            ),
                    \'public\' => true,
                    \'publicly_queryable\' => true,
                    \'show_ui\' => true,
                    \'query_var\' => true,
                    \'rewrite\' => true,
                    \'capability_type\' => \'post\',
                    \'hierarchical\' => false,
                    \'menu_position\' => 5,
                    \'supports\' => array(\'title\',\'editor\',\'thumbnail\')
        )
    );
    // Add Marquee Section
    register_post_type( \'marquee\',
        array(
            \'exclude_from_search\' => true,
            \'labels\' => array(
                \'name\' => __( \'Marquee\' ),
                \'singular_name\' => __( \'Marquee\' ),
                \'search_items\' => __(\'Search Marquee\'),
            ),
                    \'public\' => true,
                    \'publicly_queryable\' => true,
                    \'show_ui\' => true,
                    \'query_var\' => true,
                    \'rewrite\' => true,
                    \'capability_type\' => \'post\',
                    \'hierarchical\' => false,
                    \'menu_position\' => 6,
                    \'supports\' => array(\'title\',\'editor\')
        )
    );
}
有人知道代码有什么问题,或者知道为什么这段代码会干扰正常的缩略图生成吗?

谢谢,乔希

1 个回复
SO网友:Vinod Dalvi

在自定义帖子类型幻灯片中,您提供了对缩略图的支持,当您使用使用缩略图的自定义帖子类型时,请记住检查主题是否也支持缩略图或使用add_theme_support 作用

有关更多信息,请参阅上的supports参数this page.

结束

相关推荐

Group images in media library

我正在寻找一种在媒体库中对图像进行分组的方法。我正在开发一个照片组合网站。我已将所有图像上载到媒体库,我需要一种方法对图像进行分组,使其更易于管理。目前我只有一长串图片。