| 1 |
<?php |
| 2 |
/** |
| 3 |
* Gutenberg block loader for Video Grid (free). |
| 4 |
* @package VideoGrid |
| 5 |
*/ |
| 6 |
if ( ! defined( 'ABSPATH' ) ) { exit; } |
| 7 |
|
| 8 |
function rvg_register_video_grid_block() { |
| 9 |
if ( ! function_exists( 'register_block_type' ) ) { return; } |
| 10 |
register_block_type( __DIR__ . '/video-grid' ); |
| 11 |
} |
| 12 |
add_action( 'init', 'rvg_register_video_grid_block' ); |
| 13 |
|