Skip to content

Instantly share code, notes, and snippets.

@tott
Created November 14, 2013 14:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tott/7467479 to your computer and use it in GitHub Desktop.
Save tott/7467479 to your computer and use it in GitHub Desktop.
alter robots.txt
add_filter( 'robots_txt', 'sav_add_sitemap_to_robots' );
function sav_add_sitemap_to_robots( $robots ) {
$robots .= 'Sitemap: ' . site_url( 'sitemap_index.xml' );
return $robots;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment