1

有没有办法使用 the_excerpt 在帖子中显示锚点或链接。在 wordpress 编辑器中,我在帖子的开头放置了一个锚标记。当我查看全文时,它可以正常工作。但是在使用摘录时它不起作用。

这是帖子的图片。我什至强调了这个词

http://i255.photobucket.com/albums/hh140/testament1234/anchortag_zpsf77fbef2.jpg

这是我检查视图源时的代码。如您所见,链接 facebook.com 变成了一个段落,而不是一个锚链接。

   <div class="content">
              <!--TEXT -->
              <p>www.facebook.com Nullam dictum eleifend neque facilisis pellentesque. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur cursus mollis tincidunt. Donec tincidunt, augue ullamcorper pharetra porta, metus turpis volutpat urna, nec [...]</p>


             <a class="readmore" href="http://localhost/wordpress/sample-post-14/"><span>Full Article</span></a>
       </div>

我该如何解决这个问题?如果我用 the_content 替换了 the_excerpt,它将显示该帖子的内容。

4

2 回答 2

1

问题是默认情况下 the_excerpt 函数禁用所有 HTML 标记。这就是为什么所有链接都消失了。

您可能需要自定义 the_excerpt 函数返回的内容,并允许例如链接标签。本教程向您展示如何做到这一点。

于 2013-06-27T13:16:45.093 回答
0
echo $post->post_excerpt; // this will return you the excerpt of the current post
于 2013-06-27T13:32:01.453 回答