Need help on creating If-statement for custom meta fields
This gets asked a lot so lets try and fully explain it. We can simply wrap it in an if statement and echo the value, for example, <?php if ( get_post_meta($post->ID, ‘genre’, true) ) : ?> <?php echo get_post_meta($post->ID, ‘genre, true) ?> ?> <?php endif; ?> But that is ugly, and why do 2 queries … Read more