清理 WordPress 中的内联链接?
嘿。 那么有人知道如何编写一个函数来清理通过 WYSISWYG 编辑器输入的特定类中的所有链接吗? 我知道 wordpress 内置的 sanitize_title 函数,但我不知道如何引用这些链接(特定类中的链接)。 非常感谢任何帮助。
Hy.
So would anybody know how to write a function that would sanitize all links in a specific class that are entered through WYSISWYG editor?
I know about the wordpress in-built sanitize_title function, but I don't know how I could refer to those links(links in a specific class).
Any help much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不使用过滤函数来过滤
the_content()
?在你的functions.php文件中,包含过滤器钩子:
然后也在functions.php中编写过滤函数来过滤
the_content()
的正常输出:Why don't you use a filter function to filter
the_content()
?In your functions.php file, include the filter hook:
Then also in functions.php write the sanitizing function that will filter the normal output of
the_content()
: