我正在使用一个 wordpress 主题,它有一个名为“链接”的自定义帖子类型,它只生成一个帖子,其中标题链接到您指定的外部链接。它还在帖子的正文中包含一些文本。我也希望能够显示图像。现在它没有显示图像。
这是代码:
elseif ( has_post_format( 'link' )) {
if(get_post_meta($post->ID, '_format_link_url', true)!=''){
$link = get_post_meta($post->ID, '_format_link_url', true);
}else{
$link = '';
}
?>
<h2 class="entry-title">
<a href="<?php echo $link; ?>" target="_blank" title="Follow this link">
<?php the_title(); ?>
</a>
</h2>
<p>
有什么我可以添加的让它显示图像和文本吗?
谢谢!