滚动
nofollow Drupal主题
论坛
伊万,您好,我下载了模板主题,其中有指向推特和脸书的链接,我打开了 page.tpl,里面的链接是:
<li><a href="http://www.twitter.com/<?php echo theme_get_setting('twitter_username'); ?>" target="_blank" rel="me"><img src="<?php global $base_url; echo $base_url.'/'.$directory; ?>/images/twitter.png" alt="twitter"/></a></li>
我该如何将其设置为 nofollow
我试过这样,但没有成功....
<li><a href="http://www.twitter.com" rel="nofollow"><?php echo theme_get_setting('twitter_username'); ?>" target="_blank" rel="me"><img src="<?php global $base_url; echo $base_url.'/'.$directory; ?>/images/twitter.png" alt="twitter"/></a></li>