11 lines
290 B
PHP
11 lines
290 B
PHP
|
|
<?php
|
||
|
|
class Wiaas_Templates {
|
||
|
|
|
||
|
|
public static function init() {
|
||
|
|
require_once dirname( __FILE__ ) . '/templates/class-wiaas-template-category.php';
|
||
|
|
require_once dirname( __FILE__ ) . '/templates/class-wiaas-template-category-object.php';
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
Wiaas_Templates::init();
|