wp_robots_noindex_embeds

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

wp_robots_noindex_embeds: 这是一个WordPress的过滤钩子,用来控制嵌入式内容的不索引设置。它是用来控制搜索引擎是否应该索引嵌入的内容。

在嵌入的robots元标签中添加`noindex`。

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

add_filter( ‘wp_robots’, ‘wp_robots_noindex_embeds’) 。

function wp_robots_noindex_embeds( array $robots ) {
	if ( is_embed() ) {
		return wp_robots_no_robots( $robots );
	}

	return $robots;
}

常见问题

FAQs
查看更多 >