HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ubuntu-8gb-hel1-1 6.8.0-55-generic #57-Ubuntu SMP PREEMPT_DYNAMIC Wed Feb 12 23:42:21 UTC 2025 x86_64
User: www-data (33)
PHP: 8.1.32
Disabled: NONE
Upload Files
File: /var/www/agighana.org_backup/my-listing-functions.php
<?php

if ( ! function_exists( 'hfe_render_header' ) ) {
	function hfe_render_header() {
		global $elementskit_template_ids;
		if ( $elementskit_template_ids[0] == null ) {
			return;
		}

		do_action( 'elementskit/template/before_header' );
		echo '<div class="ekit-template-content-markup ekit-template-content-header">';
			echo \ElementsKit_Lite\Utils::render_elementor_content( $elementskit_template_ids[0] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped --  Displaying with Elementor content rendering
		echo '</div>';
		do_action( 'elementskit/template/after_header' );
	}
}

if ( ! function_exists( 'get_hfe_header_id' ) ) {
	function get_hfe_header_id() {
		global $elementskit_template_ids;
		return $elementskit_template_ids[0];
	}
}

if ( ! function_exists( 'hfe_render_footer' ) ) {
	function hfe_render_footer() {
		global $elementskit_template_ids;
		if ( $elementskit_template_ids[1] == null ) {
			return;
		}

		do_action( 'elementskit/template/before_header' );
		echo '<div class="ekit-template-content-markup ekit-template-content-header">';
			echo \ElementsKit_Lite\Utils::render_elementor_content( $elementskit_template_ids[1] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped --  Displaying with Elementor content rendering
		echo '</div>';
		do_action( 'elementskit/template/after_header' );
	}
}

if ( ! function_exists( 'get_hfe_footer_id' ) ) {
	function get_hfe_footer_id() {
		global $elementskit_template_ids;
		return $elementskit_template_ids[1];
	}
}