Server : LiteSpeed System : Linux server321.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64 User : apotdzgr ( 7060) PHP Version : 8.0.30 Disable Function : NONE Directory : /home/apotdzgr/public_html/wp-content/themes/flatsome/inc/blocks/uxbuilder/ |
Upload File : |
<?php /** * Server-side rendering of the `flatsome/uxbuilder` block. * * @package Flatsome */ /** * Registers the `flatsome/uxbuilder` component and block. This block doesn't * need a render function because it only contains raw HTML and shortcodes. */ function flatsome_register_uxbuilder_block() { $path = __DIR__ . '/block.json'; $metadata = json_decode( file_get_contents( $path ), true ); register_block_type( $metadata['name'], $metadata ); } add_action( 'init', 'flatsome_register_uxbuilder_block' );