Created
July 15, 2016 13:36
-
-
Save morgyface/9c59fc1de9db8133a28617c3affc33a0 to your computer and use it in GitHub Desktop.
WordPress | Only display content if NOT empty
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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