Skip to content

Instantly share code, notes, and snippets.

@seoagentur-hamburg
Created October 24, 2013 12:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save seoagentur-hamburg/7136323 to your computer and use it in GitHub Desktop.
Save seoagentur-hamburg/7136323 to your computer and use it in GitHub Desktop.
Toolbox-Modul um alles JavaScript in den Footer von WordPress einzubinden.
<?php
/*
Module Name: JavaScript in Footer
Description: Verfrachtet alles JavaScript in den Footer von WordPress [Frontend]
Author: Andreas Hecht
Author URI: http://hechtmediaarts.com/
*/
/* Sicherheitsabfrage */
if ( !class_exists('Toolbox') ) {
die();
}
/* Ab hier kann's los gehen */
function evolution_clean_head() {
remove_action('wp_head', 'wp_print_scripts');
remove_action('wp_head', 'wp_print_head_scripts', 9);
remove_action('wp_head', 'wp_enqueue_scripts', 1);
}
add_action( 'wp_enqueue_scripts', 'evolution_clean_head' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment