Last active
July 8, 2020 22:29
-
-
Save ravewebdev/b5b4f60707c8c9f5772d2b918fcd706b to your computer and use it in GitHub Desktop.
1.2.2. Render static version of block in PHP
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 | |
function render_block( array $attributes ) : string { | |
$id = $attributes['id']; | |
$class = 'wp-block-rave-initiative-tracker'; | |
ob_start(); | |
?> | |
<div | |
class="<?php echo esc_attr( $class ); ?>" | |
data-id="<?php echo esc_attr( $id ); ?>" | |
data-post_id="<?php echo esc_attr( get_the_ID() ); ?>" | |
> | |
<!-- Your actual block content here... --> | |
</div> | |
<?php | |
return ob_get_clean(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment