-
-
Save bmoredrew/fa8dbcdaa9d996e0261e5992c911136d to your computer and use it in GitHub Desktop.
Check if the_content is empty
This file contains 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 | |
if ( $post->post_content=="" ) | |
{ | |
// do something for posts without content | |
} | |
else | |
{ | |
// do something for posts with content | |
}; | |
// OR | |
if ( $post->post_content!=="" ) | |
{ | |
// do something for posts with content | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment