2012-11-30 41 views

回答

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); 
} 
+0

感謝兄弟。它的工作 –

+0

很高興我能幫忙!祝你有美好的一天! – JCBiggar

相關問題