将此代码添加到函数中。php
if(function_exists(\'add_theme_support\'))
add_theme_support(\'post-thumbnails\');
// Set the thumbnail size
add_image_size(\'custom_logo\', 200, 200, true );
add_image_size(\'custom_website_thumb\', 450, 200, true );
add_image_size(\'custom_print_ad_thumb\', 200, 400, true );
把这个放在你想看到图片的帖子模板中。
<?php echo get_the_post_thumbnail($post_id, \'custom_logo\'); ?>
您也可以将其包装在这样的链接中。
<a href="<?php echo get_permalink($post_id) ?>" title="<?php echo get_the_title($post_id); ?>"> <?php echo get_the_post_thumbnail($post_id, \'custom_logo\'); ?></a>
您可以查看Wordpress Codex以了解更多漏洞。
记住在上传时将图像设置为特色图像,以便能够使用它。
Codex Link