/** * Theme functions and definitions * * @package HelloElementor */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } define( 'HELLO_ELEMENTOR_VERSION', '3.4.7' ); 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( 'assets/css/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 '' . "\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(); Admin – got pineapple?™ https://gotpineapple.com Fri, 13 Dec 2024 07:28:26 +0000 en hourly 1 https://wordpress.org/?v=6.9.4 https://gotpineapple.com/wp-content/uploads/2024/12/Black-Circle-with-Utensils-Restaurant-Logo-2-150x150.avif Admin – got pineapple?™ https://gotpineapple.com 32 32 Why Natural Energy Drinks Are the Future https://gotpineapple.com/why-natural-energy-drinks-are-the-future/ https://gotpineapple.com/why-natural-energy-drinks-are-the-future/#respond Mon, 09 Dec 2024 10:28:24 +0000 https://gotpineapple.com/?p=4532 Introduction:
The energy drink industry has been booming for years, but more consumers are shifting toward natural and healthier options. Here’s why natural energy drinks like got pineapple?™ are becoming the go-to choice.

Main Points:

  1. Healthier Ingredients: Natural energy drinks avoid synthetic chemicals, opting for real, nutrient-rich components like pineapple, green tea, and adaptogens. This focus supports overall well-being, not just energy.
  2. No Sugar, No Crashes: Traditional energy drinks often rely on added sugars that lead to energy spikes followed by a crash. got pineapple?™ delivers sustained energy without artificial sweeteners or hidden sugars.
  3. Sustainability Matters: Consumers are increasingly eco-conscious. Brands that prioritize organic ingredients and sustainable practices, like got pineapple?™, align with these values.
  4. A Holistic Approach to Energy: Natural energy drinks provide benefits beyond caffeine boosts—such as improved digestion, better hydration, and enhanced recovery after workouts.
  5. A Flavorful Experience: Unlike synthetic options, natural energy drinks offer authentic, refreshing flavors, like the tropical zing of real pineapple in got pineapple?™.

Conclusion:
The future of energy drinks is rooted in transparency, wellness, and sustainability. got pineapple?™ is proud to lead this movement with a clean, refreshing, and functional energy boost for every lifestyle.

]]>
https://gotpineapple.com/why-natural-energy-drinks-are-the-future/feed/ 0
Behind the Scenes: The Making of got pineapple?™ https://gotpineapple.com/behind-the-scenes-the-making-of-got-pineapple/ https://gotpineapple.com/behind-the-scenes-the-making-of-got-pineapple/#respond Mon, 09 Dec 2024 10:25:02 +0000 https://gotpineapple.com/?p=4529 Introduction:
Ever wonder what goes into creating a can of got pineapple?™? From our passion for natural ingredients to our commitment to sustainability, here’s a peek behind the scenes.

Main Points:

  • Sourcing the Best Pineapples: We work with trusted growers to ensure only the freshest, most flavorful pineapples make it into our drinks.
  • Sustainable Practices: From organic farming methods to eco-friendly packaging, we prioritize sustainability at every step.
  • Crafting the Formula: Our expert team combines pineapple with carefully selected ingredients like green tea extract and adaptogens to deliver a clean, functional energy drink.
  • Rigorous Quality Checks: Every can of got pineapple?™ undergoes strict testing to ensure consistency, flavor, and quality.

Conclusion:
At got pineapple?™, we take pride in every step of the process to bring you a drink that’s as good for you as it is for the planet.

]]>
https://gotpineapple.com/behind-the-scenes-the-making-of-got-pineapple/feed/ 0
5 Surprising Health Benefits of Pineapple https://gotpineapple.com/5-surprising-health-benefits-of-pineapple/ https://gotpineapple.com/5-surprising-health-benefits-of-pineapple/#respond Mon, 09 Dec 2024 10:23:35 +0000 https://gotpineapple.com/?p=4526 Introduction:
Pineapple isn’t just delicious—it’s packed with health benefits you might not know about. Here’s how it supports your well-being and why we’ve made it the star of got pineapple?™.

Main Points:

  1. Boosts Immunity: Its high vitamin C content strengthens your immune system and helps fight off colds and infections.
  2. Supports Digestive Health: Bromelain aids in breaking down food, making digestion smoother and more efficient.
  3. Improves Skin Health: The antioxidants in pineapple reduce skin damage and promote a youthful glow.
  4. Reduces Inflammation: Perfect for post-workout recovery or general wellness, pineapple’s natural compounds combat inflammation.
  5. Enhances Libido: Pineapple’s unique combination of nutrients and enzymes is believed to support sexual health and vitality.

