Skip to content

Instantly share code, notes, and snippets.

@jelmerdemaat
Last active November 7, 2016 09:29
Show Gist options
  • Save jelmerdemaat/7151373 to your computer and use it in GitHub Desktop.
Save jelmerdemaat/7151373 to your computer and use it in GitHub Desktop.
If WordPress post has content
<?php the_post(); if(trim($post->post_content) != "") : ?>
<div class="main-content">
<?php the_content(); ?>
</div>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment