For use with the Scripts to Footer plugin, allows you to place specific scripts back in the head. Can be useful if you have scripts that have to live specifically in the head section and cannot live in the footer.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Exclude scripts from Scripts to Footer plugin | |
* http://wordpress.org/plugins/scripts-to-footerphp/ | |
* | |
* In this example, we will use jQuery (hosted on Google's servers even) | |
*/ | |
add_action( 'wp_print_styles', 'jdn_deregister_scripts', 100 ); | |
add_action( 'wp_head', 'jdn_head_scripts' ); | |
function jdn_deregister_scripts() { | |
wp_deregister_script( 'jquery' ); // The slug or name used to enqueue the script | |
} | |
function jdn_head_scripts() { // The html for the script that will be placed in the header | |
?> | |
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> | |
<?php | |
} |
Source: https://gist.github.com/joshuadavidnelson/8543278
Tags: plugin, scripts, scripts-to-footer, wp_head