gpt4 book ai didi

wordpress - 禁用 WordPress 短代码内的自动格式化

转载 作者:行者123 更新时间:2023-12-02 19:18:56 24 4
gpt4 key购买 nike

我已经看过有关创建(原始)短代码的教程,其中的代码保持不变,

http://www.wprecipes.com/disable-wordpress-automatic-formatting-on-posts-using-a-shortcode

但不幸的是,这一次仅适用于一个短代码...,因为 else 语句绕过普通过滤器并调用函数方向。我对 autop 和texturize 函数的其他修改被忽略。

有没有办法 1. 匹配多个短代码并 2. 保留我的其他添加/删除过滤器到 the_content?

最佳答案

在多个网站上实现@helgatheviking的解决方案后,我确信只需要这些行:

// Move wpautop filter to AFTER shortcode is processed
remove_filter('the_content', 'wpautop');
add_filter('the_content', 'wpautop', 99);
add_filter('the_content', 'shortcode_unautop', 100);

将它们放入您的 functions.php 文件中即可。

关于wordpress - 禁用 WordPress 短代码内的自动格式化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5940854/

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