清理 WordPress 中的内联链接?

发布于 2024-10-12 04:10:55 字数 126 浏览 1 评论 0原文

嘿。 那么有人知道如何编写一个函数来清理通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暮色兮凉城 2024-10-19 04:10:55

为什么不使用过滤函数来过滤the_content()

在你的functions.php文件中,包含过滤器钩子:

add_filter ( 'the_content', 'your_sanitizer_function');

然后也在functions.php中编写过滤函数来过滤the_content()的正常输出:

function your_sanitizer_function($content){

    /* use some php here to change your content as you see fit...
        for example, $content = str_replace('foo', 'bar', $content);
     */

    return $content;

}

Why don't you use a filter function to filter the_content()?

In your functions.php file, include the filter hook:

add_filter ( 'the_content', 'your_sanitizer_function');

Then also in functions.php write the sanitizing function that will filter the normal output of the_content():

function your_sanitizer_function($content){

    /* use some php here to change your content as you see fit...
        for example, $content = str_replace('foo', 'bar', $content);
     */

    return $content;

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文