Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wp-seopress/86c9c02913ae3f3f67164295914bc6d5 to your computer and use it in GitHub Desktop.
Save wp-seopress/86c9c02913ae3f3f67164295914bc6d5 to your computer and use it in GitHub Desktop.
Exclude URL starting with specific values from 404 monitoring
add_filter('seopress_404_exclude','sp_pro_404_exclude');
function sp_pro_404_exclude($array) {
//URL starting with, to exclude (default: "wp-content/cache")
$array[] = 'wp-content/themes';
return $array;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment