- 可以直接找一些wordpress插件安装。如果手动每个链接加入是很麻烦,当然我们也可以通过代码实现无插件添加方法。严格要求的话是需要在外部链接全部加上nofollow标签。<征途国际PG下载地址最新更新内容strong>华体会体育
在wordpress写文章时,有些外部链接是没有加Nofollow标签,在技术层面是有传递出去权重。这样所有的外华体会体育征途国际PG下载地址最新更新内容ong>部链接就会自动加上nofollow标签。当然目前一些wordpress主题设置有这个nofollow标签功能。有时内容会引用或分享一些外部链接地址,
//文章自动nofollowadd_filter( 'the_content', 'tin_seo_wl');function tin_seo_wl( $content ) { $regexp = "<a\s[^>]*href=(\"??)([^\" >]*?)\\1[^>]*>"; if(preg_match_all("/$regexp/siU", $content, $matches, PREG_SET_ORDER)) { if( !empty($matches) ) { $srcUrl = get_option('siteurl'); for ($i=0; $i < count($matches); $i++) { $tag = $matches[$i][0]; $tag2 = $matches[$i][0]; $url = $matches[$i][0]; $noFollow = ''; $pattern = '/target\s*=\s*"\s*_blank\s*"/'; preg_match($pattern, $tag2, $match, PREG_OFFSET_CAPTURE); if( count($match) < 1 ) $noFollow .= ' target="_blank" '; $pattern = '/rel\s*=\s*"\s*[n|d]ofollow\s*"/'; preg_match($pattern, $tag2, $match, PREG_OFFSET_CAPTURE); if( count($match) < 1 ) $noFollow .= ' rel="nofollow" '; $pos = strpos($url,$srcUrl); if ($pos === false) { $tag = rtrim ($tag,'>'); $tag .= $noFollow.'>'; $content = str_replace($tag2,$tag,$content); } } } } $content = str_replace(']]>', ']]>', $content); return $content;}
添加到当前主题Funcions.php 文件中, 顶: 19457踩: 1289
WordPr征途国际PG下载地址最新更新内容ess无华体会体育插件外部链接自动添加nofollow标签
人参与 | 时间:2025-06-23 10:52:39
相关文章
- Adobe Dreamweaver cc 2018中文版本
- Javascript植物大战僵尸小游戏LonelyStar版
- 小米米家智能香氛机套装植萃系列:低成本高品质,打造清新家居环境
- 小米推出15周年纪念版智能手表:eSIM独立联网,自研玄戒T1芯片,仅售1299元,惊喜体验等你来!
- Bitcoin (BTC) Challenges $68K, Dogecoin (DOGE) Soars 5% Daily (Weekend Watch)
- wordpress免费插件Math Captcha简单数学验证码
- 宝塔面板设置301重定向不保留URI参数问题
- 面壁智能与易来联手打造:颠覆性AI家居中枢,纯端侧AI智慧屏引领未来家居新潮流
- wordpress免费插件Math Captcha简单数学验证码
- 下雪花背景404错误页面代码
评论专区