Skip to content

Instantly share code, notes, and snippets.

@vfontjr
Created May 5, 2020 09:52
Show Gist options
  • Save vfontjr/636628925e3bd3a4b54530c02df57a67 to your computer and use it in GitHub Desktop.
Save vfontjr/636628925e3bd3a4b54530c02df57a67 to your computer and use it in GitHub Desktop.
<?php
//* Append directives to the virtual robots.txt
//* Siteground adds crawl-delay: 10 to robots.txt. Don't use physical robots.txt on SiteGround
add_filter( 'robots_txt', 'robots_mod', 10, 2 );
function robots_mod( $output, $public ) {
$output .= "Sitemap: https://victorfont.com/sitemap_index.xml";
return $output;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment