如何在摘录段落中显示永久链接

发布于 2024-10-20 15:29:37 字数 455 浏览 1 评论 0 原文

我试图在摘录内部/之后显示永久链接,

我在主题中的指定区域使用的代码是这样的

<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_摘录; 永久链接

谢谢大家。

im trying to show the permalink right inside/after the excerpt

the code that im using at a designated area in my theme is this

<div id="headline"> 
 <?php the_excerpt(); echo '<a href="'.get_permalink().'" class="more-link">'; echo '[Read more...]'; echo '</a>';?> 
</div>

the result

<p>the excerpt here</p>
<a>permalink here</a>

how can i show the permalink inside the same paragraphs that the excerpt is displayed ?

<p> the_excerpt; <a>permalink</a> </p>

thanks all.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ゝ偶尔ゞ 2024-10-27 15:29:37

您可以将以下代码放入主题的functions.php中。

function new_excerpt_more($more) {
   global $post;
   return '<a href="'. get_permalink($post->ID) . '">[Read more...]</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');

此codex条目提供了有关如何修改摘录内容的更多详细信息:http://codex.wordpress.org/Function_Reference/the_excerpt

You can place the following code in the functions.php fule of your theme

function new_excerpt_more($more) {
   global $post;
   return '<a href="'. get_permalink($post->ID) . '">[Read more...]</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');

This codex entry has more details on how you can modify what the excerpt spits out : http://codex.wordpress.org/Function_Reference/the_excerpt

清泪尽 2024-10-27 15:29:37

我尝试了上述解决方案,但它没有解决我的问题,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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文