我已经使我的主题能够显示帖子的“特色图片”。但是,我现在正在尝试确定(1)如何为图像指定超链接,以及(2)如何调用\\u post\\u缩略图(),以便将超链接环绕在图像周围。
我找不到WP当前版本中支持这一点的地方,但我想我一定是遗漏了什么。
<div class="entry">
<?php if(has_post_thumbnail() && get_option(\'theme_show_featured_image\'))
the_post_thumbnail(\'large\', array(
\'class\' => \'alignleft\',
\'style\' => \'margin:0 10px 10px 0;\')); ?>
<?php the_content(\'<p class="serif">Read the rest of this page »</p>\'); ?>