清理wordpress中的内联链接?

时间:2011-01-14 10:41:27

标签: wordpress inline hyperlink sanitize

HY。 那么有人会知道如何编写一个函数来清理通过WYSISWYG编辑器输入的特定类中的所有链接吗? 我知道wordpress内置的sanitize_title函数,但我不知道如何引用这些链接(特定类中的链接)。 任何帮助非常感谢。

1 个答案:

答案 0 :(得分:0)

为什么不使用过滤功能来过滤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;

}