Forked from bhongy/Wordpress: Do if the_content is not empty
Created
September 15, 2023 03:36
-
-
Save Sanabria/414ad6341849229351ad29002194beb2 to your computer and use it in GitHub Desktop.
Wordpress: Check if the_content is empty / do something only when the_content is 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 if ( get_the_content() ) { ?> | |
// do or output something | |
<?php } ?> // break php tag for HTML block |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment