-
-
Save cabrailsford/3fef39d59ce98124abe0b3a1f9300019 to your computer and use it in GitHub Desktop.
get_block_wrapper_attributes ACF simple test
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
{ | |
"name": "cab/test", | |
"title": "Test", | |
"description": "", | |
"category": "", | |
"icon": "", | |
"apiVersion": 2, | |
"keywords": [], | |
"styles": [], | |
"acf": { | |
"mode": "preview", | |
"renderTemplate": "render.php" | |
}, | |
"supports": { | |
"align": [ "wide" ], | |
"anchor": false, | |
"alignContent": false, | |
"color": { | |
"text": false, | |
"background": false, | |
"link": false | |
}, | |
"alignText": false, | |
"fullHeight": false | |
}, | |
"style": "file:./style.css", | |
"attributes": { | |
"align": { | |
"type": "string", | |
"default": "wide" | |
} | |
} | |
} |
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 | |
echo '<div ' . get_block_wrapper_attributes() . '>'; | |
echo 'Test'; | |
echo '</div>'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment