Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wp-seopress/04d2b5d5bde1f801f3b62f6baa40de8f to your computer and use it in GitHub Desktop.
Save wp-seopress/04d2b5d5bde1f801f3b62f6baa40de8f to your computer and use it in GitHub Desktop.
Run action after a 404 error is inserted
add_action('seopress_after_create_404', 'sp_after_create_404');
function sp_after_create_404($id) {
//do your stuff here
return $something;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment