Comment envoyer des variables avec wp_redirect () à partir du fichier function.php dans mon dossier de thème?
if ( $post_id ) {
$variable_to_send = '1';
wp_redirect( home_url(), $variable_to_send );
exit;
}
Et sur la page d'accueil, j'attraperai la variable en condition if-else pour montrer une confirmation ou non selon if $variable_to_send
= '1' ou non.
Comment faire ça dans WordPress?