使用_excerpt()显示添加了标题的帖子内容,而不是内容 时间:2017-10-09 作者:Jagadeesh 我一直在用WordPress写博客。因为对于少数帖子,内容描述会显示标题。因此内容重复。例如:我的帖子标题:xxxxxxxx,描述:yyyyyy但它显示xxxxxxxxyyyyyyyy。显示我使用的内容the_excerpt(). 这只发生在少数帖子上。请帮我修理一下。 1 个回复 SO网友:Kuliraj 这太奇怪了。问题可能来自标题或描述长度不同的html/css中断。你是否检查过管理员以确保这些帖子的标题中没有描述?下面是一个简单的例子,在posts循环中显示标题和摘录。<?php while ( have_posts() ) : the_post(); ?> <h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2> <div><?php the_excerpt(); ?></div> <?php endwhile; <? 结束 文章导航