File "my-listing.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/my-listing.php
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';
	}
}