/**
 * Theme functions and definitions
 *
 * @package HelloElementor
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

define( 'HELLO_ELEMENTOR_VERSION', '3.4.4' );
define( 'EHP_THEME_SLUG', 'hello-elementor' );

define( 'HELLO_THEME_PATH', get_template_directory() );
define( 'HELLO_THEME_URL', get_template_directory_uri() );
define( 'HELLO_THEME_ASSETS_PATH', HELLO_THEME_PATH . '/assets/' );
define( 'HELLO_THEME_ASSETS_URL', HELLO_THEME_URL . '/assets/' );
define( 'HELLO_THEME_SCRIPTS_PATH', HELLO_THEME_ASSETS_PATH . 'js/' );
define( 'HELLO_THEME_SCRIPTS_URL', HELLO_THEME_ASSETS_URL . 'js/' );
define( 'HELLO_THEME_STYLE_PATH', HELLO_THEME_ASSETS_PATH . 'css/' );
define( 'HELLO_THEME_STYLE_URL', HELLO_THEME_ASSETS_URL . 'css/' );
define( 'HELLO_THEME_IMAGES_PATH', HELLO_THEME_ASSETS_PATH . 'images/' );
define( 'HELLO_THEME_IMAGES_URL', HELLO_THEME_ASSETS_URL . 'images/' );

if ( ! isset( $content_width ) ) {
	$content_width = 800; // Pixels.
}

if ( ! function_exists( 'hello_elementor_setup' ) ) {
	/**
	 * Set up theme support.
	 *
	 * @return void
	 */
	function hello_elementor_setup() {
		if ( is_admin() ) {
			hello_maybe_update_theme_version_in_db();
		}

		if ( apply_filters( 'hello_elementor_register_menus', true ) ) {
			register_nav_menus( [ 'menu-1' => esc_html__( 'Header', 'hello-elementor' ) ] );
			register_nav_menus( [ 'menu-2' => esc_html__( 'Footer', 'hello-elementor' ) ] );
		}

		if ( apply_filters( 'hello_elementor_post_type_support', true ) ) {
			add_post_type_support( 'page', 'excerpt' );
		}

		if ( apply_filters( 'hello_elementor_add_theme_support', true ) ) {
			add_theme_support( 'post-thumbnails' );
			add_theme_support( 'automatic-feed-links' );
			add_theme_support( 'title-tag' );
			add_theme_support(
				'html5',
				[
					'search-form',
					'comment-form',
					'comment-list',
					'gallery',
					'caption',
					'script',
					'style',
					'navigation-widgets',
				]
			);
			add_theme_support(
				'custom-logo',
				[
					'height'      => 100,
					'width'       => 350,
					'flex-height' => true,
					'flex-width'  => true,
				]
			);
			add_theme_support( 'align-wide' );
			add_theme_support( 'responsive-embeds' );

			/*
			 * Editor Styles
			 */
			add_theme_support( 'editor-styles' );
			add_editor_style( 'editor-styles.css' );

			/*
			 * WooCommerce.
			 */
			if ( apply_filters( 'hello_elementor_add_woocommerce_support', true ) ) {
				// WooCommerce in general.
				add_theme_support( 'woocommerce' );
				// Enabling WooCommerce product gallery features (are off by default since WC 3.0.0).
				// zoom.
				add_theme_support( 'wc-product-gallery-zoom' );
				// lightbox.
				add_theme_support( 'wc-product-gallery-lightbox' );
				// swipe.
				add_theme_support( 'wc-product-gallery-slider' );
			}
		}
	}
}
add_action( 'after_setup_theme', 'hello_elementor_setup' );

function hello_maybe_update_theme_version_in_db() {
	$theme_version_option_name = 'hello_theme_version';
	// The theme version saved in the database.
	$hello_theme_db_version = get_option( $theme_version_option_name );

	// If the 'hello_theme_version' option does not exist in the DB, or the version needs to be updated, do the update.
	if ( ! $hello_theme_db_version || version_compare( $hello_theme_db_version, HELLO_ELEMENTOR_VERSION, '<' ) ) {
		update_option( $theme_version_option_name, HELLO_ELEMENTOR_VERSION );
	}
}

