gpt4 book ai didi

php - 通过 php 函数从 wordpress 短代码中删除空的

标签

转载 作者:IT王子 更新时间:2023-10-29 00:04:51 24 4
gpt4 key购买 nike

寻找一个 php 函数(非 jQuery 或 wpautop 修改)方法来删除 <p></p>从 wordpress 中。

我试过了,但是没用:

        function cleanup_shortcode_fix($content) {   
$array = array (
'<p>[' => '[',
']</p>' => ']',
']<br />' => ']',
']<br>' => ']'
);
$content = strtr($content, $array);
return $content;
}
add_filter('the_content', 'cleanup_shortcode_fix');

最佳答案

尝试在您的 functions.php 文件中插入此代码:

remove_filter( 'the_content', 'wpautop' );
add_filter( 'the_content', 'wpautop', 99 );
add_filter( 'the_content', 'shortcode_unautop', 100 );

enter image description here

关于php - 通过 php 函数从 wordpress 短代码中删除空的 <p> 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13510131/

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