/** * Mobile Menu Header Configuration. * * @package Astra * @link https://wpastra.com/ * @since 4.5.2 */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Register mobile-menu header builder Customizer Configurations. * * @since 4.5.2 * @return array Astra Customizer Configurations with updated configurations. */ function astra_header_mobile_menu_configuration() { $_section = 'section-header-mobile-menu'; $_configs = array( /** * Option: Header Builder Tabs */ array( 'name' => $_section . '-ast-context-tabs', 'section' => $_section, 'type' => 'control', 'control' => 'ast-builder-header-control', 'priority' => 0, 'description' => '', ), // Section: Primary Header. array( 'name' => $_section, 'type' => 'section', 'title' => __( 'Off-Canvas Menu', 'astra' ), 'panel' => 'panel-header-builder-group', 'priority' => 40, ), /** * Option: Theme Menu create link */ array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-create-menu-link]', 'default' => astra_get_option( 'header-mobile-menu-create-menu-link' ), 'type' => 'control', 'control' => 'ast-customizer-link', 'section' => $_section, 'priority' => 30, 'link_type' => 'section', 'linked' => 'menu_locations', 'link_text' => __( 'Configure Menu from Here.', 'astra' ), 'context' => Astra_Builder_Helper::$general_tab, 'divider' => array( 'ast_class' => 'ast-section-spacing ast-bottom-section-divider' ), ), // Option: Submenu Divider Checkbox. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-border]', 'default' => astra_get_option( 'header-mobile-menu-submenu-item-border' ), 'type' => 'control', 'control' => 'ast-toggle-control', 'section' => $_section, 'priority' => 150, 'title' => __( 'Item Divider', 'astra' ), 'context' => Astra_Builder_Helper::$general_tab, 'transport' => 'postMessage', 'divider' => array( 'ast_class' => 'ast-top-section-divider' ), ), // Option: Menu Color Divider. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-divider-colors-divider]', 'section' => $_section, 'type' => 'control', 'control' => 'ast-heading', 'title' => __( 'Item Divider', 'astra' ), 'priority' => 150, 'settings' => array(), 'context' => array( Astra_Builder_Helper::$design_tab_config, array( 'setting' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-border]', 'operator' => '==', 'value' => true, ), ), 'divider' => array( 'ast_class' => 'ast-section-spacing' ), ), // Option: Submenu item Border Size. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-b-size]', 'type' => 'control', 'control' => 'ast-slider', 'default' => astra_get_option( 'header-mobile-menu-submenu-item-b-size' ), 'section' => $_section, 'priority' => 150, 'transport' => 'postMessage', 'title' => __( 'Divider Size', 'astra' ), 'context' => array( Astra_Builder_Helper::$design_tab_config, array( 'setting' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-border]', 'operator' => '==', 'value' => true, ), ), 'suffix' => 'px', 'input_attrs' => array( 'min' => 1, 'step' => 1, 'max' => 10, ), 'divider' => array( 'ast_class' => 'ast-bottom-dotted-divider ast-section-spacing' ), ), // Option: Submenu item Border Color. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-b-color]', 'default' => astra_get_option( 'header-mobile-menu-submenu-item-b-color' ), 'type' => 'control', 'control' => 'ast-color', 'transport' => 'postMessage', 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_alpha_color' ), 'title' => __( 'Divider Color', 'astra' ), 'section' => $_section, 'priority' => 150, 'context' => array( Astra_Builder_Helper::$design_tab_config, array( 'setting' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-border]', 'operator' => '==', 'value' => true, ), ), ), // Option Group: Menu Color. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-link-colors]', 'type' => 'control', 'control' => 'ast-color-group', 'title' => __( 'Link', 'astra' ), 'section' => $_section, 'transport' => 'postMessage', 'priority' => 90, 'context' => Astra_Builder_Helper::$design_tab, 'responsive' => true, 'divider' => array( 'ast_title' => __( 'Menu Color', 'astra' ), 'ast_class' => 'ast-section-spacing', ), ), array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-background-colors]', 'type' => 'control', 'control' => 'ast-color-group', 'title' => __( 'Background', 'astra' ), 'section' => $_section, 'transport' => 'postMessage', 'priority' => 90, 'context' => Astra_Builder_Helper::$design_tab, 'responsive' => true, 'divider' => array( 'ast_title' => '', 'ast_class' => class_exists( 'Astra_Ext_Extension' ) && Astra_Ext_Extension::is_active( 'colors-and-background' ) ? 'ast-bottom-dotted-divider' : '', ), ), // Option: Menu Color. array( 'name' => 'header-mobile-menu-color-responsive', 'default' => astra_get_option( 'header-mobile-menu-color-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-link-colors]', 'type' => 'sub-control', 'control' => 'ast-responsive-color', 'transport' => 'postMessage', 'tab' => __( 'Normal', 'astra' ), 'section' => $_section, 'title' => __( 'Normal', 'astra' ), 'responsive' => true, 'rgba' => true, 'priority' => 7, 'context' => Astra_Builder_Helper::$general_tab, ), // Option: Menu Background image, color. array( 'name' => 'header-mobile-menu-bg-obj-responsive', 'default' => astra_get_option( 'header-mobile-menu-bg-obj-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-background-colors]', 'type' => 'sub-control', 'control' => 'ast-responsive-background', 'section' => $_section, 'transport' => 'postMessage', 'tab' => __( 'Normal', 'astra' ), 'data_attrs' => array( 'name' => 'header-mobile-menu-bg-obj-responsive' ), 'title' => __( 'Normal', 'astra' ), 'priority' => 9, 'context' => Astra_Builder_Helper::$general_tab, ), // Option: Menu Hover Color. array( 'name' => 'header-mobile-menu-h-color-responsive', 'default' => astra_get_option( 'header-mobile-menu-h-color-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-link-colors]', 'tab' => __( 'Hover', 'astra' ), 'type' => 'sub-control', 'control' => 'ast-responsive-color', 'transport' => 'postMessage', 'title' => __( 'Hover', 'astra' ), 'section' => $_section, 'responsive' => true, 'rgba' => true, 'priority' => 19, 'context' => Astra_Builder_Helper::$general_tab, ), // Option: Menu Hover Background Color. array( 'name' => 'header-mobile-menu-h-bg-color-responsive', 'default' => astra_get_option( 'header-mobile-menu-h-bg-color-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-background-colors]', 'type' => 'sub-control', 'title' => __( 'Hover', 'astra' ), 'section' => $_section, 'control' => 'ast-responsive-color', 'transport' => 'postMessage', 'tab' => __( 'Hover', 'astra' ), 'responsive' => true, 'rgba' => true, 'priority' => 21, 'context' => Astra_Builder_Helper::$general_tab, ), // Option: Active Menu Color. array( 'name' => 'header-mobile-menu-a-color-responsive', 'default' => astra_get_option( 'header-mobile-menu-a-color-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-link-colors]', 'type' => 'sub-control', 'section' => $_section, 'control' => 'ast-responsive-color', 'transport' => 'postMessage', 'tab' => __( 'Active', 'astra' ), 'title' => __( 'Active', 'astra' ), 'responsive' => true, 'rgba' => true, 'priority' => 31, 'context' => Astra_Builder_Helper::$general_tab, ), // Option: Active Menu Background Color. array( 'name' => 'header-mobile-menu-a-bg-color-responsive', 'default' => astra_get_option( 'header-mobile-menu-a-bg-color-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-background-colors]', 'type' => 'sub-control', 'control' => 'ast-responsive-color', 'transport' => 'postMessage', 'section' => $_section, 'title' => __( 'Active', 'astra' ), 'tab' => __( 'Active', 'astra' ), 'responsive' => true, 'rgba' => true, 'priority' => 33, 'context' => Astra_Builder_Helper::$general_tab, ), /** * Option: WOO Off Canvas Menu Submenu Color Section divider */ array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-typo-divider]', 'type' => 'control', 'control' => 'ast-heading', 'section' => $_section, 'title' => __( 'Font', 'astra' ), 'priority' => 120, 'settings' => array(), 'context' => Astra_Builder_Helper::$design_tab, 'divider' => array( 'ast_class' => 'ast-section-spacing', ), ), // Option Group: Menu Typography. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-menu-typography]', 'default' => astra_get_option( 'header-mobile-menu-header-menu-typography' ), 'type' => 'control', 'control' => 'ast-settings-group', 'title' => __( 'Menu Font', 'astra' ), 'section' => $_section, 'transport' => 'postMessage', 'priority' => 120, 'context' => Astra_Builder_Helper::$design_tab, 'divider' => array( 'ast_class' => 'ast-section-spacing', ), ), // Option: Menu Font Family. array( 'name' => 'header-mobile-menu-font-family', 'default' => astra_get_option( 'header-mobile-menu-font-family', 'inherit' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-menu-typography]', 'type' => 'sub-control', 'section' => $_section, 'transport' => 'postMessage', 'control' => 'ast-font', 'font_type' => 'ast-font-family', 'title' => __( 'Font Family', 'astra' ), 'priority' => 22, 'connect' => 'header-mobile-menu-font-weight', 'context' => Astra_Builder_Helper::$general_tab, 'divider' => array( 'ast_class' => 'ast-sub-bottom-dotted-divider' ), ), // Option: Menu Font Weight. array( 'name' => 'header-mobile-menu-font-weight', 'default' => astra_get_option( 'header-mobile-menu-font-weight', 'inherit' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-menu-typography]', 'section' => $_section, 'type' => 'sub-control', 'control' => 'ast-font', 'transport' => 'postMessage', 'font_type' => 'ast-font-weight', 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_font_weight' ), 'title' => __( 'Font Weight', 'astra' ), 'priority' => 23, 'connect' => 'header-mobile-menu-font-family', 'context' => Astra_Builder_Helper::$general_tab, 'divider' => array( 'ast_class' => 'ast-sub-bottom-dotted-divider' ), ), // Option: Menu Font Size. array( 'name' => 'header-mobile-menu-font-size', 'default' => astra_get_option( 'header-mobile-menu-font-size' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-menu-typography]', 'section' => $_section, 'type' => 'sub-control', 'priority' => 24, 'title' => __( 'Font Size', 'astra' ), 'control' => 'ast-responsive-slider', 'transport' => 'postMessage', 'context' => Astra_Builder_Helper::$general_tab, 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_responsive_slider' ), 'suffix' => array( 'px', 'em', 'vw', 'rem' ), 'input_attrs' => array( 'px' => array( 'min' => 0, 'step' => 1, 'max' => 200, ), 'em' => array( 'min' => 0, 'step' => 0.01, 'max' => 20, ), 'vw' => array( 'min' => 0, 'step' => 0.1, 'max' => 25, ), 'rem' => array( 'min' => 0, 'step' => 0.1, 'max' => 20, ), ), ), /** * Option: Font Extras */ array( 'name' => 'font-extras-header-mobile-menu', 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-menu-typography]', 'section' => $_section, 'type' => 'sub-control', 'control' => 'ast-font-extras', 'priority' => 24, 'default' => astra_get_option( 'font-extras-header-mobile-menu' ), 'title' => __( 'Font Extras', 'astra' ), ), /** * Option: Divider */ array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-menu-spacing-divider]', 'section' => $_section, 'title' => __( 'Spacing', 'astra' ), 'type' => 'control', 'control' => 'ast-heading', 'priority' => 150, 'settings' => array(), 'context' => Astra_Builder_Helper::$design_tab, 'divider' => array( 'ast_class' => 'ast-section-spacing' ), ), // Option - Menu Space. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-menu-spacing]', 'default' => astra_get_option( 'header-mobile-menu-menu-spacing' ), 'type' => 'control', 'control' => 'ast-responsive-spacing', 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_responsive_spacing' ), 'transport' => 'postMessage', 'section' => $_section, 'priority' => 150, 'title' => __( 'Menu Spacing', 'astra' ), 'linked_choices' => true, 'unit_choices' => array( 'px', 'em', '%' ), 'choices' => array( 'top' => __( 'Top', 'astra' ), 'right' => __( 'Right', 'astra' ), 'bottom' => __( 'Bottom', 'astra' ), 'left' => __( 'Left', 'astra' ), ), 'context' => Astra_Builder_Helper::$design_tab, 'divider' => array( 'ast_class' => 'ast-bottom-section-divider ast-section-spacing' ), ), /** * Option: Margin Space */ array( 'name' => ASTRA_THEME_SETTINGS . '[' . $_section . '-margin]', 'default' => astra_get_option( $_section . '-margin' ), 'type' => 'control', 'transport' => 'postMessage', 'control' => 'ast-responsive-spacing', 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_responsive_spacing' ), 'section' => $_section, 'priority' => 220, 'title' => __( 'Margin', 'astra' ), 'linked_choices' => true, 'unit_choices' => array( 'px', 'em', '%' ), 'choices' => array( 'top' => __( 'Top', 'astra' ), 'right' => __( 'Right', 'astra' ), 'bottom' => __( 'Bottom', 'astra' ), 'left' => __( 'Left', 'astra' ), ), 'context' => Astra_Builder_Helper::$design_tab, ), ); $_configs = array_merge( $_configs, Astra_Builder_Base_Configuration::prepare_visibility_tab( $_section ) ); if ( Astra_Builder_Customizer::astra_collect_customizer_builder_data() ) { array_map( 'astra_save_header_customizer_configs', $_configs ); } return $_configs; } if ( Astra_Builder_Customizer::astra_collect_customizer_builder_data() ) { add_action( 'init', 'astra_header_mobile_menu_configuration' ); }{"id":3148,"date":"2026-01-13T16:34:19","date_gmt":"2026-01-13T13:34:19","guid":{"rendered":"https:\/\/mizantechinstitute.com\/group5dm\/?p=3148"},"modified":"2026-01-13T17:50:18","modified_gmt":"2026-01-13T14:50:18","slug":"calorie-tracker-bmr-calculator-to-reach-your-goals-2-2","status":"publish","type":"post","link":"https:\/\/mizantechinstitute.com\/group5dm\/calorie-tracker-bmr-calculator-to-reach-your-goals-2-2\/","title":{"rendered":"Calorie Tracker & BMR Calculator to Reach Your Goals"},"content":{"rendered":"

Walk Workouts uses GPS to track your movement and let you visualize your walking route on a map. You can see your progress in real-time, as well as receive audio instructions during your workout sessions. The app provides you with healthy recipes and informs you regarding your calorie intake for the day. There\u2019s also a water tracking tool available, to make sure you stay hydrated.<\/p>\n

How to choose the best weight loss app<\/h2>\n

If apps like Strava help motivate you to go on a run and log mileage, or if AllTrails encourages you to go on a rigorous hike, then that can be helpful in your weight loss journey. Physical fitness apps can be used as motivation and inspiration, but it\u2019s your own dedication that will help you achieve your goals. If you’re looking for the best weightlifting app, look no further than Dr. Muscle. That is like a pro sports or olympic athlete personal trainer would take charge of you and would never unimeal reviews on sitejabber.com<\/a> have a bad day. Our simple weight tracking app makes it easy to begin your journey.<\/p>\n

The Nutrisense program pairs continuous glucose monitoring technology with personalized guidance from dietitians and nutritionists to help you understand your metabolic health. These insights can help you to make strategic decisions to support weight loss as part of a healthy lifestyle. Strong is a free app for iOS, Android, and Apple Watch, making it ideal for planning and logging workouts. It provides all the necessary tools for effective activity tracking, including a vast library of exercises and a practical data entry method. From beginner-friendly features to advanced analytics, our list has something for everyone. We\u2019ve considered the features, user interfaces, and pricing models of each app to help you find the right weightlifting tracker app for you and your budget.<\/p>\n

Walkmeter Walking & Hiking GPS is recommended for walkers and runners. It offers several features, including maps, graphs, intervals, laps, zones, splits, training plans, and more. Fitbit primarily tracks your steps and the distance you cover daily. It also shows how many calories you burned for the day and how many hours you were active. You can spot trends over time so you can create new plans to maximize your exercise time. Olya Schaefer, founder and CEO of The Athleticus Personal Training Studio, always recommends Trainerize for tracking workouts.<\/p>\n

Best Screensavers For Windows 10 (Free Download)<\/h3>\n

The application comes with a color-coded system where each food is assigned a color to help people avoid taking too much of calories. An integrated food database of over 3.7 million food options makes it easy for every person on the weight loss journey to intake the right food. One of the best features that users can leverage by using WW is that coaches are available round the clock to help you in your exercise and fitness journey.<\/p>\n

However, if you want to get the best out of the app, you might want to pay for the Elite subscription. You will have to pay through iTunes, as most of the app\u2019s services are connected to it. The app features customized coaching and provides actionable tips for your health activities.<\/p>\n

Workouts That Can Boost Your Aerobic Endurance<\/h2>\n

Additionally, the community features can offer the encouragement you need to stay on track. Outside of this community aspect, there are also regular tracking features, like a calorie counter, an exercise tracker, a heart rate monitor, and a sleep tracker. You can also get deeper into fitness tracking to see how long you spend in fat-burning or cardio zones. Cronometer is a robust nutrition tracker, allowing you to track up to 84 different nutrients in your diet. The app can sync up to fitness trackers, which will then input data from exercise into Cronometer.<\/p>\n

Best Apple Watch Integration: \u200bStrong<\/h3>\n

Cronometer is unique in that it provides an app for individual use as well as a pro version for healthcare professionals that can link to clients\u2019 food diaries. There is a blog with nutrition tips and a community component, such as a Facebook group, where users\u2019 can connect with others. The app also contains a reliable food database for which food submissions are verified for accuracy. OverviewMyFitnessPal is one of the most popular weight tracker apps available today. With a user-friendly interface, this app allows users to log their meals, exercise, and weight changes seamlessly. It boasts a vast database of more than six million foods, making it easy to track your calorie intake.<\/p>\n

How to Get Past a Weight Loss Plateau<\/h3>\n

Any way you want to look at your data, you’ll gain a better understanding of your personal nutrition so you can make smart choices that align with your weight, health, and fitness goals. Primarily targeted at women, My Diet Coach is a weight tracker and calorie counter app. You begin by setting a goal and tracking your progress over time.<\/p>\n

What Foods Have Probiotics? Colon-Ize Your Plate with Help From a Dietitian<\/h2>\n

You can also track daily, average, and total stats in the widgets. So without further ado, let\u2019s explore the eight best weight tracker apps available for iOS and Android that may help you make progress towards your weight loss goals. Some apps take a diet-focused approach, and others may put more of a focus on their fitness tracker functionality. If you are someone who may benefit from dietary support, you may want to look for an app with food logging capabilities and a food database that allows you to track your daily calorie intake.<\/p>\n

Instead of getting a calorie budget, you\u2019ll follow a point system that basically gets you to the same end goal. Unfortunately, Simple does not feature a community forum for extra motivation or praises, and the lone form of accountability is through the AI algorithm. \u201cYou do get worthwhile notifications for when to start and stop eating, but the lack of coaching or community can be a dealbreaker for some athletes,\u201d notes our tester. As such, we rate the accountability at a modest 3 out of 5 and suggest those wanting more interaction from their weight loss app to consider platforms like Future, Noom, or WeightWatchers. When it comes to price, Noom subscriptions can be difficult to assess since you\u2019re offered membership rates based on how lengthy the app perceives your weight loss journey to be.<\/p>\n

EvoluaFIT \u2013 Body Metrics<\/h2>\n

OverviewYAZIO is a multi-functional app that allows users to track their weight and meals while also offering personalized diet plans. OverviewSparkPeople is not only a weight tracking app but also an entire wellness community. It provides an array of resources to aid in weight loss, fitness, and healthy living. BenefitsMyFitnessPal\u2019s extensive food library makes it easy to log meals, even when dining out. The app\u2019s barcode scanner simplifies the process, allowing for quick entry of packaged foods.<\/p>\n

\"weight<\/p>\n

Best Apps for Walking to Lose Weight<\/h3>\n

Maybe you\u2019ve been inspired by the results you were seeing at the beginning of your weight loss journey and just need a gentle push to keep going. Or maybe you\u2019ve been https:\/\/www.hopkinsmedicine.org\/health\/wellness-and-prevention\/8-ways-to-lose-belly-fat-and-live-a-healthier-life<\/a> at it for a while and feel frustrated that your weight loss is starting to plateau. A lot of drinks you can prefer to keep yourself healthy and reduce weight.<\/p>\n

Get in Shape before Christmas 2025 with This Free Fitness Advent Calendar<\/h2>\n
    \n
  • The BetterMe app is Pilates-focused workout app aimed toward beginners.<\/li>\n
  • Unless you have studied exercise science or already have a program you’ve been following for a while that is working for you, I suggest you pay extra attention on Dr. Muscle App.<\/li>\n
  • At the same time, it will help you gain benefit most out of the app when you invest your time and money into the software.<\/li>\n
  • When it comes to price, Noom subscriptions can be difficult to assess since you\u2019re offered membership rates based on how lengthy the app perceives your weight loss journey to be.<\/li>\n
  • You don\u2019t have to worry about getting lost, timing your trip, or even keeping track of your favorite trails\u2014it\u2019s all in the app.<\/li>\n
  • This app can significantly help with your weight loss or gain plan.<\/li>\n<\/ul>\n

    Track steps, sleep, ovulation cycles, and store (and share) medical records. It has always been a good \u2018check-in\u2019 tool for me to make sure I\u2019m getting enough protein, or if I want to see how I\u2019m doing on macros. I have gone through spurts where I want to lose weight, so I\u2019ll use it for a few months at a time, and it has always been incredibly effective,\u201d Kate says. Unfortunately, BetterMe doesn\u2019t provide the best bang for your buck.<\/p>\n","protected":false},"excerpt":{"rendered":"

    Walk Workouts uses GPS to track your movement and let you visualize your walking route on a map. You can see your progress in real-time, as well as receive audio instructions during your workout sessions. The app provides you with healthy recipes and informs you regarding your calorie intake for the day. There\u2019s also a […]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[100],"tags":[],"class_list":["post-3148","post","type-post","status-publish","format-standard","hentry","category-best-weight-loss-programs-of-2026"],"_links":{"self":[{"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/posts\/3148","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/comments?post=3148"}],"version-history":[{"count":1,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/posts\/3148\/revisions"}],"predecessor-version":[{"id":3149,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/posts\/3148\/revisions\/3149"}],"wp:attachment":[{"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/media?parent=3148"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/categories?post=3148"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/tags?post=3148"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}