Last active
February 17, 2021 00:26
-
-
Save frankyonnetti/a9b2b8cfe9e38542d9285f41b5a8cac0 to your computer and use it in GitHub Desktop.
WordPress - if blocks #wordpress #if #blocks #acf
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 // has_block | |
| if (has_block('acf/call-to-action-image')) { | |
| $acf_block = "acf-blocks image-cta"; | |
| } else { | |
| $acf_block = "acf-blocks"; | |
| } | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment