Sauter la navigation

[Résolu] Redirecting logged in users

This support ticket is created Il y a 5 années et 2 mois. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 -
- 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 -

Supporter timezone: Europe/London (GMT+00:00)

Marqué : 

Ce sujet contient 1 réponse, a 2 voix.

Dernière mise à jour par Nigel Il y a 5 années et 2 mois.

Assisté par: Nigel.

Auteur
Publications
#1372941

Hi there,

I'm trying to figure out how to redirect users if they are already logged in.

For example, i want to create a landing home page to gather users which is hidden to logged in users. If they're are already logged in, how can I redirect them to another page?

#1373021

Nigel
Supporter

Les langues: Anglais (English ) Espagnol (Español )

Fuseau horaire: Europe/London (GMT+00:00)

Hi Kyle

That's not really a Toolset question.

You need to add a PHP snippet (which you can add at Toolset > Settings > Custom Code) that checks if the current page is the one you want to target, checks if there is a logged-in user, and if so performs a redirect.

The earliest hook you should use to add your code is the 'wp' hook (https://codex.wordpress.org/Plugin_API/Action_Reference/wp).

You can test the current page with is_page() (https://developer.wordpress.org/reference/functions/is_page/)

You can test if there is a logged-in user with is_user_logged_in() (https://developer.wordpress.org/reference/functions/is_user_logged_in/)

You can use wp_redirect to redirect to another page (https://developer.wordpress.org/reference/functions/wp_redirect/).