if ( ! function_exists( 'hello_elementor_display_header_footer' ) ) {
	/**
	 * Check whether to display header footer.
	 *
	 * @return bool
	 */
	function hello_elementor_display_header_footer() {
		$hello_elementor_header_footer = true;

		return apply_filters( 'hello_elementor_header_footer', $hello_elementor_header_footer );
	}
}

if ( ! function_exists( 'hello_elementor_scripts_styles' ) ) {
	/**
	 * Theme Scripts & Styles.
	 *
	 * @return void
	 */
	function hello_elementor_scripts_styles() {
		if ( apply_filters( 'hello_elementor_enqueue_style', true ) ) {
			wp_enqueue_style(
				'hello-elementor',
				HELLO_THEME_STYLE_URL . 'reset.css',
				[],
				HELLO_ELEMENTOR_VERSION
			);
		}

		if ( apply_filters( 'hello_elementor_enqueue_theme_style', true ) ) {
			wp_enqueue_style(
				'hello-elementor-theme-style',
				HELLO_THEME_STYLE_URL . 'theme.css',
				[],
				HELLO_ELEMENTOR_VERSION
			);
		}

		if ( hello_elementor_display_header_footer() ) {
			wp_enqueue_style(
				'hello-elementor-header-footer',
				HELLO_THEME_STYLE_URL . 'header-footer.css',
				[],
				HELLO_ELEMENTOR_VERSION
			);
		}
	}
}
add_action( 'wp_enqueue_scripts', 'hello_elementor_scripts_styles' );

if ( ! function_exists( 'hello_elementor_register_elementor_locations' ) ) {
	/**
	 * Register Elementor Locations.
	 *
	 * @param ElementorPro\Modules\ThemeBuilder\Classes\Locations_Manager $elementor_theme_manager theme manager.
	 *
	 * @return void
	 */
	function hello_elementor_register_elementor_locations( $elementor_theme_manager ) {
		if ( apply_filters( 'hello_elementor_register_elementor_locations', true ) ) {
			$elementor_theme_manager->register_all_core_location();
		}
	}
}
add_action( 'elementor/theme/register_locations', 'hello_elementor_register_elementor_locations' );

if ( ! function_exists( 'hello_elementor_content_width' ) ) {
	/**
	 * Set default content width.
	 *
	 * @return void
	 */
	function hello_elementor_content_width() {
		$GLOBALS['content_width'] = apply_filters( 'hello_elementor_content_width', 800 );
	}
}
add_action( 'after_setup_theme', 'hello_elementor_content_width', 0 );

if ( ! function_exists( 'hello_elementor_add_description_meta_tag' ) ) {
	/**
	 * Add description meta tag with excerpt text.
	 *
	 * @return void
	 */
	function hello_elementor_add_description_meta_tag() {
		if ( ! apply_filters( 'hello_elementor_description_meta_tag', true ) ) {
			return;
		}

		if ( ! is_singular() ) {
			return;
		}

		$post = get_queried_object();
		if ( empty( $post->post_excerpt ) ) {
			return;
		}

		echo '<meta name="description" content="' . esc_attr( wp_strip_all_tags( $post->post_excerpt ) ) . '">' . "\n";
	}
}
add_action( 'wp_head', 'hello_elementor_add_description_meta_tag' );

// Settings page
require get_template_directory() . '/includes/settings-functions.php';

// Header & footer styling option, inside Elementor
require get_template_directory() . '/includes/elementor-functions.php';

if ( ! function_exists( 'hello_elementor_customizer' ) ) {
	// Customizer controls
	function hello_elementor_customizer() {
		if ( ! is_customize_preview() ) {
			return;
		}

		if ( ! hello_elementor_display_header_footer() ) {
			return;
		}

		require get_template_directory() . '/includes/customizer-functions.php';
	}
}
add_action( 'init', 'hello_elementor_customizer' );

if ( ! function_exists( 'hello_elementor_check_hide_title' ) ) {
	/**
	 * Check whether to display the page title.
	 *
	 * @param bool $val default value.
	 *
	 * @return bool
	 */
	function hello_elementor_check_hide_title( $val ) {
		if ( defined( 'ELEMENTOR_VERSION' ) ) {
			$current_doc = Elementor\Plugin::instance()->documents->get( get_the_ID() );
			if ( $current_doc && 'yes' === $current_doc->get_settings( 'hide_title' ) ) {
				$val = false;
			}
		}
		return $val;
	}
}
add_filter( 'hello_elementor_page_title', 'hello_elementor_check_hide_title' );

