默认情况文章中如果有添加链接,那么是从当前窗口跳转的,并且外链没有添加标签,不利于SEO,文章内链接新窗口并添加标签如下。
方法一:修改系统文件
找到 /var//.php 这个文件,在105行,也就是 $attrs'href' = $this->escape($inline->(''), true); 代码之后添加如下两行代码:
$attrs'target' = $this->escape(_blank, true);
代码语言:javascript复制 $attrs['rel'] = $this->escape(nofollow, true);
最后保存查看效果,修改后的完整代码,请注意对比:
case CommonMark_Element_InlineElement::TYPE_LINK:
代码语言:javascript复制 $attrs['href'] = $this->escape($inline->getAttribute('destination'), true);
$attrs['target'] = $this->escape(_blank, true);
$attrs['rel'] = $this->escape(nofollow, true);
if ($title = $inline->getAttribute('title')) {
$attrs['title'] = $this->escape($title, true);
}
注:如果你是用的 1.0 以上版本请按照下面方法更改:
修改系统代码
找到 .php 这个文件,这里和上面老版本文件不同。
在 self::$parser->hook('', array('', '')); 后面,添加下面代码
self::$parser->hook('afterParseInline', array('Markdown', 'addLinkTargetBlank'));
然后在 public static ($html){} 这个代码块后面,添加下面代码
/**
代码语言:javascript复制 * addLinkTargetBlank
*
* @param string $html
* @return string
*/
public static function addLinkTargetBlank($html)
{
return preg_replace("//i", "", $html);
}
方法二:前端通过JS跳转
在前端,通过 JS解决
逻辑是查找某个标签的id下所有的a标签,然后给每个添加属性,如下
var pageAnchors = document.getElementById('post-content').getElementsByTagName('a');
代码语言:javascript复制 for (var i=0; isrc_add,$options->cdn_add,$obj->content);
}
$obj->content = preg_replace("/content);
echo trim($obj->content);
}
如果需要添加rel=,则如下
function parseContent($obj){
代码语言:javascript复制 $options = Typecho_Widget::widget('Widget_Options');
if(!empty($options->src_add) && !empty($options->cdn_add)){
$obj->content = str_ireplace($options->src_add,$options->cdn_add,$obj->content);
}
$obj->content = preg_replace("/content);
echo trim($obj->content);
}
(https://xuan.ddwoo.top/"([^/"]*)/"/i",)该方法的原理就是正则文章的超链接标签,然后加上相应处理即可。使用该方法需要修改主题 post.php 文件,将默认的内容输出 改成 。
方法四、通过修改主题Header.php文件
最近看到一种新的方法是通过修改主题header.php文件在顶部加上即可。
本文共 324 个字数,平均阅读时长 ≈ 1分钟(https://xuan.ddwoo.top/"([^/"]*)/"/i",)