| Current Path : /home/copmadinaarea/thecopmadinaarea.org/wp-content/themes/deeds/includes/classes/ |
| Current File : /home/copmadinaarea/thecopmadinaarea.org/wp-content/themes/deeds/includes/classes/hooks.php |
<?php
namespace deeds\Includes\Classes;
/**
* Header and Enqueue class
*/
class Hooks {
function __construct() {
add_action( 'deeds_main_header', array( $this, 'header' ) );
}
/**
* Hook up main headers with different header styles
*
* @return void This function returns nothing.
*/
function header() {
}
}