gpt4 book ai didi

WordPress 删除摘录过滤器

转载 作者:行者123 更新时间:2023-12-04 05:56:51 25 4
gpt4 key购买 nike

我正在尝试去除默认情况下为 the_excerpt(); 放置的周围标签;

我试过以下...

<?php remove_filter('the_excerpt', 'wpautop'); ?>
<p class='test'><?php the_excerpt(); ?></p>

我试过...
<?php $formatted = remove_all_filters('the_excerpt', the_excerpt()); ?>
<p class='test'><?php echo $formatted ?></p>

我正在寻找生产这个...
<p class='test'>the excerpt text <a href='http://continuereadinglink'>etc.</a></p>

但是 WordPress 输出这个......
<p class='test'></p>
<p class='default-align'>the excerpt text <a href='http://continuereadinglink'>etc.</a></p>

我实际上在这里找到了解决方法 http://aaronrussell.co.uk/legacy/improving-wordpress-the_excerpt/ ,但它基本上涉及替换摘录功能,我宁愿避免这种情况,因为我只想去掉过滤器。

最佳答案

HTML 段落标签不支持嵌套结构。尝试用块元素(例如 DIV)包围摘录

你可以试试这个选项:

<p class="test"><?php echo strip_tags(get_the_excerpt()) ?></p>

关于WordPress 删除摘录过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9410736/

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