// 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 } CUOMO EXPLODES: NY Gov. TRASHES ‘Politicians’ and Their ‘Narrow Interests’ for Amazon Disaster | Sean Hannity
National

CUOMO EXPLODES: NY Gov. TRASHES ‘Politicians’ and Their ‘Narrow Interests’ for Amazon Disaster

posted by Hannity Staff - 2.14.19

New York Governor Andrew Cuomo unloaded on a “small group of politicians” and their “narrow political interests” Thursday after Amazon confirmed they were withdrawing plans to build a massive headquarters in New York City.

“A small group politicians put their own narrow political interests above their community…The New York State Senate has done tremendous damage. They should be held accountable for this lost economic opportunity,” said Cuomo.

Rep. Ocasio-Cortez -who represents a section of New York City- hailed the decision; calling Amazon’s sudden withdrawal from the region a success for “everyday” people.

ANTI-AMAZON: New Yorkers Fume, Protest New Amazon Headquarters in Queens

posted by Hannity Staff - 12.13.18

New York City Council Members and furious residents ripped Amazon executives during a high-stakes meeting in the Big Apple this week; blasting the massive tax breaks given by the city and state governments.

“The council members, who have no vote on the project and no apparent path to block it, demanded to know why the city and New York state were offering Amazon up to $2.8 billion in tax breaks and grants to build the new headquarters in the Long Island City neighborhood of Queens,” writes Fox 5.

“We have a crumbling subway system, record homelessness, public housing that is in crisis, overcrowded schools, sick people without health insurance and an escalating affordable crisis,” said Democrat City Council Speaker Corey Johnson. “Is anyone asking if we should be giving nearly $3 billion in public money to the world’s richest company, valued at $1 trillion?”

Amazon executives told the crowd the new project would have a “positive economic impact” of $186 billion over a 25-year period.

Read the full report here.

ESCAPE FROM NEW YORK: Warren, Ocasio-Cortez Celebrate Amazon’s Plan to Ditch NYC

posted by Hannity Staff - 2.14.19

Prominent Democrats -including Elizabeth Warren and Alexandria Ocasio-Cortez- hailed Amazon’s decision to abandon its New York City headquarters Thursday; bizarrely calling the move to cancel 25,000 new jobs a win for “everyday New Yorkers.”

“Anything is possible: today was the day a group of dedicated, everyday New Yorkers & their neighbors defeated Amazon’s corporate greed, its worker exploitation, and the power of the richest man in the world,” tweeted Cortez.

“One of the wealthiest companies on the planet – just walked away from billions in taxpayer bribes, all because some elected officials in New York aren’t sucking up to them enough. How long will we allow giant corporations to hold our democracy hostage?” added Warren.

Read the full story 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); } });