wp_robots_no_robots

函数
wp_robots_no_robots ( $robots )
参数
  • (array) $robots Associative array of robots directives.
    Required:
返回值
  • (array) Filtered robots directives.
定义位置
相关方法
wp_no_robotswp_robots_noindex_embedswp_robots_noindexwp_robots_noindex_searchwp_robots
引入
5.7.0
弃用
-

wp_robots_no_robots: 这是一个WordPress的过滤钩子,用来控制robots.txt文件中的noindex设置。它是用来控制搜索引擎是否应该索引网站的。

在robots元标签中添加`noindex’。

这条指令告诉网络机器人不要对页面内容进行索引。

典型的用法是作为{@see ‘wp_robots’}的回调。

add_filter( ‘wp_robots’, ‘wp_robots_no_robots’ ) ;

function wp_robots_no_robots( array $robots ) {
	$robots['noindex'] = true;

	if ( get_option( 'blog_public' ) ) {
		$robots['follow'] = true;
	} else {
		$robots['nofollow'] = true;
	}

	return $robots;
}

常见问题

FAQs
查看更多 >