Skip to content

Instantly share code, notes, and snippets.

@morgyface
Created July 15, 2016 13:36
Show Gist options
  • Select an option

  • Save morgyface/9c59fc1de9db8133a28617c3affc33a0 to your computer and use it in GitHub Desktop.

Select an option

Save morgyface/9c59fc1de9db8133a28617c3affc33a0 to your computer and use it in GitHub Desktop.
WordPress | Only display content if NOT empty
<?php
$content = get_the_content();
if( !empty( $content ) ) {
echo '<div class="content">';
the_content();
echo '</div>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment