theme-support-provider.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | namespace ShopEngine\Core\Service_Providers; |
| 4 | |
| 5 | |
| 6 | use ShopEngine\Core\Theme_Support\Theme_Support; |
| 7 | |
| 8 | class Theme_Support_Provider |
| 9 | { |
| 10 | |
| 11 | public function init() |
| 12 | { |
| 13 | add_action('wp_loaded', function () { |
| 14 | // do_action('shopEngine_active_templates', Theme_Support::get_active_templates()); |
| 15 | }); |
| 16 | } |
| 17 | |
| 18 | } |
| 19 |