Skip to content

Instantly share code, notes, and snippets.

@Karendev
Forked from vfontjr/robots_mod.php
Created December 2, 2021 00:44
Show Gist options
  • Save Karendev/4b8bf25f0965ade011b5556bfcaf2b85 to your computer and use it in GitHub Desktop.
Save Karendev/4b8bf25f0965ade011b5556bfcaf2b85 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