• File: my-listing.php
  • Full Path: /home/bravrvjk/hpgt.org/wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/my-listing.php
  • Date Modified: 05/18/2022 8:49 PM
  • File size: 386 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php 
namespace ElementsKit_Lite\Modules\Header_Footer\Theme_Hooks;

defined( 'ABSPATH' ) || exit;

/**
 * MyListing support for the header footer.
 */
class MyListing {


	/**
	 * Run all the Actions / Filters.
	 */
	function __construct( $template_ids ) {
		global $elementskit_template_ids;
		
		$elementskit_template_ids = $template_ids;
		include 'my-listing-functions.php';
	}
}