<?php
$producer = get_post_meta($post->ID, 'producer', true);
_e($producer);
?>
[Please post code snippets between backticks or use the code button.]
That's a snippet of some post meta info I retrieve on my index posts. Where I insert it in my index.php, and the post doesn't contain that post meta info, there's a big gap between the title and body where the post meta info would go if there was post meta info (IE. only certain categories require it for my posts ). How would I go about eliminating that space if there was no post meta info?
More clarification can be made.