Skip to content

Instantly share code, notes, and snippets.

@norico
Last active January 14, 2019 22:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save norico/fec3430f7ae86ddb2217bf8380132e0e to your computer and use it in GitHub Desktop.
Save norico/fec3430f7ae86ddb2217bf8380132e0e to your computer and use it in GitHub Desktop.
<?php
// Rediriger un membre après inscription
function wp_redirect_inscription() {
return home_url( '/page-de-redirection.html' );
}
add_filter( 'registration_redirect', 'wp_redirect_inscription' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment