Skip to content

Instantly share code, notes, and snippets.

@nielsenrc
Created September 9, 2015 19:45
Show Gist options
  • Select an option

  • Save nielsenrc/591e97da3afd9313d168 to your computer and use it in GitHub Desktop.

Select an option

Save nielsenrc/591e97da3afd9313d168 to your computer and use it in GitHub Desktop.
PHP | Add lines to dynamic Wordpress robots.txt
function virtual_robots_disallow( $output, $public ) {
$output .= "\n" . 'Disallow: /backup' . "\n";
return $output;
}
add_filter( 'robots_txt', 'virtual_robots_disallow', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment