Created
December 1, 2011 16:47
-
-
Save pascalduez/1418121 to your computer and use it in GitHub Desktop.
Drupal 7 — Move $scripts at page bottom
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
<!DOCTYPE html> | |
<html<?php print $html_attributes; ?>> | |
<head> | |
<?php print $head; ?> | |
<title><?php print $head_title; ?></title> | |
<?php print $styles; ?> | |
<?php print $head_scripts; ?> | |
</head> | |
<body<?php print $body_attributes;?>> | |
<?php print $page_top; ?> | |
<?php print $page; ?> | |
<?php print $scripts; ?> | |
<?php print $page_bottom; ?> | |
</body> | |
</html> |
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 | |
// Used in conjunction with https://gist.github.com/1417914 | |
/** | |
* Implements hook_preprocess_html(). | |
*/ | |
function THEMENAME_preprocess_html(&$vars) { | |
// Move JS files "$scripts" to page bottom for perfs/logic. | |
// Add JS files that *needs* to be loaded in the head in a new "$head_scripts" scope. | |
// For instance the Modernizr lib. | |
$path = drupal_get_path('theme', 'THEMENAME'); | |
drupal_add_js($path . '/js/modernizr.min.js', array('scope' => 'head_scripts', 'weight' => -1, 'preprocess' => FALSE)); | |
} | |
/** | |
* Implements hook_process_html(). | |
*/ | |
function THEMENAME_process_html(&$vars) { | |
$vars['head_scripts'] = drupal_get_js('head_scripts'); | |
} |
How to do the same, only for CSS? I could not do it using the functions: drupal_get_css, drupal_add_css
Drupal_add_css does not have the "scope" attribute
Notice: for page rendering point of view is not recommended to put CSS in the bottom the page, only JS (except library like Modernizr and of course GA or GTM or other Tag Manager).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Awesome snippet, thanks for sharing!