【问题标题】:Any idea of how to change the type of quotes in wordpress?知道如何更改 wordpress 中的引号类型吗?
【发布时间】:2023-12-24 06:10:01
【问题描述】:

在我的 wordpress 网站上,文章的引用如下所示: « xxxx » 东西 bla bla bla

如何将那些 « » 引号转换为看起来更像 ' 或 ",从而在元 og / google 描述中使用更少的空间? 但在某种程度上,它不会破坏标题/描述等的代码?

有什么想法吗? 谢谢!

【问题讨论】:

    标签: wordpress quotes


    【解决方案1】:

    我假设你所有的

    https://www.thewebtaylor.com/articles/wordpress-replace-string-in-content-of-all-pages

    function replace_content($content)
    {
      $content = str_replace('<<', '"',$content);
      $content = str_replace('>>', '"',$content);
      $content = str_replace('&lt;&lt;', '"',$content);
      $content = str_replace('&gt;&gt;', '"',$content);
      return $content;
    }
    add_filter('the_content','replace_content');
    

    【讨论】:

    • 感谢您的回复,我会检查一下。但我倾向于认为原始转换已经在 wordpress 中。我会检查functions.php
    最近更新 更多