I'm currently using Flutter Post, and I made a custom field for Merchant. I'm trying to make it so that when I type in: Best Buy in one of my posts for merchant, it will say merchant in my post. Here's the code I'm using: <?php if ( get_post_meta($post->ID, 'merchant', true) ) { ?> <?php echo $merchant; ?> <?php } else { ?> <?php } ?> Code (markup): It doesn't seem to display the word Best Buy, though.