V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX 提问指南
Pai
V2EX  ›  问与答

wordpress 文章链接自动添加小图标 怎么排除图片链接

  •  
  •   Pai · 2018-02-28 17:24:26 +08:00 · 708 次点击
    这是一个创建于 2264 天前的主题,其中的信息可能已经有所发展或是发生改变。
    function autoicon($text) {
    $return = str_replace('<a href=', '<a class="external" href=', $text);
    $return = str_replace('<a class="external" href="#', '<a href="#', $return);
    return $return;
    }
    add_filter('the_content', 'autoicon'); //应用于文章区域

    上面这段代码 自动给链接加了一个样式 external 可是图片链接也给添加了

    怎么排除图片链接?

    求大神给修改一下 感谢!
    目前尚无回复
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2874 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 26ms · UTC 14:55 · PVG 22:55 · LAX 07:55 · JFK 10:55
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.