Server : nginx/1.24.0 System : Linux ip-172-31-33-48 6.14.0-1011-aws #11~24.04.1-Ubuntu SMP Fri Aug 1 02:07:25 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE Directory : /var/www/html/wp-content/plugins.off/insert-headers-and-footers/includes/ |
Upload File : |
<?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(); } } }