-
-
Save oneblackcrayon/7d531a3f89d32aa17b964060e4eda4ec 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