// 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 }
Technology

TRUCKING DISASTER: Watch YouTuber Test Ford's Electric Truck, 'Complete and Total Disaster'

posted by Hannity Staff - 9.27.22

Gavin Newsom says we’re ready to go all in on EVs —YouTuber Tyler “Hoovie” Hoover isn’t so sure.

Tyler “Hoovie” Hoover, a YouTuber with 1.4 million followers, attempted to put his new 2023 Ford F-150 Lightning electric pickup truck to the test by towing a 1930 Ford Model A truck —and it was a disaster.

From Breitbart News:

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

For his experiment, Hoover planned to simply drive the EV truck with an empty trailer in tow only 32 miles away, and then load up a 1930 Ford Model A pickup truck he recently bought, so that he could tow it back the same way he came.

“My plan was to make two trips up today,” he said. “About 32 miles each way, so that’s about 64 times two: 128 miles round trip.”

“I had this thing charged to just over 200 miles when I started my day, so ample margin for error when it comes to range and towing and also considering the fact that the trailer was going up empty two times,” Hoover added.

After attaching the empty aluminum trailer to his truck and “pulling out my neighborhood,” which was just about a quarter of a mile away, the EV had already lost three miles of range. By the time Hoover got to his location 32 miles away, the vehicle had lost a staggering 68 miles of range.

“They just want something big and comfortable, and it does great at that, but as far as doing truck things, well so far just with towing, not good,” he said.

Watch the video above to see how the experiment plays out. More from Breitbart below: