Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

WordPress

Konrad Pilch
Konrad Pilch
2,435 Points

Conditional Statement in WP?

Was i close? : p

So if the user didn't input the adress email, it will not show the li tag, but if it had, it will show it.

Or, was i far? This code doesnt work, im pretty sure, its messed up.

 <?php if ($adress_email) ?>
                  <li>Adress Email: <span class="orange"><?php echo $adress_email; ?></span></li>
               <?php elseif !($adress_email;) {

               } ?>
               <?php endif; ?>

not sure if the statement does what you want. perhaps try:

if($address_email != ""){ // if address_email NOT EQUALS empty show stuff }