PATH:
home
/
letacommog
/
aperobusiness
/
wp-content
/
themes
/
deep
/
inc
/
core
/
templates
<?php /** * The templates * * @link https://webnus.net/ * @since 1.0.0 * @package Deep */ // If this file is called directly, abort. if ( ! defined( 'WPINC' ) ) { die; } // Define the template DIR define( 'TEMPELATE_DIR', DEEP_CORE_DIR . 'templates/' ); define( 'TEMPELATE_PART', '/inc/core/templates/' ); // Template loader function deep_call_template( $file ) { if ( defined( 'DEEP_CORE_DIR' ) ) : if ( ! strpos($file,'.php') ) { get_template_part( TEMPELATE_PART . str_replace( '.php', '', $file ) ); } else { if ( file_exists( TEMPELATE_DIR . $file ) ) { require TEMPELATE_DIR . $file; } } endif; }
[+]
..
[-] social-bar.php
[edit]
[-] subscribe-bar.php
[edit]
[-] instagram-bar.php
[edit]
[-] social.php
[edit]
[-] templates.php
[edit]
[+]
loops
[-] footer-bottom.php
[edit]