// ============================================================ // 9. PROTECTION D'ACCÈS CIBLÉE — UNIQUEMENT LE TABLEAU DE BORD // ============================================================ function als_portal_auth_redirect() { // Ne rien faire si l'utilisateur est connecté if (is_user_logged_in()) { return; } // Pages autorisées sans connexion (ne pas rediriger vers elle-même) $allowed_pages = array('connexion', 'inscription'); $current_page_slug = ''; if (is_page()) { $current_page = get_queried_object(); $current_page_slug = $current_page->post_name; } // Protéger spécifiquement la page Tableau de bord (slug: accueil) // ET les pages Mes Dossiers, Mes Documents, Mon Compte $protected_pages = array('accueil', 'mes-dossiers', 'mes-documents', 'mon-compte'); // Si la page courante n'est pas protégée, on ne fait rien if (!in_array($current_page_slug, $protected_pages)) { return; } // Rediriger vers la page de connexion $login_url = home_url('/connexion/'); wp_safe_redirect($login_url); exit; } add_action('template_redirect', 'als_portal_auth_redirect'); Sample Page – Espace Client ALS

Sample Page

This is an example page. It’s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:

Hi there! I’m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin’ caught in the rain.)

…or something like this:

The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.

As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!