Conclusion:
With so many incredible benefits, it’s no wonder pineapple is the hero ingredient in our drink. Experience these benefits in every can of got pineapple?™.

]]>
https://gotpineapple.com/5-surprising-health-benefits-of-pineapple/feed/ 0
Boost Your Workout with Natural Energy https://gotpineapple.com/boost-your-workout-with-natural-energy/ https://gotpineapple.com/boost-your-workout-with-natural-energy/#respond Mon, 09 Dec 2024 10:21:42 +0000 https://gotpineapple.com/?p=4523 Introduction:
Every fitness enthusiast knows the importance of fueling their body the right way. got pineapple?™ is your ideal workout partner, offering natural energy and recovery benefits.

Main Points:

  • Pre-Workout Energy: The green tea extract and natural caffeine in got pineapple?™ provide a steady energy supply to power through intense workouts.
  • Post-Workout Recovery: The 20g of protein helps repair muscles and aids recovery after strenuous exercise.
  • Hydration and Electrolytes: Rehydrate and replenish your body with the natural electrolytes found in pineapple.
  • Anti-Inflammatory Support: Bromelain helps reduce post-workout muscle soreness and inflammation.

Conclusion:
Whether you’re hitting the gym, running a marathon, or just staying active, got pineapple?™ is the perfect addition to your fitness routine.

]]>
https://gotpineapple.com/boost-your-workout-with-natural-energy/feed/ 0
How to Choose a Healthy Energy Drink https://gotpineapple.com/how-to-choose-a-healthy-energy-drink/ https://gotpineapple.com/how-to-choose-a-healthy-energy-drink/#respond Mon, 09 Dec 2024 10:20:25 +0000 https://gotpineapple.com/?p=4520 Introduction:
Energy drinks are everywhere, but not all are created equal. Choosing a healthy option can be a game-changer for your daily energy needs. Here’s how got pineapple?™ stands out.

Main Points:

  • Natural Ingredients Over Artificial Additives: Many energy drinks are filled with synthetic ingredients, artificial flavors, and preservatives. got pineapple?™ uses natural, clean components for a guilt-free energy boost.
  • Balanced Energy Sources: Instead of relying solely on caffeine, got pineapple?™ incorporates green tea extract for a sustained and natural boost without the crash.
  • Protein and Nutrition: With 20g of protein and naturally occurring nutrients, got pineapple?™ not only energizes but also nourishes.
  • No Added Sugar: Avoid the sugar spike and crash with our no-sugar formula, perfect for keto enthusiasts and health-conscious individuals.

Conclusion:
When choosing an energy drink, look for one that fuels your body naturally. With got pineapple?™, you’re getting energy and wellness in every sip.

]]>
https://gotpineapple.com/how-to-choose-a-healthy-energy-drink/feed/ 0
The Power of Pineapple: Benefits Beyond Energy https://gotpineapple.com/the-power-of-pineapple-benefits-beyond-energy/ https://gotpineapple.com/the-power-of-pineapple-benefits-beyond-energy/#respond Mon, 09 Dec 2024 10:19:04 +0000 https://gotpineapple.com/?p=4517 Pineapple isn’t just a tropical delight; it’s a powerhouse of health benefits. At got pineapple?™, we’ve harnessed the natural goodness of pineapple to create an energy drink that’s both refreshing and revitalizing.

Main Points:

  • Rich in Vitamin C: Pineapple is packed with vitamin C, an essential antioxidant that boosts immunity, promotes healthy skin, and reduces oxidative stress.
  • Bromelain for Digestion: This unique enzyme helps break down proteins, improving digestion and reducing bloating.
  • Anti-inflammatory Properties: Pineapple’s natural compounds can help reduce inflammation, making it a great post-workout drink.
  • Hydration and Electrolytes: The high water content and natural electrolytes in pineapple make it perfect for rehydration.

Conclusion:
By incorporating real pineapple and its functional benefits, got pineapple?™ goes beyond a typical energy drink to deliver a refreshing, healthful experience.

]]>
https://gotpineapple.com/the-power-of-pineapple-benefits-beyond-energy/feed/ 0