Files
Roman Pyrih 97352dcdc9 first commit
2025-08-26 10:50:15 +02:00

14 lines
193 B
PHP

<?php
add_action(
'init',
'wpcf7_init_block_editor_assets',
10, 0
);
function wpcf7_init_block_editor_assets() {
register_block_type(
wpcf7_plugin_path( 'includes/block-editor' )
);
}