| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/HostingSpaces/admin/tickwaves.com/wwwroot/wp-content/themes/solace/globals/ |
Upload File : |
<?php
/**
* Main Hooks.
*
* @package Solace/Hooks
*/
/* Header ( Navigation ) area */
/**
* Hook just before the header ( navigation ) area.
*
* @deprecated 2.11 Use do_action( 'solace_before_header_hook' ) instead.
*/
function solace_before_header_trigger() {
do_action( 'solace_before_header_hook' );
}
/**
* Hook at the beginning of header ( navigation ) area.
*
* @deprecated 2.11 Use do_action( 'solace_before_header_wrapper_hook' ) instead.
*/
function solace_before_header_wrapper_trigger() {
do_action( 'solace_before_header_wrapper_hook' );
}
/**
* Hook just after the header ( navigation ) area.
*
* @deprecated 2.11 Use do_action( 'solace_after_header_hook' ) instead.
*/
function solace_after_header_trigger() {
do_action( 'solace_after_header_hook' );
}
/**
* Hook just after the header content ( navigation ) area
*
* @deprecated 2.11 Use do_action( 'solace_after_header_wrapper_hook' ) instead.
*/
function solace_after_header_wrapper_trigger() {
do_action( 'solace_after_header_wrapper_hook' );
}
/**
* Hook just before the footer area
*
* @deprecated 2.11 Use do_action( 'solace_before_footer_hook' ) instead.
*/
function solace_before_footer_trigger() {
do_action( 'solace_before_footer_hook' );
}
/**
* Hook just after the footer area
*
* HTML context: after `footer`
*
* @deprecated 2.11 Use do_action( 'solace_after_footer_hook' ) instead.
*/
function solace_after_footer_trigger() {
do_action( 'solace_after_footer_hook' );
}
if ( ! function_exists( 'wp_body_open' ) ) {
/**
* Body open hook.
*/
function wp_body_open() {
do_action( 'wp_body_open' );
}
}