config.php
20 lines
| 1 | <?php |
| 2 | /** |
| 3 | * VK Component Config |
| 4 | * |
| 5 | * @package VK Blocks |
| 6 | */ |
| 7 | |
| 8 | // Do not load directly. |
| 9 | if ( ! defined( 'ABSPATH' ) ) { |
| 10 | exit; |
| 11 | } |
| 12 | |
| 13 | use VektorInc\VK_Component\VK_Component_Button; |
| 14 | use VektorInc\VK_Component\VK_Component_Mini_Contents; |
| 15 | use VektorInc\VK_Component\VK_Component_Posts; |
| 16 | |
| 17 | VK_Component_Button::init(); |
| 18 | VK_Component_Mini_Contents::init(); |
| 19 | VK_Component_Posts::init(); |
| 20 |