// 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 } Terrorist Who Confessed to Masterminding 7/7 London Bombings and 9/11 May Be Released in Britain Within Days | Sean Hannity
International

Terrorist Who Confessed to Masterminding 7/7 London Bombings and 9/11 May Be Released in Britain Within Days

posted by Hannity Staff - 8.01.25

Haroon Aswat, a self-proclaimed terrorist linked to the July 7, 2005 London bombings and the 9/11 terror attacks is scheduled to be released soon from a secure hospital facility in the UK, despite being labeled a “risk to national security” by officials, the Daily Mail reports. Due to his ongoing mental health treatment, he reportedly could be freed without a full risk assessment.

Aswat, 50, was sentenced in the United States in 2015 to 20 years in prison after pleading guilty to conspiring to establish a terrorist training camp in Oregon. He was deported back to the UK in 2022 and has been held in hospital care since then. Authorities remain concerned about his extremist views and potential threat to society.

According to the Daily Mail, “Aswat was visited by a British psychiatrist in America before he was deported back to Britain in 2022 where he declared: ‘I’m a terrorist.’ Now newly-surfaced US court documents show Aswat also confessed to being a ‘mastermind behind the [9/11] attacks and a 2005 attack in the UK’, The Sun has reported. In addition to his connection to the 7/7 London terror bombings, which killed 52 people, Aswat has also threatened to kill Jews, Christians and certain groups of Muslims.”

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

Shadow Justice Secretary Robert Jenrick expressed his fear about Aswat returning to the streets of Britain, stating, “He should never experience freedom again.” Although officials have acknowledged their concerns and Mr Justice Robert Jay of the High Court previously noted that there is “evidence of an ongoing risk,” Aswat will be subjected only to a notification order when he is released. Under these conditions, Aswat must “continually notify the police about certain information and keep them up-to-date,” including “his address, foreign travel details and vehicle registration.”

A newly released document from the US District Court described Aswat as a “terrorist” and an al-Qaeda “foot soldier,” revealing that he openly admitted his involvement in terrorist activities. In March 2017, Aswat reportedly stated, “if you think I am a terrorist, I don’t shy away from my responsibility,” and claimed to be a mastermind behind the 9/11 attacks and a 2005 terrorist attack in the UK. The papers also indicate that Aswat disclosed his connections with Osama bin Laden and that he had trained at al-Qaeda camps in Afghanistan just months before the September 11, 2001 attacks, which killed over 3,000 people.

His name also reportedly appeared in a ledger found in a house in Pakistan where Khalid Sheikh Mohammed, the “architect” of 9/11, had stayed. Further activities attributed to him include assisting “hate preacher” Abu Hamza in establishing a US terror camp in 1999, staying in a Pakistan residence in 2002 where he met two of the 7/7 bombers, holding a terror manual, and possessing alleged bomb materials. Additionally, police traced 20 phone calls made by the 7/7 bombers to a number connected to Aswat.

Mr Justice Jay reportedly said that “Overall, I am satisfied for the reasons that I have given that a notification order should be made in all the circumstances of this case.”

“A psychiatrist has deemed his treatment as being effective and his release from detention is expected in the relatively near future, with the understanding being that he will return to his family in Yorkshire,” he added.

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