// SEO: Disable user sitemap (exposes editor usernames to scrapers) add_filter('wp_sitemaps_add_provider', function($provider, $name) { if ($name === 'users') return false; return $provider; }, 10, 2); // SEO: Remove post_tag archives from XML sitemap (thin/low-value pages) add_filter('wp_sitemaps_taxonomies', function($taxonomies) { unset($taxonomies['post_tag']); return $taxonomies; }); // SEO: Auto-generate SEO title on publish via Gemini API (2026-03-25) add_action('transition_post_status', 'hannity_auto_seo_title', 10, 3); function hannity_auto_seo_title($new_status, $old_status, $post) { // Only fire when transitioning TO publish for the first time if ($new_status !== 'publish' || $post->post_type !== 'post') return; if ($old_status === 'publish') return; // skip re-saves of already-published posts // Skip if seo_title already set if (get_post_meta($post->ID, 'seo_title', true)) return; $title = $post->post_title; if (empty($title)) return; $prompt = 'Convert this news headline to a clean SEO title tag (50-65 chars max). ' . 'Remove ALL CAPS prefixes like BREAKING: BUSTED: WATCH: BOMBSHELL: etc. ' . 'Remove [WATCH] [VIDEO] suffixes. Factual, keyword-rich, no spin. ' . 'Return ONLY the SEO title as a plain string, no quotes, no explanation.' . "\n\nHeadline: " . $title; $api_key = 'AIzaSyB-D7nxEi4UzLdoKIZBAY_ydYS5JT8EBCU'; $url = 'https://generativelanguage.googleapis.com/v1beta/models/gemini-2.0-flash:generateContent?key=' . $api_key; $response = wp_remote_post($url, array( 'headers' => array('Content-Type' => 'application/json'), 'body' => json_encode(array( 'contents' => array(array('parts' => array(array('text' => $prompt)))), 'generationConfig' => array('temperature' => 0.2, 'maxOutputTokens' => 100), )), 'timeout' => 10, )); if (is_wp_error($response)) return; $data = json_decode(wp_remote_retrieve_body($response), true); $seo_title = trim($data['candidates'][0]['content']['parts'][0]['text'] ?? ''); if (empty($seo_title)) return; $seo_title = trim($seo_title, '"\''); // strip any surrounding quotes Gemini adds update_post_meta($post->ID, 'seo_title', $seo_title); update_post_meta($post->ID, '_seo_title', 'field_56425125fb2ed'); // ACF field key ref } MAHA REPORT DROPS! Childhood Health in Bad Shape, Food, Health, and Scientific Systems Must Be Transformed
Trump Administration 2.0

MAHA REPORT DROPS! Childhood Health in Bad Shape, Food, Health, and Scientific Systems Must Be Transformed

posted by Hannity Staff - 5.22.25

Making America Healthy Again.

Robert F. Kennedy Jr.’s HHS released its highly anticipated MAHA report on Thursday. The report details the alarming state of children’s health in America and calls for common-sense solutions to get the country back on track.

“After a century of costly and ineffective approaches, the federal government will lead a coordinated transformation of our food, health, and scientific systems,” the report, released Thursday and reviewed by Fox News Digital, outlined. “This strategic realignment will ensure that all Americans—today and in the future—live longer, healthier lives, supported by systems that prioritize prevention, wellbeing, and resilience.”

Breaking Alerts
Don't miss the stories that matter.
Get Sean's breaking news alerts — free, direct to your inbox.

“Over 40% of the roughly 73 million children (aged 0-17) in the United States have at least one chronic health condition, according to the CDC, such as asthma, allergies, obesity, autoimmune diseases, or behavioral disorders,” the report stated. “Although estimates vary depending on the conditions included, all studies show an alarming increase over time.”

“American children are highly medicated — and it’s not working,” the report added of another variable compounding the chronic health issues.

From Fox News:

Health and Human Services Secretary Robert F. Kennedy Jr. serves as chair of the commission and attended a call with the media earlier Thursday, when he explained that the report is a “diagnosis” of the state of U.S. health, and that the “prescription” for the ongoing issues will be released in 100 days at the end of August in the form of policy recommendations for the federal government.

The report’s findings include teenage depression nearly doubling from 2009 to 2019, more than one-in-five children over the age of 6 being considered obese, one-in-31 children diagnosed with autism by age 8 and childhood cancer spiking by 40% since 1975.

Director of the National Institutes of Health Jay Bhattacharya says the report underscores that America’s children are less healthy than their parents and will subsequently live shorter lives if the crisis is not addressed.

“What the report says is that the next generation of children will live shorter lives than their parents,” he said. “For me as a parent, that is absolutely shocking. The implication is that whatever is happening to our kids, the food that they eat, the environmental exposures they face, the medicines that they take to address the fact that they’re sick are not translating over into making them healthier. And in fact, they are less healthy than their parents were at the same age.”

“We now have the most obese, depressed, disabled, medicated population in the history of the world, and we cannot keep going down the same road,” Food and Drug Commissioner Marty Makary said in the phone call with the media. “So this is an amazing day. I hope this marks the grand pivot from a system that is entirely reactionary to a system that will now be proactive.”

More over at Fox News:

Thank you for visiting Hannity.com. You are about to leave
Hannity.com and proceed to a site owned and operated by a third party.
Hannity.com has no control over the content of this third-party site.
Click OK to proceed.
OK
X
You may if you would no longer like to receive a newsletter.
You have been successfully unsubscribed!
Please see our Terms of Use and Privacy Notice .
If you have any questions or concerns please contact us.
$( document ).ready(function() { show_tout_banner=0; function bannerswap(){ //console.log('checkbanners'); show_tout_banner++; if($('.mobile-tout >div ').length >1){ $('.mobile-tout').addClass('t-hide'); } if(show_tout_banner > $('.mobile-tout >div').length -1){ $('.mobile-tout:eq(0)').removeClass('t-hide'); show_tout_banner=0; } else{ $('.mobile-tout:eq('+show_tout_banner+')').removeClass('t-hide'); } //console.log('show banner '+show_tout_banner); } if($('.mobile-tout >div ').length){ bannerswap(); show_tout_banner_rotator = setInterval(bannerswap, 5000); //console.log($('.mobile-tout').length); } });