这是我的代码,如何在社交链接上添加nofollow和noindex?
<?= wp_nav_menu([
'menu' => 'social_links',
'menu_class' => 'social-links',
'container' => false,
'echo' => false,
'depth' => 1,
'items_wrap' => '<ul class="%2$s">%3$s</ul>',
'item_spacing' => 'discard',
'link_before' => '',
'link_after' => '',
]) . "\n" ?>
答案 0 :(得分:2)
添加它,它将正常工作。
header("X-Robots-Tag: noindex, nofollow", true);
答案 1 :(得分:2)
您可以使用特殊的HTML标记来告诉机械手不要为页面内容编制索引,和/或不扫描页面以寻找链接。
例如:
<html>
<head>
<title>...</title>
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
</head>
答案 2 :(得分:0)
<!DOCTYPE html>
<html><head>
<meta name="robots" content="noindex, nofollow" />
(…)
</head>
<body>(…)</body>
</html>