14 lines
286 B
PHP
14 lines
286 B
PHP
<?php
|
|
/**
|
|
* Registers the Carousel Control block.
|
|
*
|
|
* @package GenerateBlocksPro
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
|
|
// Load the class file.
|
|
require_once GENERATEBLOCKS_PRO_DIR . 'includes/blocks/carousel-control/class-carousel-control.php';
|