Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
themes
/
buildexo
/
includes
/
classes
:
hooks.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace buildexo\Includes\Classes; /** * Header and Enqueue class */ class Hooks { function __construct() { add_action( 'buildexo_main_header', array( $this, 'header' ) ); } /** * Hook up main headers with different header styles * * @return void This function returns nothing. */ function header() { } } /** * Footer and Enqueue class */ class Hooks { function __construct() { add_action( 'turner_main_footer', array( $this, 'footer' ) ); } /** * Hook up main footer with different footer styles * * @return void This function returns nothing. */ function footer() { } }