I'm currently using a custom field called "Developing" to show whether or not a news story is a developing story. The custom field has a couple of values: a blank option (meaning it is not developing), "Yes," and "Was Developing." This is the code I use to display the word "Developing" in front of a news story title:
<?php if (get_meta('developing') != "") { ?>Developing: <?php } ?>
While it shows "Developing" when I've hit Yes, it also shows "Developing" when I change the option to "Was Developing." I'm assuming this is because I'm calling up the entire thing and not distinguishing between its options in the coding. Does anyone know if I can even do this? For example, can you have different messages show for each option? Something like using "developing's yes option means show this" instead of just "developing means this" like above?
Thank you!