Okay so I kind of understand that ternary operators work like
condition ? TRUE : FALSE
However I'm looking a simple loop to get my posts that I have
<?php if (have_posts()) :
while(have_posts()): the_post();
the_content();
endwhile;
endif;
?>
The question I have is where is the ? in this syntax. Why is the : used when according to the
condition ? TRUE : FALSE
Whatever comes after the semicolon is when that statement (like have_posts()) is FALSE?
