30 lines
285 B
PHP
30 lines
285 B
PHP
|
<?php
|
||
|
|
||
|
namespace THINKAI\Includes\Classes;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Header and Enqueue class
|
||
|
*/
|
||
|
class Helpers {
|
||
|
|
||
|
|
||
|
function __construct() {
|
||
|
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Hook up main headers with different header styles
|
||
|
*
|
||
|
* @return void This function returns nothing.
|
||
|
*/
|
||
|
function header() {
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|