Show the post content if it exists
// Show post content if it exists $post = get_post($post->ID); if($post->post_content=="") { echo '<p>No description provided.</p>'; } else { genesis_do_post_content(); }