HEX
Server: Apache/2
System: Linux saturn 4.18.0-477.15.1.lve.2.el8.x86_64 #1 SMP Wed Aug 2 10:43:45 UTC 2023 x86_64
User: centuryt (1072)
PHP: 7.4.33
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/centuryt/public_html/wp-content/themes/woostify/inc/woostify-template-builder.php
<?php
/**
 * Theme Builder
 *
 * @package woostify
 */

defined( 'ABSPATH' ) || exit;

if ( ! function_exists( 'woostify_template_header' ) ) {
	/**
	 * Header template
	 */
	function woostify_template_header() {
		if ( function_exists( 'boostify_header_active' ) && boostify_header_active() ) {
			boostify_get_header_template();
		} else {
			get_template_part( 'template-parts/header' );
		}
	}
}

if ( ! function_exists( 'woostify_template_footer' ) ) {
	/**
	 * Footer template
	 */
	function woostify_template_footer() {
		if ( function_exists( 'boostify_footer_active' ) && boostify_footer_active() ) {
			boostify_get_footer_template();
		} else {
			get_template_part( 'template-parts/footer' );
		}
	}
}

if ( ! function_exists( 'woostify_template_single' ) ) {
	/**
	 * Single template
	 */
	function woostify_template_single() {
		get_template_part( 'template-parts/single' );
	}
}

if ( ! function_exists( 'woostify_template_archive' ) ) {
	/**
	 * Archive template
	 */
	function woostify_template_archive() {
		get_template_part( 'template-parts/archive' );
	}
}

if ( ! function_exists( 'woostify_template_404' ) ) {
	/**
	 * 404 template
	 */
	function woostify_template_404() {
		get_template_part( 'template-parts/404' );
	}
}