您需要在中添加主题支持functions.php
活动主题的文件如下:
if ( function_exists( \'add_theme_support\' ) ) {
add_theme_support( \'post-thumbnails\' );
}
要在自定义帖子类型中启用它,您需要在向
supports
参数,因此您需要向现有代码中添加一些内容,以便像这样注册您的帖子类型(这是一个示例):
$args = array(
\'labels\' => $labels,
\'public\' => true,
\'publicly_queryable\' => true,
\'show_ui\' => true,
\'show_in_menu\' => true,
\'query_var\' => true,
\'rewrite\' => true,
\'capability_type\' => \'post\',
\'has_archive\' => true,
\'hierarchical\' => false,
\'menu_position\' => null,
\'supports\' => array( \'title\', \'editor\', \'author\', \'thumbnail\', \'excerpt\', \'comments\' )
);
register_post_type(\'book\',$args);
如果您看到
$args
数组,有
thumbnail
在
supports
大堆这将为自定义帖子类型启用它。
有关更多信息,请参阅法典:
对于adding thumbnail support: http://codex.wordpress.org/Post_Thumbnails
对于registering post types: http://codex.wordpress.org/Function_Reference/register_post_type
或者更具体地说,这里有一个将缩略图添加到自定义帖子类型的完整示例:
http://codex.wordpress.org/index.php?title=Function_Reference/register_post_type&oldid=112358#Example