Add Custom Block to Post Content Builder Element
/** * Register new block for the Post Content element. * * @link https://totalwptheme.com/docs/snippets/custom-block-post-content-module/ */ add_filter( 'vcex_post_content_blocks', function( $blocks ) { $blocks['my_custom_block_callback'] = 'My Custom Block Name'; return $blocks; } ); /** * Callback function for the "my_custom_block_callback" Post Content…