Skip to content

Instantly share code, notes, and snippets.

@nicmare
Created September 4, 2025 09:11
Show Gist options
  • Save nicmare/585fd6ad0f235e38893819c92d6ee554 to your computer and use it in GitHub Desktop.
Save nicmare/585fd6ad0f235e38893819c92d6ee554 to your computer and use it in GitHub Desktop.
Remove WP Armour Scripts from Homepage
<?php
// unload wp armour honeypot assets due to jquery dependency
function remove_plugin_stuff_in_wp_loaded(){
if(is_front_page())
remove_action('wp_enqueue_scripts','wpa_load_scripts');
}
add_action('wp', 'remove_plugin_stuff_in_wp_loaded');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment