如何给Emlog博客文章外链自动添加nofollow属性,为了不影响自己的博客的权重,但是在文章中出现外部链接却没有
自动添加,如果手动为外链添加外链跳转或访问这个网址就需要复制到浏览器中才能打开,这样的确有些不利于用户体验。
<?php //内链nofollow+新窗口 function seo_replace($text) { return str_replace('<a href=', '<a rel="nofollow" target="_blank" href=', $text); } ?>
<?php echo $log_content;?> //替换成 <?php echo seo_replace($log_content)?>