gpt4 book ai didi

Wordpress:the_content 过滤器杀死图库简码

转载 作者:行者123 更新时间:2023-12-04 05:45:55 29 4
gpt4 key购买 nike

我的 the_content 过滤器杀死了图库简码,我不知道问题出在哪里......
我可以添加空白 the_content 过滤器,图库从内容中消失,只有 [gallery]文本。我正在使用 the_content 过滤器:

function test($data){
echo $data;
}
add_filter('the_content', 'test');

任何建议如何解决它?

最佳答案

这是一个常见的错误,您只需要返回信息以继续应用新过滤器,因此将函数更改为:

function test($data){
//apply here any content modification then return new content
return $data;
}
add_filter('the_content', 'test');

您可以通过以下网址获取更多信息: http://codex.wordpress.org/Plugin_API/Filter_Reference/the_content

关于Wordpress:the_content 过滤器杀死图库简码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10686166/

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