Server : Apache System : Linux server.lienzindia.com 4.18.0-348.7.1.el8_5.x86_64 #1 SMP Wed Dec 22 13:25:12 UTC 2021 x86_64 User : plutus ( 1007) PHP Version : 7.4.33 Disable Function : NONE Directory : /home/plutus/public_html/wp-content/themes/vrm/inc/theme-builder/ |
Upload File : |
<?php defined( 'ABSPATH' ) || exit; /*-------------------------------------------------------------------------------*/ /* [ Table of contents ] /*-------------------------------------------------------------------------------* # Core # Header # Footer # Single (Dynamic Templates) /*-------------------------------------------------------------------------------*/ /* [ Core ] /*-------------------------------------------------------------------------------*/ function wpex_theme_do_location( $location = '' ) { return \TotalTheme\Theme_Builder::instance()->do_location( $location ); } /*-------------------------------------------------------------------------------*/ /* [ Header ] /*-------------------------------------------------------------------------------*/ /** * Get header builder ID */ function wpex_header_builder_id() { if ( class_exists( 'TotalTheme\HeaderBuilder' ) ) { return TotalTheme\HeaderBuilder::get_template_id(); } } /** * Check if we are currently in header builder edit mode. */ function wpex_is_header_builder_page() { if ( ! empty( $_GET[ 'wpex_inline_header_template_editor' ] ) ) { return true; } $header_builder_id = wpex_header_builder_id(); if ( $header_builder_id && $header_builder_id == wpex_get_current_post_id() ) { return true; } } /*-------------------------------------------------------------------------------*/ /* [ Footer ] /*-------------------------------------------------------------------------------*/ /** * Get footer builder ID. */ function wpex_footer_builder_id() { if ( class_exists( 'TotalTheme\FooterBuilder' ) ) { return TotalTheme\FooterBuilder::get_template_id(); } } /** * Check if we are currently in footer builder edit mode. */ function wpex_is_footer_builder_page() { if ( ! empty( $_GET[ 'wpex_inline_footer_template_editor' ] ) ) { return true; } $footer_builder_id = wpex_footer_builder_id(); if ( $footer_builder_id && $footer_builder_id == wpex_get_current_post_id() ) { return true; } } /*-------------------------------------------------------------------------------*/ /* [ Single ] /*-------------------------------------------------------------------------------*/ /** * Returns post ID when using a dynamic template. */ function wpex_get_dynamic_post_id() { $post_id = wpex_get_current_post_id(); /** * Filters the post ID when using dynamic templates. * * @param int $post_id */ $post_id = apply_filters( 'wpex_get_dynamic_post_id', $post_id ); return $post_id; }