Filter robots.txt output

git-svn-id: http://svn.automattic.com/wordpress/trunk@13891 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2010-03-30 15:48:52 +00:00
parent e2c3b87693
commit cb0854bfdb
1 changed files with 9 additions and 5 deletions

View File

@ -1775,13 +1775,17 @@ function do_robots() {
do_action( 'do_robotstxt' );
if ( '0' == get_option( 'blog_public' ) ) {
echo "User-agent: *\n";
echo "Disallow: /\n";
$output = '';
$public = get_option( 'blog_public' );
if ( '0' == $public ) {
$output .= "User-agent: *\n";
$output .= "Disallow: /\n";
} else {
echo "User-agent: *\n";
echo "Disallow:\n";
$output .= "User-agent: *\n";
$output .= "Disallow:\n";
}
echo apply_filters('robots_txt', $output, $public);
}
/**