PATH:
home
/
lab2454c
/
sparxbankgroup.com
/
wp-content
/
plugins
/
elementskit
/
modules
/
header-footer
/
theme-hooks
<?php namespace ElementsKit\Modules\Header_Footer\Theme_Hooks; defined( 'ABSPATH' ) || exit; /** * Force fully replace the header footer. */ class Theme_Support { /** * Run all the Actions / Filters. */ function __construct($template_ids) { if($template_ids[0] != null){ add_action( 'get_header', [ $this, 'get_header' ] ); } if($template_ids[1] != null){ add_action( 'get_footer', [ $this, 'get_footer' ] ); } } public function get_header( $name ) { require __DIR__ . '/../views/theme-support-header.php'; $templates = []; $name = (string) $name; if ( '' !== $name ) { $templates[] = "header-{$name}.php"; } $templates[] = 'header.php'; // Avoid running wp_head hooks again remove_all_actions( 'wp_head' ); ob_start(); // It cause a `require_once` so, in the get_header it self it will not be required again. locate_template( $templates, true ); ob_get_clean(); } public function get_footer( $name ) { require __DIR__ . '/../views/theme-support-footer.php'; $templates = []; $name = (string) $name; if ( '' !== $name ) { $templates[] = "footer-{$name}.php"; } $templates[] = 'footer.php'; ob_start(); // It cause a `require_once` so, in the get_header it self it will not be required again. locate_template( $templates, true ); ob_get_clean(); } }
[-] twenty-nineteen.php
[edit]
[+]
..
[-] my-listing.php
[edit]
[-] astra.php
[edit]
[-] oceanwp.php
[edit]
[-] bbtheme.php
[edit]
[-] my-listing-functions.php
[edit]
[-] genesis.php
[edit]
[-] theme-support.php
[edit]
[-] generatepress.php
[edit]