Skip to content

Instantly share code, notes, and snippets.

@cabrailsford
Created November 13, 2022 11:57
Show Gist options
  • Save cabrailsford/3fef39d59ce98124abe0b3a1f9300019 to your computer and use it in GitHub Desktop.
Save cabrailsford/3fef39d59ce98124abe0b3a1f9300019 to your computer and use it in GitHub Desktop.
get_block_wrapper_attributes ACF simple test
{
"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"
}
}
}
<?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