Skip to content

Instantly share code, notes, and snippets.

@trepmal
Last active November 27, 2015 14:18
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 trepmal/57b13bc324b7b22b19ba to your computer and use it in GitHub Desktop.
Save trepmal/57b13bc324b7b22b19ba to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin Name: Robots Crawl Delay
*/
function prefix_robots_crawl_delay( $output, $public ) {
$output .= "Crawl-delay: 8\n";
return $output;
}
add_filter( 'robots_txt', 'prefix_robots_crawl_delay', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment