I am using Wordpress and it has code like this:
<?php
if (is_user_logged_in()) {
?>
I want to add to it another set of if statements that check for a variable. I don't know the correct syntax but in plain English I want to say, "if users are logged in and $string1 or $string2 is empty…"
Please assist.