-1

我正在使用一个 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>

有什么我可以添加的让它显示图像和文本吗?

谢谢!

4

1 回答 1

0

I can't see anywhere on this example where you are using an tag to insert an image. The img tag has two required attributes, src and alt. Src is the path to your image, whereas alt is the alternate text for the image. So:

<img src="images/myImage.png" alt="This Is My Image"/>

Hope that helps!

于 2012-05-29T16:59:35.430 回答