add_filter( 'vcex_post_content_blocks', function( $blocks ) {
$blocks['my_custom_block_callback'] = 'My Custom Block Name';
return $blocks;
} );
function my_custom_block_callback() {
echo 'custom block output';
}
Snippets: Add Custom Block to Post Content Builder Module
Result:
