• File: hooks.php
  • Full Path: /home/monpetu/www/leoreno.fr/wp-content/themes/buildexo/includes/classes/hooks.php
  • Date Modified: 10/29/2024 2:43 PM
  • File size: 786 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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() {





	}





}