/**
 * BC:
 * In v2.7.0 the theme removed the `hello_elementor_body_open()` from `header.php` replacing it with `wp_body_open()`.
 * The following code prevents fatal errors in child themes that still use this function.
 */
if ( ! function_exists( 'hello_elementor_body_open' ) ) {
	function hello_elementor_body_open() {
		wp_body_open();
	}
}

require HELLO_THEME_PATH . '/theme.php';

HelloTheme\Theme::instance();<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://securelinknetworking.sample-version.com/wp-sitemap.xsl" ?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><url><loc>https://securelinknetworking.sample-version.com/2025/08/18/hello-world/</loc><lastmod>2025-08-18T10:32:58+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/10/28/own-the-game-night-at-pinco-casino/</loc><lastmod>2025-10-28T18:18:57+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/10/28/map-out-your-wins-at-pinco-casino/</loc><lastmod>2025-10-28T18:36:39+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/10/28/fraga-casinoda-f%c9%99th-mutt%c9%99fiqi/</loc><lastmod>2025-10-28T22:55:27+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/10/29/ice-fishing-votre-chemin-vers-des-gains-polaires/</loc><lastmod>2025-10-29T06:45:37+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/10/29/managing-diabetes-all-forms-of-diabetes/</loc><lastmod>2025-10-29T09:37:36+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/10/29/pin-up-casino-yukle-apk-android-v-ios-rsmi-sayt-az-141/</loc><lastmod>2025-10-29T13:08:52+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/10/29/pin-up-azerbaycan-201/</loc><lastmod>2025-10-29T22:08:47+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/10/30/esta-tienda-online-11/</loc><lastmod>2025-10-30T11:57:56+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/10/30/azrbaycanda-onlayn-kazino-pin-up-pin-up-slot-89/</loc><lastmod>2025-10-30T13:44:41+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/10/31/pinup-casino-yukle-android-v-ios-ucun-rsmi-ttbiq-7/</loc><lastmod>2025-10-31T00:56:34+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/10/31/pin-up-az-giri-qeydiyyat-2025-6/</loc><lastmod>2025-10-31T15:17:56+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/01/mathematische-vorteile-nutzen-im-cat-spins-casino/</loc><lastmod>2025-11-01T07:34:00+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/01/tisser-ses-victoires-au-cresus-casino/</loc><lastmod>2025-11-01T07:36:59+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/01/paradigmen-des-sieges-im-cat-spins-casino/</loc><lastmod>2025-11-01T07:38:30+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/01/fedezd-fel-a-bizzo-casino-ujdonsagait-es/</loc><lastmod>2025-11-01T09:36:34+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/01/rozjezd-s-bizzo-casinem-maximalni-zisk-s-bonusy/</loc><lastmod>2025-11-01T12:08:03+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/01/experiencias-unicas-en-bizzo-casino-chile/</loc><lastmod>2025-11-01T13:15:52+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/01/exploring-the-thrilling-realm-of-intensity-casino-5/</loc><lastmod>2025-11-01T14:40:40+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/01/the-thrilling-expedition-through-joe-fortune/</loc><lastmod>2025-11-01T15:45:35+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/01/journey-through-the-skies-of-chance-an-exploration/</loc><lastmod>2025-11-01T17:13:16+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/01/the-wild-quest-for-winnings-in-buffalo-blitz-slots/</loc><lastmod>2025-11-01T20:31:42+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/01/una-explosion-de-entretenimiento-en-mega-ruleta-de/</loc><lastmod>2025-11-01T22:46:40+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/02/die-aufregende-entdeckungsreise-in-die-welt-von/</loc><lastmod>2025-11-02T10:22:23+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/02/spannende-avonturen-met-fatpirate-casino-in/</loc><lastmod>2025-11-03T00:03:35+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/03/funbet-casino-303/</loc><lastmod>2025-11-03T08:44:43+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/03/aventuras-empolgantes-na-plataforma-funbet-casino/</loc><lastmod>2025-11-03T08:46:54+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/03/7slots-yeni-nesil-elence-dunyas/</loc><lastmod>2025-11-03T17:45:01+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/03/de-complete-gids-voor-kansen-bij-onecasino/</loc><lastmod>2025-11-03T18:04:16+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/03/entdeckung-der-wunderschatze-im-wazamba-online/</loc><lastmod>2025-11-03T20:07:57+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/10/18/avia-masters-avaliacao-recreacao-de-crash-com-dinheiro-real-por-bgaming/</loc><lastmod>2025-10-18T14:16:38+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/03/explorando-la-fascinante-aventura-del-juego-en/</loc><lastmod>2025-11-03T22:35:31+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/04/coronavirus-disease-2019/</loc><lastmod>2025-11-04T09:50:51+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/10/26/bgaming/</loc><lastmod>2025-10-26T11:33:31+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/04/malina-casino-627/</loc><lastmod>2025-11-04T11:54:55+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/04/raj-gier-w-malina-casino-niezapomniane-doznania/</loc><lastmod>2025-11-04T11:54:57+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/04/explorando-la-diversion-y-posibilidades-en-malina/</loc><lastmod>2025-11-04T13:14:45+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/04/table-of-contents/</loc><lastmod>2025-11-04T13:17:15+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/04/a-great-retrospective-survey-away-from-whales-pearl-deluxe-slot/</loc><lastmod>2025-11-04T13:54:57+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/04/black-jack-bonus-list-of-a-knowledgeable-blackjack-internet-casino-incentives-2025/</loc><lastmod>2025-11-04T13:56:35+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/04/whales-pearl-deluxe-casino-slot-games-free-no-obtain/</loc><lastmod>2025-11-04T14:06:51+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/04/real-time-black-jack-better-alive-online-casino-games-evolution-games/</loc><lastmod>2025-11-04T14:08:02+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/04/3-hand-black-jack-comment-gamble-now-lets-talk-about-free-and-you-may-a-real-income/</loc><lastmod>2025-11-04T14:10:55+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/04/step-one-lowest-deposit-local-casino-whales-pearl-20-incentive-to-have-step-1-2023-procedures-to-happyness-applications/</loc><lastmod>2025-11-04T14:20:56+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/04/best-on-the-web-blackjack-websites-in-the-2025-gamble-blackjack-on-the-web/</loc><lastmod>2025-11-04T14:22:07+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/04/descubra-a-emocao-e-os-beneficios-do-posido-casino/</loc><lastmod>2025-11-04T20:00:48+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/04/avventure-gustose-lungo-il-sentiero-dell-animale/</loc><lastmod>2025-11-04T21:34:20+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/04/les-charms-envoutants-de-la-decouverte-du-posido/</loc><lastmod>2025-11-04T21:45:24+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/05/odkryj-rado-rozgrywki-w-allyspin-casino/</loc><lastmod>2025-11-05T10:31:07+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/05/entdeckung-der-faszination-im-5-gringos-casino/</loc><lastmod>2025-11-05T12:15:50+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/05/il-fascino-delle-esperienze-proposte-da-sg-casino/</loc><lastmod>2025-11-05T13:44:19+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/03/youtube-app/</loc><lastmod>2025-11-03T02:24:40+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/02/como-ejecutar-automaticamente-power-automate-desktop-flow/</loc><lastmod>2025-11-02T04:27:57+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/07/juega-la-demo-slot-gratis-avia-masters-en-linea/</loc><lastmod>2025-11-07T11:37:13+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/03/play-aviamasters-gambling-game-free-or-real-money/</loc><lastmod>2025-11-03T18:57:43+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/08/aviamasters-bgaming-crash-game-play-win-big/</loc><lastmod>2025-11-08T07:08:58+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/02/restaurants-v-berlinu/</loc><lastmod>2025-11-02T20:15:34+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/03/bgaming-2/</loc><lastmod>2025-11-03T10:15:36+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/01/play-demo-for-free/</loc><lastmod>2025-11-01T16:30:41+00:00</lastmod></url><url><loc>https://securelinknetworking.sample-version.com/2025/11/08/avia-masters-game-app-fuer-android-und-ios/</loc><lastmod>2025-11-08T11:46:34+00:00</lastmod></url></urlset>
