如何在摘录段落中显示永久链接
我试图在摘录内部/之后显示永久链接,
我在主题中的指定区域使用的代码是这样的
<div id="headline">
<?php the_excerpt(); echo '<a href="'.get_permalink().'" class="more-link">'; echo '[Read more...]'; echo '</a>';?>
</div>
结果,
<p>the excerpt here</p>
<a>permalink here</a>
我如何在显示摘录的同一段落内显示永久链接?
<代码>
the_摘录; 永久链接
谢谢大家。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将以下代码放入主题的functions.php中。
此codex条目提供了有关如何修改
摘录
内容的更多详细信息:http://codex.wordpress.org/Function_Reference/the_excerptYou can place the following code in the functions.php fule of your theme
This codex entry has more details on how you can modify what the
excerpt
spits out : http://codex.wordpress.org/Function_Reference/the_excerpt我尝试了上述解决方案,但它没有解决我的问题,A标签仍然显示在P标签之外。我使用 get_the_excerpt() 解决了我的问题,它只返回没有 P 标签的摘录文本。
http://codex.wordpress.org/Function_Reference/get_the_excerpt
I tried the above solution but it didn't solve my problem, the A tag still showed outside the P tags. I solved my problem using get_the_excerpt(), which returned just the excerpt text without the P tags.
http://codex.wordpress.org/Function_Reference/get_the_excerpt