Johan
Johan

Reputation: 11

Wordpress/PHP splashscreen

I would like a splashscreen (php page) showing up when a user enters my site, but only once. Any easy way to do this?

Thanks

Upvotes: 1

Views: 472

Answers (1)

Ákos Nikházy
Ákos Nikházy

Reputation: 1306

Set a $_SESSION variable and check it if its set.

session_start();
if(isset($_SESSION['userwashere'])){
        //show the site code
} else {
       //show the splashscreen code
       $_SESSION['userwashere'] = true;
}

Upvotes: 2

Related Questions