在添加新帖子时添加“功能图像”选项

时间:2012-11-30 06:37:29

标签: wordpress

我想在添加新帖子页面时添加一个添加功能图片的选项,如下图所示。

我该怎么做?

enter image description here

1 个答案:

答案 0 :(得分:1)

您需要使用wordpress函数add_theme_support( 'post-thumbnails' );

只需在wordpress函数中添加该行代码,就可以执行此操作。

在此处详细了解:http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails

希望有所帮助!

更新:这是我在functions.php中使用的内容。它会在您的上传文件夹中为您上传的图片创建重新调整大小的版本。非常有用:

// post thumbnail support
if ( function_exists( 'add_image_size' ) ) add_theme_support( 'post-thumbnails' );

if ( function_exists( 'add_image_size' ) ) {
add_image_size( 'featured-thumb', 282, 158, true ); 
}