/** * Onboarding functions.php file. * * @package Divi * @subpackage onboarding * * @since ?? */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Trigger redirect to onboarding page after theme activation. * * @return void */ function et_onboarding_trigger_redirect() { // Do not redirect if WP-CLI is active. if ( defined( 'WP_CLI' ) && WP_CLI ) { return; } if ( ! class_exists( 'ET_Onboarding' ) ) { // get_template_directory() does not output a trailing slash. // {@see https://developer.wordpress.org/reference/functions/get_template_directory/}. require_once get_template_directory() . '/onboarding/onboarding.php'; } ET_Onboarding::redirect_to_onboarding_page(); } add_action( 'after_switch_theme', 'et_onboarding_trigger_redirect' ); /** * Trigger remove transients when theme is changed. * * @return void */ function et_onboarding_remove_transients() { if ( ! class_exists( 'ET_Onboarding' ) ) { // get_template_directory() does not output a trailing slash. // {@see https://developer.wordpress.org/reference/functions/get_template_directory/}. require_once get_template_directory() . '/onboarding/onboarding.php'; } ET_Onboarding::remove_transients(); } add_action( 'switch_theme', 'et_onboarding_remove_transients' ); Benoît Witz, Michelin Green Star, Jardin Secret, Cotignac, France

Benoît Witz, Michelin Green Star, Jardin Secret, Cotignac, France

Originally from a small village between the Vosges and Germany, Benoît developed his passion for cooking on the family farm, where large communal meals nurtured his calling as a chef.

Trained in some of France’s most prestigious restaurants, he honed his skills under Paul Bocuse, worked under Patrick Lenôtre at Le Pré Catelan in Paris, and alongside Alain Ducasse at Louis XV in Monaco. He later took the helm at L’Hostellerie de l’Abbaye de la Celle before becoming Executive Chef at Hôtel Hermitage in Monaco.

Drawn to the unique environment and rich terroir of Cotignac, as well as the commitment of Lou Calen’s owners to preserving this remarkable heritage, Benoît finds new inspiration here. His vision? To blend the pleasures of the table with the development of the local economy, sharing with you his deep appreciation for Provençal cuisine.