0

我想添加一个选项以在添加新帖子页面上添加特征图像,如下图所示。

我该怎么做?

在此处输入图像描述

4

1 回答 1

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 ); 
}
于 2012-11-30T06:58:43.833 回答