do_robots

函数
do_robots ( No parameters )
定义位置
相关方法
is_robotswp_robotswp_no_robotsdo_blocksrandom_bytes
引入
2.1.0
弃用
-

do_robots: 这是一个WordPress的函数,用于输出一个网站的robots.txt文件的内容。robots.txt文件是用来控制搜索引擎和其他网络爬虫对网站内容的索引方式。

显示默认的 robots.txt 文件内容。

function do_robots() {
	header( 'Content-Type: text/plain; charset=utf-8' );

	/**
	 * Fires when displaying the robots.txt file.
	 *
	 * @since 2.1.0
	 */
	do_action( 'do_robotstxt' );

	$output = "User-agent: *n";
	$public = get_option( 'blog_public' );

	$site_url = parse_url( site_url() );
	$path     = ( ! empty( $site_url['path'] ) ) ? $site_url['path'] : '';
	$output  .= "Disallow: $path/wp-admin/n";
	$output  .= "Allow: $path/wp-admin/admin-ajax.phpn";

	/**
	 * Filters the robots.txt output.
	 *
	 * @since 3.0.0
	 *
	 * @param string $output The robots.txt output.
	 * @param bool   $public Whether the site is considered "public".
	 */
	echo apply_filters( 'robots_txt', $output, $public );
}

常见问题

FAQs
查看更多 >