Files
CWC/views/blocks/boilerplate/boilerplate.php
T
Keith Solomon d7e721f323
Sync TODOs with Issues / sync_todos (push) Successful in 19s
feature: Initial commit
2026-05-02 10:38:21 -05:00

24 lines
480 B
PHP

<?php
/**
* Block Name: Boilerplate
*
* This is the template for building your own custom blocks.
*
* @package CWC
*/
namespace CWC;
$classes = 'boilerplate';
/**
* NOTE: DO NOT remove this function call - it is required to avoid editor issues.
* $is_preview is a WordPress global when in the editor.
*/
$wrapper = blockWrapperAttributes( $classes, $is_preview );
?>
<section <?php echo wp_kses_post( $wrapper ); ?>>
<!-- Your block code will go here -->
</section>