wp_robots_noindex

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

wp_robots_noindex: 这是一个WordPress的过滤钩子,用来控制单个页面的元标签中的noindex设置。它用于控制搜索引擎是否应该索引单个页面。

如果网站配置需要,在robots元标签中添加`noindex`。

如果一个博客被标记为不公开,那么noindex将被输出,告诉网络机器人不要索引该页面内容。把它添加到{@see ‘wp_robots’}过滤器中。

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

add_filter( ‘wp_robots’, ‘wp_robots_noindex’) 。

function wp_robots_noindex( array $robots ) {
	if ( ! get_option( 'blog_public' ) ) {
		return wp_robots_no_robots( $robots );
	}

	return $robots;
}

常见问题

FAQs
查看更多 >