__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* Call new methods using the old class for backwards compatibility.
*
* @package WPCode
*/
if ( ! class_exists( 'InsertHeadersAndFooters' ) ) {
/**
* Class InsertHeadersAndFooters used in the IHAF 1.x.x.
*/
class InsertHeadersAndFooters {
/**
* Output the header code.
*
* @return void
*/
public function frontendHeader() {// phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid
wpcode_global_frontend_header();
}
/**
* Output the footer code.
*
* @return void
*/
public function frontendFooter() {// phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid
wpcode_global_frontend_footer();
}
/**
* Output the body code.
*
* @return void
*/
public function frontendBody() {// phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid
wpcode_global_frontend_body();
}
}
}