我想从帖子链接中删除类

时间:2020-04-20 作者:Jenny Dearborn

我在使用rank math SEO插件时遇到了一些问题,当我在帖子上添加链接时,发布后我看到rank math在每个链接上都添加了class=“rank math link”。

<a href="//" class="rank-math-link">link text</a>
我如何删除该。。。?

1 个回复
SO网友:Syclone

我觉得这很烦人。所以,我想出了自己的解决方案。这将在内容发送到浏览器之前对其进行过滤,同时保持数据库中存储的版本不变。我相信Rank Math需要古腾堡特殊链接选项课程。为你和Rank Math双赢。

if ( !function_exists(\'filter_the_content_remove_rank_math_link\') ) {
    /**
     * Remove/filter `rank-math-link` class added by Rank Math
     *
     * @param $content
     * @return string|string[]
     */
    function filter_the_content_remove_rank_math_link( $content )
    {
        // Check if we\'re inside the single Post.
        if ( is_singular() ) {
            $content = str_replace([\'rank-math-link\', \'class=""\'], \'\', $content);
        }

        return $content;
    }

    add_filter(\'the_content\', \'filter_the_content_remove_rank_math_link\', 1);
}
是的,您还可以更改str_replace 或使用正则表达式