PHP Filters
lzb/block_render/callback
Custom output callback for the block. See additional info on this article.
Attributes
Name | Type | Description |
---|---|---|
$result | String | block output |
$attributes | Array | block attributes |
$context | String | rendering context [editor , frontend ] |
Additional Filters
Name | Description |
---|---|
lazyblock/BLOCK_SLUG/frontend_callback | specific block in the frontend only |
lazyblock/BLOCK_SLUG/editor_callback | specific block in the editor only |
lazyblock/BLOCK_SLUG/callback | specific block only |
Usage
PHP
function my_lzb_block_render_callback( $result, $attributes, $context ) {
// Custom output for all blocks
return '<p>Custom Paragraph</p>';
}
add_filter( 'lzb/block_render/callback', 'my_lzb_block_render_callback', 10, 3 );
PHP
function my_lzb_block_render_callback( $result, $attributes, $context ) {
// Custom output for block "lazyblock/my-custom-block"
return '<p>Custom Paragraph</p>';
}
add_filter( 'lazyblock/my-custom-block/callback', 'my_lzb_block_render_callback', 10, 3 );