我正在使用wpshower的Imbalance 2主题。我想添加alt和title标签,以便它们显示在主页的循环中。我的标题和alt标签与帖子标题相同......所以,我想在数组中回显帖子标题。我一直在玩,但似乎无法弄明白。我是php的新手,所以所有和任何帮助将不胜感激。以下是我主题中的代码......我需要在''回应帖子标题?提前谢谢......
<a class="transparent" href="<?php the_permalink(); ?>"><?php the_post_thumbnail('homepage-thumb', array('alt' => '', 'title' => '')) ?></a>
答案 0 :(得分:1)
试试这个:
<a class="transparent" href="<?php the_permalink(); ?>">
<?php the_post_thumbnail('homepage-thumb', array('alt' => get_the_title(), 'title' => get_the_title())) ?>
</a>