// 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 } NEW YORK NIXED: Amazon Abandons Plan to Build HQ in the Big Apple, Create 25k JOBS | Sean Hannity
National

NEW YORK NIXED: Amazon Abandons Plan to Build HQ in the Big Apple, Create 25k JOBS

posted by Hannity Staff - 2.14.19

Amazon confirmed Thursday they will no longer be constructing a massive headquarters in New York City in the coming months; abandoning their plans following a fierce backlash from liberal politicians over massive tax breaks for the giant corporation.

“After much thought and deliberation, we’ve decided not to move forward with our plans to build a headquarters for Amazon in Long Island City, Queens,” said the press release.

“For Amazon, the commitment to build a new headquarters requires positive, collaborative relationships with state and local elected officials who will be supportive over the long-term. While polls show that 70% of New Yorkers support our plans and investment, a number of state and local politicians have made it clear that they oppose our presence and will not work with us to build the type of relationships that are required to go forward with the project we and many others envisioned in Long Island City,” the statement reads.

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

Read the full story at Fox News.

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.

BAD APPLES: Cuomo, De Blasio UNDER FIRE for $1.5 BILLION in Amazon Kickbacks

posted by Hannity Staff - 11.14.18

Governor Andrew Cuomo and New York City Mayor Bill de Blasio found themselves in hot-water this week with Big Apple residents “furious” after they discovered the two leaders agreed to $1.5 billion in taxpayer subsidies for Amazon’s new headquarters in the borough of Queens.

The prominent Democrats were accused of an “immoral waste of taxpayers’ money” as a growing number of constituents griped over the massive kickbacks as the city’s infrastructure continues to age and crumble.

“I think if the takeaway from the recent election in Queens, New York City and nationally is that we should actually step up corporate subsidies and billionaires getting billion-dollar bailouts — if that’s the takeaway, somebody’s not got their fingers on the pulse of Democrats, certainly, but people generally in this country,” New York City council member Jimmy Van Bramer.

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); } });