astra.php
4 years ago
bbtheme.php
4 years ago
generatepress.php
4 years ago
genesis.php
4 years ago
my-listing-functions.php
4 years ago
my-listing.php
4 years ago
neve.php
4 years ago
oceanwp.php
4 years ago
theme-support.php
4 years ago
twenty-nineteen.php
4 years ago
my-listing.php
22 lines
| 1 | <?php |
| 2 | namespace ElementsKit_Lite\Modules\Header_Footer\Theme_Hooks; |
| 3 | |
| 4 | defined( 'ABSPATH' ) || exit; |
| 5 | |
| 6 | /** |
| 7 | * MyListing support for the header footer. |
| 8 | */ |
| 9 | class MyListing { |
| 10 | |
| 11 | |
| 12 | /** |
| 13 | * Run all the Actions / Filters. |
| 14 | */ |
| 15 | function __construct( $template_ids ) { |
| 16 | global $elementskit_template_ids; |
| 17 | |
| 18 | $elementskit_template_ids = $template_ids; |
| 19 | include 'my-listing-functions.php'; |
| 20 | } |
| 21 | } |
| 22 |