Display video on homepage for users who have not logged in
I’m assuming you already know how to get your popup video working, and you want to know how to make sure only people who aren’t logged in see the video. You can add this to your template file (footer.php is probably best): <?php if (is_front_page() && !is_user_logged_in()) { //video popup content } ?> WP: is_user_logged_in() … Read more