thepromakers approvde user redirecton

PHOTO EMBED

Thu Sep 05 2024 19:18:01 GMT+0000 (Coordinated Universal Time)

Saved by @Promakers2611

function redirect_approve_user_to_login() {
    if (is_page('approve-user')) {
        wp_redirect('https://thepromakers.com/login/');
        exit;
    }
}
add_action('template_redirect', 'redirect_approve_user_to_login');
content_copyCOPY