wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_no_robots › WordPress Function

Since3.3.0
已弃用5.7.0
wp_no_robots ( 没有参数 )
定义在:
文档:
Change Log:
  • 5.3.0

Display a `noindex` meta tag.

Outputs a noindex meta tag that tells web robots not to index the page content. Typical usage is as a {@see 'wp_head'} callback: add_action( 'wp_head', 'wp_no_robots' );


源码

function wp_no_robots() {
	_deprecated_function( __FUNCTION__, '5.7.0', 'wp_robots_no_robots()' );

	if ( get_option( 'blog_public' ) ) {
		echo "<meta name='robots' content='noindex,follow' />\n";
		return;
	}

	echo "<meta name='robots' content='noindex,nofollow' />\n";
}