wp_robots_noindex_search

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

wp_robots_noindex_search: 这是一个WordPress的过滤钩子,用于控制搜索结果页面的不索引设置。它用于控制搜索引擎是否应该索引搜索结果页面。

如果正在进行搜索,将`noindex`添加到robots元标签中。
如果正在进行搜索,那么noindex将被输出,告诉网络机器人不要对页面内容进行索引。将其添加到{@see ‘wp_robots’}过滤器中。

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

add_filter( ‘wp_robots’, ‘wp_robots_noindex_search’) ;

function wp_robots_noindex_search( array $robots ) {
	if ( is_search() ) {
		return wp_robots_no_robots( $robots );
	}

	return $robots;
}

常见问题

FAQs
查看更多 >