gpt4 book ai didi

php - 从 Wordpress 中的摘录中剥离标签不起作用

转载 作者:可可西里 更新时间:2023-11-01 13:07:22 25 4
gpt4 key购买 nike

我正在使用这个片段

<a href='<?php the_permalink() ?>' title='<?php echo strip_tags(the_excerpt()); ?>

我打算用它删除所有 ellipses , <p>标签和其他shortcodeslinks ,但这根本不起作用。

如果我悬停 anchor ,我仍然会看到 <p>包裹在摘录中,以及其他标签和 url 链接。我哪里做错了,我必须怎么做才能让它正常工作?

最佳答案

你需要的是get_the_excerpt():

<a href='<?php the_permalink() ?>' title='<?php echo strip_tags( get_the_excerpt() ); ?>'>

但是,它可能不会去掉省略号 (...),因为它们是 HTML 实体,而不是标签。

关于php - 从 Wordpress 中的摘录中剥离标签不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17980855/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com