Current File : /home/kelaby89/muzza.fit/wp-content/themes/deadlift/inc/frontend/hooks.php |
<?php
/**
* Deadlift hook functions
*
* Inject content through template hooks
*
* @package WordPress
* @subpackage Deadlift
* @version 1.8.2
*/
defined( 'ABSPATH' ) || exit;
/**
* Site page hooks
*/
require_once get_parent_theme_file_path( '/inc/frontend/hooks/site.php' );
/**
* Navigation hooks
*/
require_once get_parent_theme_file_path( '/inc/frontend/hooks/navigation.php' );
/**
* Post hooks
*/
require_once get_parent_theme_file_path( '/inc/frontend/hooks/post.php' );
/**
* For Wolf Events plugin
*/
if ( is_file( get_parent_theme_file_path( '/inc/frontend/hooks/event.php' ) ) ) {
/**
* Event hooks
*/
require_once get_parent_theme_file_path( '/inc/frontend/hooks/event.php' );
}